diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2023-09-27 09:01:09 +0200 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2023-09-27 09:01:09 +0200 |
commit | 73bf52306b4887b4e6647707860acf0a125b36e3 (patch) | |
tree | 23924009d38dbfaee23deb9ba79abab3253c9119 | |
parent | 25ae4867ad3bc332bffb0d223476befaffa7b912 (diff) |
meson_options.txt: boost-shared defaults to true
The shared Boost libraries can be a safer choice.
The static libraries have caused problems building the test programs.
-rw-r--r-- | meson_options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index 9d0a235..daa7e52 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -15,6 +15,6 @@ option('build-examples', type: 'boolean', value: true, option('build-tests', type: 'combo', choices: ['false', 'if-dependencies-found', 'true'], value: 'if-dependencies-found', description: 'Build test programs (requires Boost Test and Fontconfig or Windows)') option('boost-shared', type: 'boolean', - value: false, description: 'Use shared version of boost') + value: true, description: 'Use shared version of boost') option('msvc14x-parallel-installable', type: 'boolean', value: true, description: 'Use separate DLL and LIB filenames for Visual Studio 2015, 2017 and 2019') |