diff options
| author | 2025-03-03 12:46:42 -0500 | |
|---|---|---|
| committer | 2025-03-03 12:48:29 -0500 | |
| commit | ce102493f377d0452e44c3a4bb6e6e15ab0c819d (patch) | |
| tree | c27a71c19dfcaf9e72a94a059644fe7472ac0792 | |
| parent | c4023623b89d7518c92f675f44355f5ae1196264 (diff) | |
| download | libnaunet-ce102493f377d0452e44c3a4bb6e6e15ab0c819d.tar.gz libnaunet-ce102493f377d0452e44c3a4bb6e6e15ab0c819d.tar.bz2 libnaunet-ce102493f377d0452e44c3a4bb6e6e15ab0c819d.zip | |
More correct build configuration check
Signed-off-by: Andrew Opalach <andrew@akon.city>
| -rw-r--r-- | meson.build | 4 | ||||
| -rw-r--r-- | subprojects/libalabaster.wrap | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build index 13c4ad5..1efa58d 100644 --- a/meson.build +++ b/meson.build @@ -4,8 +4,8 @@ project('libnaunet', 'c', version: '0.01', compiler = meson.get_compiler('c') cmake = import('cmake') -is_debug = get_option('buildtype').startswith('debug') -is_minsize = get_option('buildtype') == 'minsize' +is_debug = get_option('debug') +is_minsize = get_option('optimization') == 's' is_windows = host_machine.system() == 'windows' naunet_src = [ diff --git a/subprojects/libalabaster.wrap b/subprojects/libalabaster.wrap index 6ecfc88..adaec6a 100644 --- a/subprojects/libalabaster.wrap +++ b/subprojects/libalabaster.wrap @@ -1,4 +1,4 @@ [wrap-git] url = https://git.akon.city/libalabaster -revision = d8141e0ca0c53a3e2d89f20e3c89cdec5a4593e4 +revision = 31715673a5b98991ef276decbd90f026559eaf4b depth = 1 |