forked from Top-Ranger/harbour-vocabulary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathharbour-vocabulary.pro
88 lines (70 loc) · 2.26 KB
/
harbour-vocabulary.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
78
79
80
81
82
83
84
85
86
87
88
TARGET = harbour-vocabulary
QT += sql
CONFIG += sailfishapp c++11 precompile_header
PRECOMPILED_HEADER = src/global.h
# Icons + license
!exists(icons/86x86/harbour-vocabulary.png) {
error( "Images not generated - call 'create_icons.sh'" )
}
!exists(icons/108x108/harbour-vocabulary.png) {
error( "Images not generated - call 'create_icons.sh'" )
}
!exists(icons/128x128/harbour-vocabulary.png) {
error( "Images not generated - call 'create_icons.sh'" )
}
!exists(icons/256x256/harbour-vocabulary.png) {
error( "Images not generated - call 'create_icons.sh'" )
}
icon86.files = icons/86x86/harbour-vocabulary.png
icon86.path = /usr/share/icons/hicolor/86x86/apps/
icon108.files = icons/108x108/harbour-vocabulary.png
icon108.path = /usr/share/icons/hicolor/108x108/apps/
icon128.files = icons/128x128/harbour-vocabulary.png
icon128.path = /usr/share/icons/hicolor/128x128/apps/
icon256.files = icons/256x256/harbour-vocabulary.png
icon256.path = /usr/share/icons/hicolor/256x256/apps/
license.files = LICENSE.txt
license.path = /usr/share/$${TARGET}
INSTALLS += icon86 icon108 icon128 icon256 license
SOURCES += src/harbour-vocabulary.cpp \
src/simpleinterface.cpp \
src/randomvocabulary.cpp \
src/global.cpp \
src/trainer.cpp \
src/settingsproxy.cpp \
src/fileutils.cpp \
src/csvhandle.cpp \
src/databasetools.cpp
OTHER_FILES += qml/harbour-vocabulary.qml \
qml/cover/CoverPage.qml \
DISTFILES += \
qml/pages/Menu.qml \
rpm/harbour-vocabulary.spec \
qml/pages/Add.qml \
qml/pages/UpperPanel.qml \
qml/pages/List.qml \
harbour-vocabulary.desktop \
qml/pages/Training.qml \
Readme.md \
qml/pages/About.qml \
qml/pages/Edit.qml \
qml/pages/Details.qml \
qml/pages/SettingsTraining.qml \
qml/pages/ImExport.qml \
qml/pages/ImExport/CSVImport.qml \
qml/pages/ImExport/CSVExport.qml \
qml/pages/Languages.qml \
qml/pages/LanguageMove.qml \
qml/pages/LanguageEdit.qml \
qml/pages/FiltersTraining.qml \
qml/pages/SortSelection.qml \
qml/pages/TrainingResult.qml
HEADERS += \
src/global.h \
src/simpleinterface.h \
src/randomvocabulary.h \
src/trainer.h \
src/settingsproxy.h \
src/fileutils.h \
src/csvhandle.h \
src/databasetools.h