-
Notifications
You must be signed in to change notification settings - Fork 7
/
Minesweeper.pro
52 lines (42 loc) · 1.14 KB
/
Minesweeper.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
TARGET = Minesweeper
TEMPLATE = app
QT += qml quick \
multimedia \
multimediawidgets
CONFIG += static
SOURCES += main.cpp \
GameLogic/Cell.cpp \
GameLogic/Minesweeper.cpp \
HighScores/mediator.cpp \
HighScores/myscore.cpp \
HighScores/scoremodel.cpp \
Sound/soundmanager.cpp
RESOURCES += \
qml.qrc
#Windows icon
#Not working...we need to fix this
win32:RC_FILE = minesweeper.rc
#MAC set .ICN
#ICON =/GUI/icons/ico/minesweeper.icns
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
HEADERS += \
GameLogic/Cell.h \
GameLogic/Minesweeper.h \
HighScores/mediator.h \
HighScores/myscore.h \
HighScores/scoremodel.h \
Sound/soundmanager.h
DISTFILES += \
android/AndroidManifest.xml \
android/gradle/wrapper/gradle-wrapper.jar \
android/gradlew \
android/res/values/libs.xml \
android/build.gradle \
android/gradle/wrapper/gradle-wrapper.properties \
android/gradlew.bat \
minesweeper.rc \
minesweeper.exe.manifest
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android