diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2018-12-31 00:10:44 +0100 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2018-12-31 00:10:44 +0100 |
commit | 9c5716754f1aea7cfb4dfd3ce599dd5117d9b9eb (patch) | |
tree | a5cf215d06f0cff06ba172be62682cfccae749fe /meson.build | |
parent | deac0f4cc63db9ee1f790fd4cb8ddff6eedc5329 (diff) | |
download | synthpod-9c5716754f1aea7cfb4dfd3ce599dd5117d9b9eb.tar.xz |
dynamic discovery of supported sandboxes.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/meson.build b/meson.build index 81716120..fca657be 100644 --- a/meson.build +++ b/meson.build @@ -82,27 +82,22 @@ endif if use_x11 and xcb_dep.found() and xcbicccm_dep.found() message('building X11 sandbox') - add_project_arguments('-DSANDBOX_X11', language : 'c') endif if use_gtk2 and gtk2_dep.found() message('building GTK2 sandbox') - add_project_arguments('-DSANDBOX_GTK2', language : 'c') endif if use_gtk3 and gtk3_dep.found() message('building GTK3 sandbox') - add_project_arguments('-DSANDBOX_GTK3', language : 'c') endif if use_qt4 and qt4_dep.found() message('building QT4 sandbox') - add_project_arguments('-DSANDBOX_QT4', language : 'c') endif if use_qt5 and qt5_dep.found() message('building QT5 sandbox') - add_project_arguments('-DSANDBOX_QT5', language : 'c') endif if use_x11 and cairo_dep.found() @@ -110,10 +105,6 @@ if use_x11 and cairo_dep.found() add_project_arguments('-DUSE_CAIRO_CANVAS', language : 'c') endif -add_project_arguments('-DSANDBOX_SHOW', language : 'c') - -add_project_arguments('-DSANDBOX_KX', language : 'c') - if lilv_dep.version() >= '0.22.0' message('building against recent lilv') add_project_arguments('-DLILV_0_22', language : 'c') @@ -124,7 +115,6 @@ add_project_arguments('-DSYNTHPOD_VERSION="'+rawvers+'"', language : 'c') add_project_arguments('-DSYNTHPOD_MINOR_VERSION='+version[1]+'', language : 'c') add_project_arguments('-DSYNTHPOD_MICRO_VERSION='+version[2]+'', language : 'c') add_project_arguments('-DSYNTHPOD_BUNDLE_DIR="'+join_paths(prefix, bndl_dir, '')+'"', language : 'c') -add_project_arguments('-DSYNTHPOD_BIN_DIR="'+join_paths(prefix, get_option('bindir'), '')+'"', language : 'c') add_project_arguments('-DSYNTHPOD_PLUGIN_DIR="'+join_paths(prefix, plug_dir, '')+'"', language : 'c') builtin_assume_aligned = ''' @@ -148,8 +138,7 @@ c_args = ['-fvisibility=hidden', '-ffast-math', '-Wno-attributes', '-Wno-unused-function', - '-Wno-unused-variable', - '-Wno-stringop-overflow'] + '-Wno-unused-variable'] if cc.has_argument('-ftree-vectorize') c_args += '-ftree-vectorize' |