-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTetris.pro
50 lines (41 loc) · 1.11 KB
/
Tetris.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
QT += core gui \
multimedia \
sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++17
SOURCES += \
main.cpp \
utils/Extensions.cpp \
utils/Counter.cpp \
database/Database.cpp \
settings/Settings.cpp \
windows/main/MainWindow.cpp \
windows/settings/SettingsWindow.cpp \
windows/main/TetrisController.cpp \
windows/main/TetrisModel.cpp \
HEADERS += \
audio_effect/MusicPlayer.h \
utils/Extensions.h \
utils/Resources.h \
utils/Constants.h \
utils/Counter.h \
audio_effect/SFXObject.h \
audio_effect/AudioEffect.h \
database/Database.h \
settings/SettingsModels.h \
settings/Settings.h \
windows/settings/SettingsWindow.h \
windows/main/MainWindow.h \
windows/main/TetrisController.h \
windows/main/TetrisModel.h \
FORMS += \
ui/mainwindow.ui \
ui/settingswindow.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
res.qrc
ICON = tetris_icon.icns
RC_ICONS += tetris_icon.icns