From 61500a1e58ea3ed668092201cd809b103e4230d9 Mon Sep 17 00:00:00 2001 From: kunitoki Date: Tue, 3 Dec 2024 17:27:02 +0100 Subject: [PATCH] Use c++20 for clap (or windows will complain) --- justfile | 5 +++-- modules/yup_audio_plugin_client/yup_audio_plugin_client.h | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index 99cfe206..58b7e2b3 100644 --- a/justfile +++ b/justfile @@ -6,7 +6,6 @@ default: @just --list update: - mkdir -p build cmake -G Xcode -B build -DYUP_ENABLE_PROFILING=ON clean: @@ -25,7 +24,6 @@ make: cmake --build build ios: - mkdir -p build cmake -G Xcode -B build -DCMAKE_TOOLCHAIN_FILE=cmake/toolchains/ios.cmake -DPLATFORM=OS64 emscripten: @@ -34,6 +32,9 @@ emscripten: cmake --build build python3 -m http.server -d build/examples/render/Debug +android: + cmake -G "Unix Makefiles" -B build -DYUP_TARGET_ANDROID=ON -DYUP_TARGET_ANDROID_BUILD_GRADLE=ON + #run: # @just make # ./build/app/app diff --git a/modules/yup_audio_plugin_client/yup_audio_plugin_client.h b/modules/yup_audio_plugin_client/yup_audio_plugin_client.h index e9846867..e4e6ddcd 100644 --- a/modules/yup_audio_plugin_client/yup_audio_plugin_client.h +++ b/modules/yup_audio_plugin_client/yup_audio_plugin_client.h @@ -30,7 +30,7 @@ description: The essential set of basic YUP audio plugin clients. website: https://github.com/kunitoki/yup license: ISC - minimumCppStandard: 17 + minimumCppStandard: 20 dependencies: yup_audio_processors yup_gui enableARC: 1