forked from RazrFalcon/svgcleaner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvgcleaner.pro
29 lines (22 loc) · 963 Bytes
/
svgcleaner.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
TEMPLATE = subdirs
SUBDIRS = src/cli src/gui
CONFIG += ordered
linux {
isEmpty (PREFIX):PREFIX = /usr
INSTALLS += bin desktop logo presets translations
desktop.path = $$PREFIX/share/applications
desktop.files += svgcleaner.desktop
logo.path = $$PREFIX/share/icons/hicolor/scalable/apps
logo.files += icons/svgcleaner.svg
presets.path = $$PREFIX/share/svgcleaner/presets
presets.files += presets/Soft.preset \
presets/Normal.preset \
presets/Optimal.preset
translations.path = $$PREFIX/share/svgcleaner/translations
translations.files += bin/svgcleaner_cs.qm \
bin/svgcleaner_ru.qm \
bin/svgcleaner_uk.qm \
bin/svgcleaner_de.qm
bin.path = $$PREFIX/bin
bin.files += bin/svgcleaner-cli bin/svgcleaner-gui
}