diff options
| author | 2022-04-16 01:58:40 +0200 | |
|---|---|---|
| committer | 2022-04-16 02:59:30 +0200 | |
| commit | 6ba9324cf4864ebd2e2cdec8098b0889ceaea0a8 (patch) | |
| tree | e29af0f803de724e28eab85da2dfe6c535a8292b /diceParser.pro | |
| parent | 0c040da59e6aa2df3bd0c22e38b2afe0512d3749 (diff) | |
| download | OneRoll-6ba9324cf4864ebd2e2cdec8098b0889ceaea0a8.tar.gz OneRoll-6ba9324cf4864ebd2e2cdec8098b0889ceaea0a8.zip | |
Make sure Windows compilation works
Diffstat (limited to 'diceParser.pro')
| -rw-r--r-- | diceParser.pro | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/diceParser.pro b/diceParser.pro deleted file mode 100644 index 2b5f3fd..0000000 --- a/diceParser.pro +++ /dev/null @@ -1,71 +0,0 @@ -#------------------------------------------------- -# -# Project created by QtCreator 2013-12-24T13:06:36 -# -#------------------------------------------------- - -QT += core - -QT -= gui - -include(node/node.pri) - -TARGET = diceParser -CONFIG += console -CONFIG -= app_bundle - -TEMPLATE = app - -#CONFIG+= IRC -#CONFIG+= GUI -CONFIG+= CLI -CLI { -DEFINES += CLI -include(cli/cli.pri) -} -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 += diceparser.cpp \ - result/diceresult.cpp \ - range.cpp \ - booleancondition.cpp \ - validator.cpp \ - die.cpp \ - result/result.cpp \ - result/scalarresult.cpp \ - parsingtoolbox.cpp \ - result/stringresult.cpp \ - dicealias.cpp \ - mobile/mainwindow.cpp - - -HEADERS += \ - diceparser.h \ - result/diceresult.h \ - range.h \ - booleancondition.h \ - validator.h \ - die.h \ - result/result.h \ - result/scalarresult.h \ - result/parsingtoolbox.h \ - result/stringresult.h \ - dicealias.h \ - mobile/mainwindow.h - -OTHER_FILES += README.md \ - HelpMe.md - - -#QMAKE_CXXFLAGS += -O0 |