This commit is contained in:
Armin 2026-07-19 18:53:17 +02:00
commit 044e3b7a52
7 changed files with 618 additions and 47 deletions

View file

@ -1,4 +1,4 @@
JUCE := JUCE
JUCE := build/JUCE
NPROC := $(shell sysctl -n hw.ncpu 2>/dev/null || nproc 2>/dev/null || echo 4)
UNAME_S := $(shell uname -s)
@ -52,7 +52,8 @@ all: build/Makefile
@find $(BUILD_DIR) -type d \( -name "*.vst3" -o -name "*.component" -o -name "*.app" \) 2>/dev/null | while read f; do echo " $$f"; done
build/Makefile: CMakeLists.txt
@if [ ! -d "$(JUCE)" ]; then \
@if [ ! -f "$(JUCE)/CMakeLists.txt" ]; then \
rm -rf "$(JUCE)"; \
echo "==> Cloning JUCE..."; \
git clone --depth 1 https://github.com/juce-framework/JUCE.git $(JUCE); \
fi