-
Notifications
You must be signed in to change notification settings - Fork 140
/
mindforger.pro
71 lines (60 loc) · 2.58 KB
/
mindforger.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
# mindforger.pro Qt project file for MindForger
#
# Copyright (C) 2016-2024 Martin Dvorak <[email protected]>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# 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, see <http://www.gnu.org/licenses/>.
#########################################################################
#
# QMake example:
#
# qmake -project project.pro CONFIG+=mysetting1 CONFIG+=mysetting2
#
# QMake build options:
#
# qmake CONFIG+=mfwebengine ... build project w/ Qt WebEngine instead of Qt WebKit
# qmake CONFIG+=mfoldhunspell ... force use of DEPRECATED Hunspell API
# qmake CONFIG+=mfnomd2html ... build project w/o Markdown 2 HTML library (cmark-gfm)
# qmake CONFIG+=mfnocxx ... do NOT define CXX i.e. g++
# qmake CONFIG+=mfnoccache ... do NOT use ccache to build the project
# qmake CONFIG+=mfdebug ... show debug messages + include WIP code
# qmake CONFIG+=mfci ... CI build (AppVeyor, ...) w/ build info @ window title
# qmake CONFIG+=mfrc ... RC build w/ build info @ window title
# qmake CONFIG+=mfunits ... option to run unit tests
#
# Warning: DEPRECATED build options will be removed in the next major release.
#
#########################################################################
TEMPLATE = subdirs
SUBDIRS = lib app
# build dependencies
app.depends = lib
# ########################################
# Linux installation: make install
# ########################################
# See http://doc.qt.io/qt-5/qmake-advanced-usage.html
#IMPORTANT: binfile MUST be specified in app/app.pro (project next to/that builds binary)
docfiles.files += doc/*
docfiles.path = $$PREFIX/share/doc/mindforger/
INSTALLS += docfiles
manfiles.files += man/*
manfiles.path = $$PREFIX/share/man/man1/
INSTALLS += manfiles
iconfiles.files += app/resources/icons/*
iconfiles.path = $$PREFIX/share/icons/mindforger/
INSTALLS += iconfiles
# experiment w/ file
shortcutfiles.files += app/resources/gnome-shell/mindforger.desktop
shortcutfiles.path = $$PREFIX/share/applications/
INSTALLS += shortcutfiles
# eof