You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apologies in advance if this was already answered. (I wasn't able to find anything regarding this specific issue.)
I'm currently attempting to build a console based exe and link against a cmake based subproject (the assimp library) but doing so with static linking. (By default a shared lib is built and linked against.)
The assimp source code is placed in the subprojects directory of the project.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Apologies in advance if this was already answered. (I wasn't able to find anything regarding this specific issue.)
I'm currently attempting to build a console based exe and link against a cmake based subproject (the assimp library) but doing so with static linking. (By default a shared lib is built and linked against.)
The assimp source code is placed in the subprojects directory of the project.
Meson seems to support per-subproject settings (https://mesonbuild.com/Subprojects.html) that can achieve this with "default options".
I tried:
and
But in both cases "default_options" is not recognized:
ERROR: cmake.subproject got unknown keyword arguments "default_options"
Am i applying this incorrectly? Any hints/directions would be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions