diff options
| author | 2015-03-05 14:30:18 +0100 | |
|---|---|---|
| committer | 2015-03-05 14:30:18 +0100 | |
| commit | 606001e99593372d0a71c566a5efdefd48175305 (patch) | |
| tree | 28f1fdee4a0afd5a8b425eebdb8a8d9e73a255d6 /diceParser.pro | |
| parent | 30aaf7a35bc6e8224ad683148af28cedf81f03fd (diff) | |
| download | OneRoll-606001e99593372d0a71c566a5efdefd48175305.tar.gz OneRoll-606001e99593372d0a71c566a5efdefd48175305.zip | |
add generateTree
add jumpbackward node
Diffstat (limited to 'diceParser.pro')
| -rw-r--r-- | diceParser.pro | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/diceParser.pro b/diceParser.pro index 219eb0a..b3ed2a0 100644 --- a/diceParser.pro +++ b/diceParser.pro @@ -9,8 +9,6 @@ QT += core QT -= gui include(node/node.pri) -include(gui/gui.pri) -include(irc/irc.pri) TARGET = diceParser CONFIG += console @@ -18,6 +16,22 @@ CONFIG -= app_bundle TEMPLATE = app +#CONFIG+= IRC +#CONFIG+= GUI + + +IRC { +include(irc/irc.pri) +QT += gui widgets +DEFINES+= HAVE_IRC +message("test") +} +GUI { +include(gui/gui.pri) +QT += gui widgets +DEFINES+= HAVE_GUI +} + SOURCES += main.cpp \ diceparser.cpp \ |