forked from rodolforg/fet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fet.pro
36 lines (27 loc) · 851 Bytes
/
fet.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
TEMPLATE = subdirs
SUBDIRS = src/src.pro \
src/src-cl.pro \
tests
# With C++11 support
greaterThan(QT_MAJOR_VERSION, 4){
CONFIG += c++11
} else {
QMAKE_CXXFLAGS += -std=c++11
}
unix {
translations.path = /usr/share/fet/translations
translations.files = translations/*.qm
examples.path = /usr/share/fet
examples.files = examples/
desktop.path = /usr/share/applications
desktop.files = fet.desktop
documentation.path = /usr/share/doc/fet
documentation.files = doc/* AUTHORS COPYING ChangeLog README REFERENCES THANKS TODO TRANSLATORS
manual.path = /usr/share/man/man1
manual.files = man/*
icon_svg.path = /usr/share/icons/hicolor/scalable/apps
icon_svg.files = icons/fet.svg
icon_png.path = /usr/share/pixmaps
icon_png.files = icons/fet.png
INSTALLS += translations examples desktop manual documentation icon_svg icon_png
}