Skip to content

Commit 61500a1

Browse files
committed
Use c++20 for clap (or windows will complain)
1 parent c84262f commit 61500a1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

justfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ default:
66
@just --list
77

88
update:
9-
mkdir -p build
109
cmake -G Xcode -B build -DYUP_ENABLE_PROFILING=ON
1110

1211
clean:
@@ -25,7 +24,6 @@ make:
2524
cmake --build build
2625

2726
ios:
28-
mkdir -p build
2927
cmake -G Xcode -B build -DCMAKE_TOOLCHAIN_FILE=cmake/toolchains/ios.cmake -DPLATFORM=OS64
3028

3129
emscripten:
@@ -34,6 +32,9 @@ emscripten:
3432
cmake --build build
3533
python3 -m http.server -d build/examples/render/Debug
3634

35+
android:
36+
cmake -G "Unix Makefiles" -B build -DYUP_TARGET_ANDROID=ON -DYUP_TARGET_ANDROID_BUILD_GRADLE=ON
37+
3738
#run:
3839
# @just make
3940
# ./build/app/app

modules/yup_audio_plugin_client/yup_audio_plugin_client.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
description: The essential set of basic YUP audio plugin clients.
3131
website: https://github.com/kunitoki/yup
3232
license: ISC
33-
minimumCppStandard: 17
33+
minimumCppStandard: 20
3434
3535
dependencies: yup_audio_processors yup_gui
3636
enableARC: 1

0 commit comments

Comments
 (0)