-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwsc.pro
93 lines (87 loc) · 2.58 KB
/
wsc.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
89
90
91
92
93
# /***************************************************************************
# * Copyright (C) 2006-2023 M Wellings *
# * [email protected] *
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU General Public License version 2 as *
# * published by the Free Software Foundation *
# * *
# * This program is distributed in the hope that it will be useful, *
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
# * GNU General Public License for more details. *
# * *
# * You should have received a copy of the GNU General Public License *
# * along with this program; if not, write to the *
# * Free Software Foundation, Inc., *
# * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
# ***************************************************************************/
TEMPLATE = app
macx {
TARGET = WordSearchCreator
}else {
TARGET = wordsearchcreator
}
QT += xml
QT += network
QT += gui
QT += widgets
QT += printsupport
QT += svg
target.path = /usr/bin
desktop.path = /usr/share/applications
desktop.files += ./wordsearchcreator.desktop
icon256.path = /usr/share/icons/hicolor/256x256/apps/
icon256.files += ./images/wordsearchcreator.png
mime.path = /usr/share/mime/packages/
mime.files += ./wordsearchcreator-mime.xml
mimeicon.path = /usr/share/icons/hicolor/256x256/mimetypes/
mimeicon.files += ./images/oxygen/application-wordsearch.png
INSTALLS += target desktop icon256 mime mimeicon
win32 {
RC_FILE = wsc.rc
}
# Input
HEADERS += appearancedialog.h \
directionselector.h \
directionselectordialogue.h \
footerdialog.h \
listcreator.h \
mainwindow.h \
maskdialogue.h \
maskdrawer.h \
pagelayoutdialogue.h \
wordsearch.h \
wordsearchcontrol.h \
wordsearchdrawer.h \
alphabetdialogue.h \
wordsearchdoc.h \
wordsearchapplication.h \
updatechecker.h \
preferencesdialog.h
FORMS += appearance.ui \
footer.ui \
listcreator.ui \
pagelayout.ui \
alphabet.ui \
wordsearchcontrol.ui \
preferencesdialog.ui
SOURCES += appearancedialog.cpp \
directionselector.cpp \
directionselectordialogue.cpp \
footerdialog.cpp \
listcreator.cpp \
main.cpp \
mainwindow.cpp \
maskdialogue.cpp \
maskdrawer.cpp \
pagelayoutdialogue.cpp \
wordsearch.cpp \
wordsearchcontrol.cpp \
wordsearchdrawer.cpp \
alphabetdialogue.cpp \
wordsearchdoc.cpp \
wordsearchapplication.cpp \
updatechecker.cpp \
preferencesdialog.cpp
RESOURCES += wsc.qrc