diff options
author | Matt Liberty <matt.liberty@gmail.com> | 2013-10-25 06:39:45 -0700 |
---|---|---|
committer | Matt Liberty <matt.liberty@gmail.com> | 2013-10-25 06:39:45 -0700 |
commit | d06baaaa1d252b88592fd91a318bbd52d8de508d (patch) | |
tree | 7d2e57bd218a4d4c9ae8a087dcfc2237d268464d /quackleio/iotest | |
parent | 5567c9bfd60e059de83be1a4d8dfe5ba976a06ea (diff) |
Clean up build of minor executables to use proper paths and obj subdirs
Diffstat (limited to 'quackleio/iotest')
-rw-r--r-- | quackleio/iotest/iotest.pro | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/quackleio/iotest/iotest.pro b/quackleio/iotest/iotest.pro index 86d32a3..a1e3670 100644 --- a/quackleio/iotest/iotest.pro +++ b/quackleio/iotest/iotest.pro @@ -4,18 +4,20 @@ INCLUDEPATH += . .. ../.. # enable/disable debug symbols #CONFIG += debug +CONFIG += release debug { OBJECTS_DIR = obj/debug - win32 { LIBS += -L../debug -L../../debug } } release { OBJECTS_DIR = obj/release - win32 { LIBS += -L../release -L../../release } } -LIBS += -L.. -L../.. -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 += trademarkedboards.h |