-
Hi all, The meson docs describe that the default tag for a static library is This leads to the behavior that when I run Is there a particular reason for this behavior? The reason why I believe shared libraries should be tagged both |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The intended use-case is for packaging systems that typically will split |
Beta Was this translation helpful? Give feedback.
The intended use-case is for packaging systems that typically will split
libfoo
andlibfoo-dev
where the latter depends on the former. If you want to install both runtime and devel files, simply usemeson install --tags runtime,devel
or just don't give--tags
argument to install everything.