summaryrefslogtreecommitdiff
path: root/quackleio/quackleio.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/quackleio.pro
parent8fb2c681cecc01b46b0f4ba02d5cc177c4747b1c (diff)
Initial git commit.
Diffstat (limited to 'quackleio/quackleio.pro')
-rw-r--r--quackleio/quackleio.pro34
1 files changed, 34 insertions, 0 deletions
diff --git a/quackleio/quackleio.pro b/quackleio/quackleio.pro
new file mode 100644
index 0000000..e883fb6
--- /dev/null
+++ b/quackleio/quackleio.pro
@@ -0,0 +1,34 @@
+TEMPLATE = lib
+INCLUDEPATH += . ..
+DEPENDPATH += . ..
+VERSION = 0.9
+QT -= gui
+debug {
+ OBJECTS_DIR = obj/debug
+ win32 { LIBS += -L../debug }
+}
+
+release {
+ OBJECTS_DIR = obj/release
+ win32 { LIBS += -L../release }
+}
+
+MOC_DIR = moc
+
+# enable/disable debug symbols
+#CONFIG += debug staticlib
+CONFIG += release staticlib
+CONFIG -= x11
+
+LIBS += -L.. -lquackle
+
+# Input
+HEADERS += gcgio.h logania.h queenie.h streamingreporter.h flexiblealphabet.h util.h froggetopt.h dict.h dictfactory.h dictimplementation.h
+SOURCES += gcgio.cpp queenie.cpp streamingreporter.cpp flexiblealphabet.cpp util.cpp froggetopt.cpp dict.cpp dictfactory.cpp dictimplementation.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/
+}