-
Notifications
You must be signed in to change notification settings - Fork 0
/
scicalc.pro
executable file
·55 lines (45 loc) · 997 Bytes
/
scicalc.pro
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#-------------------------------------------------
#
# Project created by QtCreator 2013-03-08T16:53:57
#
#-------------------------------------------------
QT += core gui
#CONFIG += console # for debug output on windows
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = scicalc
TEMPLATE = app
SOURCES += main.cpp\
scicalc.cpp \
variables.cpp \
variable.cpp \
scanner.cpp \
print.cpp \
parser.cpp \
parseException.cpp \
dialoggeneralsettings.cpp \
scicalcedit.cpp \
scicalcblock.cpp
HEADERS += scicalc.h \
variables.h \
variable.h \
token.h \
scanner.h \
print.h \
parser.h \
parseException.h \
dialoggeneralsettings.h \
scicalcedit.h \
scicalcblock.h
FORMS += \
scicalc.ui \
dialoggeneralsettings.ui
DISTFILES += \
CHANGELOG.md \
Grammatik.txt \
README.md \
constants.txt \
functions.txt \
test.sc \
wunschliste.txt
RESOURCES += \
scicalc.qrc