diff options
author | John Fultz <jfultz@wolfram.com> | 2015-10-14 04:37:27 -0500 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2015-10-14 04:37:27 -0500 |
commit | 86e8d2a1247e8c6b00cefda10b2a96376a1540ca (patch) | |
tree | 5b5089a9462b34ca1e0b833638b9df779c50d410 /quackleio/iotest | |
parent | fd6daafffbcce3bfc385d7508a1ca50174840912 (diff) |
Windows build fixes.
Diffstat (limited to 'quackleio/iotest')
-rw-r--r-- | quackleio/iotest/iotest.pro | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/quackleio/iotest/iotest.pro b/quackleio/iotest/iotest.pro index 0bf472e..c7e994f 100644 --- a/quackleio/iotest/iotest.pro +++ b/quackleio/iotest/iotest.pro @@ -8,16 +8,20 @@ CONFIG += release debug { OBJECTS_DIR = obj/debug + QMAKE_LIBDIR += ../../lib/debug ../../quackleio/lib/debug } release { OBJECTS_DIR = obj/release + QMAKE_LIBDIR += ../../lib/release ../../quackleio/lib/release } -LIBS += -lquackleio -lquackle +win32:!win32-g++ { + LIBS += -lquackleio -llibquackle +} else { + LIBS += -lquackleio -lquackle +} -QMAKE_LFLAGS_RELEASE += -L../../lib/release -L../../quackleio/lib/release -QMAKE_LFLAGS_DEBUG += -L../../lib/debug -L../../quackleio/lib/debug # Input HEADERS += trademarkedboards.h |