- use own build system

git-svn-id: http://moon:8086/svn/software/trunk/projects/mpsk_rx_gui@914 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2022-06-01 15:14:40 +00:00
parent d72ecfddee
commit fd8d4ebf73
8 changed files with 71 additions and 129 deletions
+18
View File
@@ -0,0 +1,18 @@
include ./config.mk
NAME := Source
SOURCES := GraphComponent.cpp
SOURCES += LogComponent.cpp
SOURCES += Receiver.cpp
SOURCES += Transmitter.cpp
SOURCES += ControlComponent.cpp
SOURCES += IQPoint.cpp
SOURCES += IQPlaneComponent.cpp
SOURCES += MainComponent.cpp
SOURCES += Main.cpp
CXX_SRCS += $(SOURCES)
INCLUDES += -I . -I $(realpath ../JuceLibraryCode) -I $(JUCE_PATH) -I $(LIBSRC_PATH) -I $(EIGEN_PATH)
include $(MAKE_HOME)/compile.mk
+8
View File
@@ -0,0 +1,8 @@
MAKE_HOME ?= /home/jens/work/software/make
CONFIG ?= debug
BUILD_DIR ?= ./build/${CONFIG}
MAKEFLAGS += --no-print-directory
JUCE_PATH ?= $(realpath ../../../extlib/JUCE)
LIBSRC_PATH ?= $(realpath ../../../libsrc)
EIGEN_PATH ?= $(realpath ../../../extlib/eigen)