diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2022-01-23 21:31:30 +0100 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2022-01-23 21:31:30 +0100 |
commit | a6f0a4acaa35cd82eafe3feb31a64dc70ccb82f9 (patch) | |
tree | 0bf2897dd3a7faf8607f18690a3ee44f5981a867 | |
parent | 9e67a264c2a02fa0cdbd9fdac6581736cd6ffbfc (diff) | |
download | mephisto.lv2-a6f0a4acaa35cd82eafe3feb31a64dc70ccb82f9.tar.xz |
meson: migrate to ser_atom.lv2 subproject
-rw-r--r-- | meson.build | 7 | ||||
-rw-r--r-- | meson_options.txt | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/meson.build b/meson.build index a1a2cfc..65fbfd4 100644 --- a/meson.build +++ b/meson.build @@ -10,6 +10,7 @@ project('mephisto.lv2', 'c', default_options : [ d2tk = subproject('d2tk') varchunk = subproject('varchunk') +ser_atom_lv2 = subproject('ser_atom.lv2') lv2libdir = get_option('lv2libdir') build_tests = get_option('build-tests') @@ -26,6 +27,7 @@ else endif varchunk_dep = varchunk.get_variable('varchunk') +ser_atom_lv2_dep = ser_atom_lv2.get_variable('ser_atom_lv2') source_root = meson.source_root() build_root = meson.build_root() @@ -65,12 +67,11 @@ if cc.has_member('LV2UI_Request_Value', 'request', endif dsp_deps = [m_dep, lv2_dep, faust_dep, varchunk_dep] -ui_deps = [lv2_dep, d2tk_dep] +ui_deps = [lv2_dep, d2tk_dep, ser_atom_lv2_dep] props_inc = include_directories('props.lv2') timely_inc = include_directories('timely.lv2') -ser_inc = include_directories('ser_atom.lv2') -inc_dir = [props_inc, timely_inc, ser_inc] +inc_dir = [props_inc, timely_inc] dsp_srcs = ['mephisto.c'] diff --git a/meson_options.txt b/meson_options.txt index e988a24..516da76 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -27,4 +27,4 @@ option('lv2libdir', type : 'string', value : 'lib/lv2') -option('version', type : 'string', value : '0.17.37') +option('version', type : 'string', value : '0.17.47') |