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>2020-12-17 09:15:53 +0300
committerPatryk Obara <patryk.obara@gmail.com>2020-12-18 11:14:41 +0300
commit12388987284974b8d49b8b6068c6678e79495dc3 (patch)
treea228995db4a1258ceb5c4e25af543d7a74f388e9 /meson_options.txt
parent4fad1d4f348239a55b41699d6f040d12c7ae93a6 (diff)
Add debugger feature to meson buildsystem
Raise warning limit on Linux, as GCC understands -Wextra-semi now. Add build with debugger enabled on macOS to cover the code with Clang.
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 9e2b7b6a7..0fc4f5254 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -22,3 +22,9 @@ option('use_png',
type : 'boolean',
value : true,
description : 'Enable saving screenshots in .png format')
+
+option('enable_debugger',
+ type : 'combo',
+ choices : ['normal', 'heavy', 'none'],
+ value : 'none',
+ description : 'Build emulator with internal debugger feature.')