This repository has been archived by the owner on Jul 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
harbour-picross.pro
77 lines (67 loc) · 2.02 KB
/
harbour-picross.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
65
66
67
68
69
70
71
72
73
74
75
76
77
# NOTICE:
#
# Application name defined in TARGET has a corresponding QML filename.
# If name defined in TARGET is changed, the following needs to be done
# to match new name:
# - corresponding QML filename must be changed
# - desktop icon filename must be changed
# - desktop filename must be changed
# - icon definition filename in desktop file must be changed
# - translation filenames have to be changed
# The name of your application
TARGET = harbour-picross
CONFIG += sailfishapp
SOURCES += \
src/harbour-picross.cpp \
lupdate_only {
SOURCES += \
qml/cover/CoverPage.qml \
qml/pages/Case.qml \
qml/pages/NewGame.qml \
qml/pages/Grille.qml \
qml/pages/UnZoomButton.qml \
qml/pages/MainPage.qml \
qml/Source.js \
qml/Levels.js \
qml/pages/WinPage.qml \
qml/pages/LevelInfos.qml \
qml/DB.js \
qml/pages/Settings.qml \
qml/pages/Rules.qml \
qml/harbour-picross.qml \
qml/pages/WholeGrid.qml \
}
QT += sql \
core
OTHER_FILES += \
qml/cover/CoverPage.qml \
qml/pages/Case.qml \
qml/pages/NewGame.qml \
qml/pages/Grille.qml \
qml/pages/UnZoomButton.qml \
qml/pages/MainPage.qml \
qml/Source.js \
qml/Levels.js \
qml/pages/WinPage.qml \
qml/pages/LevelInfos.qml \
qml/DB.js \
qml/pages/Settings.qml \
qml/pages/Rules.qml \
qml/harbour-picross.qml \
qml/pages/WholeGrid.qml \
rpm/harbour-picross.changes \
rpm/harbour-picross.spec \
rpm/harbour-picross.yaml \
harbour-picross.desktop \
scripts/genPicross.sh \
harbour-picross.png \
translations/harbour-picross.ts \
translations/harbour-picross-fr.ts \
translations/harbour-picross-it.ts
# to disable building translations every time, comment out the
# following CONFIG line
CONFIG += \
sailfishapp_i18n
TRANSLATIONS += \
translations/harbour-picross-fr.ts \
translations/harbour-picross-it.ts