From 43d622f527c4014ee7985aa0bc4adca609d98124 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sat, 3 Apr 2021 15:26:27 +0200 Subject: 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. --- plugins/LV2/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) 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) -- cgit v1.2.3