blob: caf19fb6948c56c981e22320b5849bee228f8ead (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#-------------------------------------------------
#
# 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
SOURCES += main.cpp \
diceparser.cpp \
diceresult.cpp \
range.cpp \
booleancondition.cpp \
validator.cpp \
die.cpp
HEADERS += \
diceparser.h \
diceresult.h \
range.h \
booleancondition.h \
validator.h \
die.h
OTHER_FILES += README.md
#QMAKE_CXXFLAGS += -O0
|