@@ -14,10 +14,14 @@ unset LDFLAGS | |||||
make distclean >/dev/null | make distclean >/dev/null | ||||
# Print available features | # Print available features | ||||
make features | |||||
make USING_JUCE=true features | |||||
# Build things that we skip strict tests for | # Build things that we skip strict tests for | ||||
make 3rd frontend USING_JUCE=true | |||||
make USING_JUCE=true 3rd frontend | |||||
make USING_JUCE=true -C source/modules/water posix32 | |||||
# Build native stuff | # Build native stuff | ||||
make TESTBUILD=true USING_JUCE=true | |||||
make USING_JUCE=true TESTBUILD=true | |||||
# Build 32bit bridges | |||||
make USING_JUCE=true TESTBUILD=true posix32 |
@@ -14,14 +14,14 @@ unset LDFLAGS | |||||
make distclean >/dev/null | make distclean >/dev/null | ||||
# Print available features | # Print available features | ||||
make features | |||||
make USING_JUCE=false features | |||||
# Build things that we skip strict tests for | # Build things that we skip strict tests for | ||||
make 3rd frontend | |||||
make -C source/modules/water posix32 | |||||
make USING_JUCE=false 3rd frontend | |||||
make USING_JUCE=false -C source/modules/water posix32 | |||||
# Build native stuff | # Build native stuff | ||||
make TESTBUILD=true | |||||
make USING_JUCE=false TESTBUILD=true | |||||
# Build 32bit bridges | # Build 32bit bridges | ||||
make TESTBUILD=true posix32 | |||||
make USING_JUCE=false TESTBUILD=true posix32 |
@@ -14,13 +14,13 @@ export PKG_CONFIG_PATH=/opt/kxstudio/lib/pkgconfig:${PKG_CONFIG_PATH} | |||||
make distclean >/dev/null | make distclean >/dev/null | ||||
# Print available features | # Print available features | ||||
make features | |||||
make USING_JUCE=false features | |||||
# Build native stuff | # Build native stuff | ||||
make all posix32 posix64 | |||||
make USING_JUCE=false all posix32 posix64 | |||||
# Build wine bridges | # Build wine bridges | ||||
make wine32 wine64 | |||||
make USING_JUCE=false wine32 wine64 | |||||
# Build windows binaries for bridges | # Build windows binaries for bridges | ||||
env PATH=/opt/mingw32/bin:${PATH} make win32 USING_JUCE=false CC=i686-w64-mingw32-gcc CXX=i686-w64-mingw32-g++ | env PATH=/opt/mingw32/bin:${PATH} make win32 USING_JUCE=false CC=i686-w64-mingw32-gcc CXX=i686-w64-mingw32-g++ | ||||
@@ -17,4 +17,4 @@ make distclean >/dev/null | |||||
make features | make features | ||||
# Build native stuff | # Build native stuff | ||||
make USING_JUCE=false | |||||
make |
@@ -304,7 +304,7 @@ PYUIC5 ?= $(shell which pyuic5 2>/dev/null) | |||||
ifneq ($(PYUIC5),) | ifneq ($(PYUIC5),) | ||||
ifneq ($(PYRCC5),) | ifneq ($(PYRCC5),) | ||||
HAVE_PYQT=true | |||||
HAVE_PYQT = true | |||||
endif | endif | ||||
endif | endif | ||||
@@ -328,16 +328,18 @@ endif | |||||
# Set USING_JUCE | # Set USING_JUCE | ||||
ifeq ($(MACOS_OR_WIN32),true) | ifeq ($(MACOS_OR_WIN32),true) | ||||
USING_JUCE=true | |||||
USING_JUCE_AUDIO_DEVICES=true | |||||
ifneq ($(MACOS_OLD),true) | |||||
USING_JUCE = true | |||||
USING_JUCE_AUDIO_DEVICES = true | |||||
endif | |||||
endif | endif | ||||
ifeq ($(HAVE_JUCE_LINUX_DEPS),true) | ifeq ($(HAVE_JUCE_LINUX_DEPS),true) | ||||
USING_JUCE=true | |||||
USING_JUCE = true | |||||
endif | endif | ||||
ifeq ($(LINUX_OR_MACOS),true) | ifeq ($(LINUX_OR_MACOS),true) | ||||
USING_JUCE_GUI_EXTRA=true | |||||
USING_JUCE_GUI_EXTRA = true | |||||
endif | endif | ||||
# --------------------------------------------------------------------------------------------------------------------- | # --------------------------------------------------------------------------------------------------------------------- | ||||