diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2021-04-03 15:26:27 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2021-04-03 15:30:28 +0200 |
commit | 43d622f527c4014ee7985aa0bc4adca609d98124 (patch) | |
tree | cfbc2916bd3746a66cdba34394669b9bf7b8e42d | |
parent | f926cb221a45aa5c5f14b785c2f08ddda970e33f (diff) | |
download | airwindows-lv2-port-43d622f527c4014ee7985aa0bc4adca609d98124.tar.gz airwindows-lv2-port-43d622f527c4014ee7985aa0bc4adca609d98124.tar.bz2 airwindows-lv2-port-43d622f527c4014ee7985aa0bc4adca609d98124.zip |
LV2: disable compiler warning 'misleading-indentation'.
The code for the 'curve' plugin thinks it's a good idea to have more
than one if-statement on the same line.
-rwxr-xr-x | plugins/LV2/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/LV2/CMakeLists.txt b/plugins/LV2/CMakeLists.txt index d34d4a3..565c0a7 100755 --- a/plugins/LV2/CMakeLists.txt +++ b/plugins/LV2/CMakeLists.txt @@ -4,6 +4,7 @@ project(airwindows_ports) set(CMAKE_CXX_STANDARD 14) add_compile_options(-Wall -Werror -Wno-unused-value) add_compile_options(-Wno-unused-but-set-variable) # AQuickVoiceClip +add_compile_options(-Wno-misleading-indentation) # curve configure_file(manifest.ttl.in airwindows.lv2/manifest.ttl @ONLY) |