mirror of
https://codeberg.org/armin/trommelkiste.git
synced 2026-09-01 04:10:46 +02:00
recent
This commit is contained in:
parent
2e5fe1750f
commit
044e3b7a52
7 changed files with 618 additions and 47 deletions
5
Makefile
5
Makefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue