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:
authorPatryk Obara <dreamer.tan@gmail.com>2021-03-14 16:02:16 +0300
committerPatryk Obara <patryk.obara@gmail.com>2021-03-15 01:33:21 +0300
commit410042775b29cb8ffafdc187e8086c4274c8b002 (patch)
treec53aa9f225bac07e30be08af94592d37fa1cd358 /meson_options.txt
parent72c9b841fccd70e9ece65295fb8945eece2e5d97 (diff)
Reformat meson_options file
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt56
1 files changed, 16 insertions, 40 deletions
diff --git a/meson_options.txt b/meson_options.txt
index b86410ac8..cf1c9236d 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,36 +1,22 @@
-option('use_sdl2_net',
- type : 'boolean',
- value : true,
+option('use_sdl2_net', type : 'boolean', value : true,
description : 'Enable networking features via SDL2_net (modem, ipx)')
-option('use_opengl',
- type : 'boolean',
- value : true,
+option('use_opengl', type : 'boolean', value : true,
description : 'Enable OpenGL support')
-option('use_fluidsynth',
- type : 'boolean',
- value : true,
+option('use_fluidsynth', type : 'boolean', value : true,
description : 'Enable built-in MIDI support via FluidSynth')
-option('use_mt32emu',
- type : 'boolean',
- value : true,
+option('use_mt32emu', type : 'boolean', value : true,
description : 'Enable built-in MT-32 emulation support')
-option('use_png',
- type : 'boolean',
- value : true,
+option('use_png', type : 'boolean', value : true,
description : 'Enable saving screenshots in .png format')
-option('use_pcap',
- type : 'boolean',
- value : false,
+option('use_pcap', type : 'boolean', value : false,
description : 'Enable ethernet support (NE2000 emulator) using libpcap')
-option('use_slirp',
- type : 'boolean',
- value : false,
+option('use_slirp', type : 'boolean', value : false,
description : 'Enable ethernet support (NE2000 emulator) using libslirp')
# This option exists only for rare situations when Linux developer cannot
@@ -38,22 +24,16 @@ option('use_slirp',
#
# 'auto' translates to 'true' on Linux systems and 'false' everywhere else.
#
-option('use_alsa',
- type : 'combo',
- choices : ['auto', 'true', 'false'],
- value : 'auto',
+option('use_alsa', type : 'combo',
+ choices : ['auto', 'true', 'false'], value : 'auto',
description : 'Enable ALSA MIDI support')
-option('enable_debugger',
- type : 'combo',
- choices : ['normal', 'heavy', 'none'],
- value : 'none',
+option('enable_debugger', type : 'combo',
+ choices : ['normal', 'heavy', 'none'], value : 'none',
description : 'Build emulator with internal debugger feature.')
-option('dynamic_core',
- type : 'combo',
- choices : ['auto', 'dyn-x86', 'dynrec', 'none'],
- value : 'auto',
+option('dynamic_core', type : 'combo',
+ choices : ['auto', 'dyn-x86', 'dynrec', 'none'], value : 'auto',
description : 'Select the dynamic core implementation.')
# Use this option for selectively switching dependencies to look for static
@@ -65,13 +45,9 @@ option('dynamic_core',
# 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 : ['opusfile', 'png', 'sdl2', 'sdl2_net'],
- value : [],
+option('try_static_libs', type : 'array',
+ choices : ['opusfile', 'png', 'sdl2', 'sdl2_net'], value : [],
description : 'Attempt to statically link selected libraries.')
-option('unit_tests',
- type : 'feature',
- value : 'auto',
+option('unit_tests', type : 'feature', value : 'auto',
description : 'Build unit tests. Auto skips for release builds.')