~mateo-salta/uvolman/uvolman

« back to all changes in this revision

Viewing changes to uVolMan/uVolMan.pro

  • Committer: Devid Antonio Filoni
  • Date: 2016-07-29 19:40:57 UTC
  • Revision ID: git-v1:cdfff2c72a8eb5247b10da7d60874d8a3f600168
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
TEMPLATE = aux
 
2
TARGET = uVolMan
 
3
 
 
4
RESOURCES += uVolMan.qrc
 
5
 
 
6
QML_FILES += $$files(*.qml,true) \
 
7
             $$files(*.js,true)
 
8
 
 
9
CONF_FILES +=  uVolMan.apparmor \
 
10
               uVolMan.png
 
11
 
 
12
OTHER_FILES += $${CONF_FILES} \
 
13
               $${QML_FILES} \
 
14
               uVolMan.desktop 
 
15
 
 
16
#specify where the qml/js files are installed to
 
17
qml_files.path = /uVolMan
 
18
qml_files.files += $${QML_FILES}
 
19
 
 
20
#specify where the config files are installed to
 
21
config_files.path = /uVolMan
 
22
config_files.files += $${CONF_FILES}
 
23
 
 
24
#install the desktop file, a translated version is automatically created in 
 
25
#the build directory
 
26
desktop_file.path = /uVolMan
 
27
desktop_file.files = $$OUT_PWD/uVolMan.desktop 
 
28
desktop_file.CONFIG += no_check_exist 
 
29
 
 
30
INSTALLS+=config_files qml_files desktop_file
 
31