We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc13891 commit 2b06b9aCopy full SHA for 2b06b9a
meson.build
@@ -45,11 +45,11 @@ _deps += m_dep
45
_deps += [declare_dependency(link_args: '-lstdc++')]
46
47
# All of which can be installed with meson wrap install <blah> originally
48
-eigen_dep = subproject('eigen').get_variable('eigen_dep')
+eigen_dep = subproject('eigen', default_options: ['default_library=static']).get_variable('eigen_dep')
49
_deps += [ eigen_dep ]
50
51
-fmt_dep = subproject('fmt').get_variable('fmt_dep')
52
-_deps += [ fmt_dep ]
+fmt_subproj = subproject('fmt', default_options: ['default_library=static'])
+_deps += fmt_subproj.get_variable('fmt_dep')
53
54
cmake = import('cmake')
55
optv_cppyaml = cmake.subproject_options()
0 commit comments