summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2023-09-27 09:23:26 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2023-09-27 09:23:26 +0200
commit64f9980305ee33764dd6564e5d3a3cc09e39ffc2 (patch)
tree5109e91cf83ce7264880dff74f38b4dd96417040
parentd2dde30850e60f5a15603c0526aa25c1f7f8469f (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.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt
index df57c5a..6ad0088 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 2017 and 2019')