Skip to content

Commit

Permalink
BLD: Use static linkage
Browse files Browse the repository at this point in the history
  • Loading branch information
RuhiRG committed Aug 26, 2024
1 parent cc13891 commit 2b06b9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ _deps += m_dep
_deps += [declare_dependency(link_args: '-lstdc++')]

# All of which can be installed with meson wrap install <blah> originally
eigen_dep = subproject('eigen').get_variable('eigen_dep')
eigen_dep = subproject('eigen', default_options: ['default_library=static']).get_variable('eigen_dep')
_deps += [ eigen_dep ]

fmt_dep = subproject('fmt').get_variable('fmt_dep')
_deps += [ fmt_dep ]
fmt_subproj = subproject('fmt', default_options: ['default_library=static'])
_deps += fmt_subproj.get_variable('fmt_dep')

cmake = import('cmake')
optv_cppyaml = cmake.subproject_options()
Expand Down

0 comments on commit 2b06b9a

Please sign in to comment.