-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTDD_Calc.pro
64 lines (55 loc) · 1.45 KB
/
TDD_Calc.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
56
57
58
59
60
61
62
63
64
QT += core gui
QT += widgets
CONFIG += c++11
CONFIG += run_tests
SOURCES += \
external/DarkStyle.cpp \
external/framelesswindow/framelesswindow.cpp \
external/framelesswindow/windowdragger.cpp \
src/bitlabel.cpp \
src/calculator.cpp \
src/displaybin.cpp \
src/displaymain.cpp \
src/functionbuttons.cpp \
src/memorybuttons.cpp \
src/modeselection.cpp \
src/numberbuttons.cpp \
src/actionbar.cpp \
src/calcmainwindow.cpp
HEADERS += \
external/DarkStyle.h \
external/framelesswindow/framelesswindow.h \
external/framelesswindow/windowdragger.h \
src/globalinclude.h \
src/bitlabel.h \
src/calculator.h \
src/displaybin.h \
src/displaymain.h \
src/functionbuttons.h \
src/memorybuttons.h \
src/modeselection.h \
src/numberbuttons.h \
src/actionbar.h \
src/calcmainwindow.h \
src/windows_mess.h
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
run_tests {
TARGET = calc_tests
# test specific files and options here
SOURCES += \
tests/calcTests.cpp \
tests/end_to_end_tests.cpp
QT += testlib
} else {
# app specific files and options here
SOURCES += \
src/main.cpp
}
RESOURCES += \
external/darkstyle.qrc \
external/framelesswindow.qrc
FORMS += \
external/framelesswindow/framelesswindow.ui