clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit 55f9d9194508a39016f06146049cae103c05cb40
parent 871163b6e8f5586e9f83b3f575e986d5b689e917
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Tue, 14 Jun 2022 09:35:09 +0200

Also test C17

Diffstat:
MCMakeLists.txt | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -35,8 +35,9 @@ endmacro() clap_compile_cpp(c11 c 11 11) clap_compile_cpp(cpp11 cc 11 11) clap_compile_cpp(cpp14 cc 11 14) -clap_compile_cpp(cpp17 cc 11 17) -clap_compile_cpp(cpp20 cc 11 20) +clap_compile_cpp(c17 c 17 17) +clap_compile_cpp(cpp17 cc 17 17) +clap_compile_cpp(cpp20 cc 17 20) add_library(clap-plugin-template MODULE EXCLUDE_FROM_ALL src/plugin-template.c) target_link_libraries(clap-plugin-template PRIVATE clap-core)