From 0b519c55703307021b6a25cef1515b49b8b2cf1b Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Thu, 7 Nov 2019 11:31:58 +0000 Subject: [PATCH] - changed JUCE_ROOT git-svn-id: http://moon:8086/svn/software/trunk/projects/Rbm@613 b431acfa-c32f-4a4a-93f1-934dc6c82436 --- juce/Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/juce/Makefile b/juce/Makefile index 47ae784..1c3e51f 100644 --- a/juce/Makefile +++ b/juce/Makefile @@ -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