summaryrefslogtreecommitdiff
path: root/quackleio/iotest/iotest.pro
diff options
context:
space:
mode:
authorJason Katz-Brown <jason@airbnb.com>2013-08-25 02:17:13 -0700
committerJason Katz-Brown <jason@airbnb.com>2013-08-25 02:17:13 -0700
commit9306cb60c32082c5403931de0823a9fd5daa196c (patch)
treeca1b6eb695fdf3f0c2294e92416b272164bae642 /quackleio/iotest/iotest.pro
parent8fb2c681cecc01b46b0f4ba02d5cc177c4747b1c (diff)
Initial git commit.
Diffstat (limited to 'quackleio/iotest/iotest.pro')
-rw-r--r--quackleio/iotest/iotest.pro29
1 files changed, 29 insertions, 0 deletions
diff --git a/quackleio/iotest/iotest.pro b/quackleio/iotest/iotest.pro
new file mode 100644
index 0000000..8550691
--- /dev/null
+++ b/quackleio/iotest/iotest.pro
@@ -0,0 +1,29 @@
+TEMPLATE = app
+DEPENDPATH += .
+INCLUDEPATH += . .. ../..
+
+# enable/disable debug symbols
+#CONFIG += debug
+
+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
+
+# Input
+HEADERS += trademarkedboards.h
+SOURCES += iotest.cpp trademarkedboards.cpp
+
+win32:!win32-g++ {
+ QMAKE_CFLAGS_DEBUG ~= s/-MDd/-MTd/
+ QMAKE_CXXFLAGS_DEBUG ~= s/-MDd/-MTd/
+ QMAKE_CFLAGS_RELEASE ~= s/-MD/-MT/
+ QMAKE_CXXFLAGS_RELEASE ~= s/-MD/-MT/
+}