Skip to content

Commit

Permalink
Use c++20 for clap (or windows will complain)
Browse files Browse the repository at this point in the history
  • Loading branch information
kunitoki committed Dec 3, 2024
1 parent c84262f commit 61500a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ default:
@just --list

update:
mkdir -p build
cmake -G Xcode -B build -DYUP_ENABLE_PROFILING=ON

clean:
Expand All @@ -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:
Expand All @@ -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
2 changes: 1 addition & 1 deletion modules/yup_audio_plugin_client/yup_audio_plugin_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 61500a1

Please sign in to comment.