Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkcgen <kcgen@users.noreply.github.com>2022-05-07 04:45:26 +0300
committerkcgen <1557255+kcgen@users.noreply.github.com>2022-05-08 02:35:22 +0300
commit67e412eb5386f25fd68cec1e89bedb4fa65f02fe (patch)
tree8db0a5d62640b800056396d53331a09e36b62a62 /meson_options.txt
parent3558786948ede6810c22c0b6d7a208bcab792290 (diff)
Add zlib as a dependency of ZMBV
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt17
1 files changed, 14 insertions, 3 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 0bcd734bc..a06d5e9bc 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -42,9 +42,20 @@ option('dynamic_core', type : 'combo',
# This is NOT guaranteed to work - the end results will vary depending on your
# OS, installed libraries, and dependencies of those libraries.
#
-option('try_static_libs', type : 'array',
- choices : ['fluidsynth', 'mt32emu', 'opusfile', 'png', 'sdl2', 'sdl2_net', 'slirp'], value : [],
- description : 'Attempt to statically link selected libraries.')
+option('try_static_libs',
+ type : 'array',
+ choices : [
+ 'fluidsynth',
+ 'mt32emu',
+ 'opusfile',
+ 'png',
+ 'sdl2',
+ 'sdl2_net',
+ 'slirp',
+ 'zlib'],
+ value : [],
+ description : 'Attempt to statically link selected libraries.'
+)
option('unit_tests', type : 'feature', value : 'auto',
description : 'Build unit tests. Auto skips for release builds.')