- added blase path git-svn-id: http://moon:8086/svn/software/trunk/projects/mpsk_rx_gui@938 b431acfa-c32f-4a4a-93f1-934dc6c82436
29 lines
1.0 KiB
Makefile
29 lines
1.0 KiB
Makefile
include ./config.mk
|
|
|
|
NAME := Juce
|
|
|
|
JUCE_MODULES := ${JUCE_PATH}/modules
|
|
|
|
SOURCES := juce_audio_basics/juce_audio_basics.cpp
|
|
SOURCES += juce_audio_devices/juce_audio_devices.cpp
|
|
SOURCES += juce_audio_formats/juce_audio_formats.cpp
|
|
SOURCES += juce_audio_processors/juce_audio_processors.cpp
|
|
SOURCES += juce_audio_utils/juce_audio_utils.cpp
|
|
SOURCES += juce_core/juce_core.cpp
|
|
SOURCES += juce_cryptography/juce_cryptography.cpp
|
|
SOURCES += juce_data_structures/juce_data_structures.cpp
|
|
SOURCES += juce_events/juce_events.cpp
|
|
SOURCES += juce_graphics/juce_graphics.cpp
|
|
SOURCES += juce_gui_basics/juce_gui_basics.cpp
|
|
SOURCES += juce_gui_extra/juce_gui_extra.cpp
|
|
SOURCES += juce_opengl/juce_opengl.cpp
|
|
SOURCES += juce_video/juce_video.cpp
|
|
|
|
CXX_SRCS := $(addprefix $(JUCE_MODULES)/, $(SOURCES))
|
|
INCLUDES += -I . -I $(JUCE_PATH) -I $(JUCE_PATH)/modules -I /usr/include/freetype2
|
|
DEFINES += -DJUCE_GCC=1 -DLINUX=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000
|
|
DEFINES_debug += -DDEBUG=1 -D_DEBUG=1
|
|
DEFINES_release += -DNDEBUG
|
|
|
|
include $(MAKE_HOME)/compile.mk
|