diff options
Diffstat (limited to 'makeminidawg')
-rw-r--r-- | makeminidawg/makeminidawg.pro | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/makeminidawg/makeminidawg.pro b/makeminidawg/makeminidawg.pro index d58266d..9288b92 100644 --- a/makeminidawg/makeminidawg.pro +++ b/makeminidawg/makeminidawg.pro @@ -4,19 +4,23 @@ INCLUDEPATH += . .. # enable/disable debug symbols # CONFIG += debug +CONFIG += release CONFIG += console CONFIG -= x11 -build_pass:CONFIG(debug, debug|release) { - LIBS += -L../debug -L../quackleio/debug +debug { + OBJECTS_DIR = obj/debug } -build_pass:CONFIG(release, debug|release) { - LIBS += -L../release -L../quackleio/release +release { + OBJECTS_DIR = obj/release } -LIBS += -L.. -L../quackleio -lquackle -lquackleio +LIBS += -lquackle -lquackleio + +QMAKE_LFLAGS_RELEASE += -L../lib/release -L../quackleio/lib/release +QMAKE_LFLAGS_DEBUG += -L../lib/debug -L../quackleio/lib/debug # Input HEADERS += minidawgmaker.h |