- changed JUCE_ROOT

git-svn-id: http://moon:8086/svn/software/trunk/projects/Rbm@613 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2019-11-07 11:31:58 +00:00
parent 9f8c03bb2c
commit 0b519c5570
+8 -8
View File
@@ -1,13 +1,13 @@
CONFIG ?= release
BUILD_DIR := ./build/${CONFIG}
JUCE_ROOT=../../JUCE-3.1.1/modules
SRCS := juce_core/juce_core.cpp
SRCS += juce_data_structures/juce_data_structures.cpp
SRCS += juce_events/juce_events.cpp
SRCS += juce_graphics/juce_graphics.cpp
SRCS += juce_gui_basics/juce_gui_basics.cpp
SRCS += juce_gui_extra/juce_gui_extra.cpp
SRCS += juce_opengl/juce_opengl.cpp
JUCE_ROOT=../../JUCE-3.1.1
SRCS := modules/juce_core/juce_core.cpp
SRCS += modules/juce_data_structures/juce_data_structures.cpp
SRCS += modules/juce_events/juce_events.cpp
SRCS += modules/juce_graphics/juce_graphics.cpp
SRCS += modules/juce_gui_basics/juce_gui_basics.cpp
SRCS += modules/juce_gui_extra/juce_gui_extra.cpp
SRCS += modules/juce_opengl/juce_opengl.cpp
OBJS := $(addprefix ${BUILD_DIR}/, $(subst .cpp,.o,$(SRCS)))
all: ${BUILD_DIR}/libjuce.a