Added new icon file.
[openvpnui.git] / OpenVPNUI.pro
1 # The name of your app.
2 # NOTICE: name defined in TARGET has a corresponding QML filename.
3 #         If name defined in TARGET is changed, following needs to be
4 #         done to match new name:
5 #         - corresponding QML filename must be changed
6 #         - desktop icon filename must be changed
7 #         - desktop filename must be changed
8 #         - icon definition filename in desktop file must be changed
9 TARGET = harbour-openvpn-rig
10
11 CONFIG += sailfishapp
12
13 SOURCES += \
14     src/vpncontrol.cpp \
15     src/filebrowse/searchworker.cpp \
16     src/filebrowse/searchengine.cpp \
17     src/filebrowse/globals.cpp \
18     src/filebrowse/fileworker.cpp \
19     src/filebrowse/filemodel.cpp \
20     src/filebrowse/fileinfo.cpp \
21     src/filebrowse/engine.cpp \
22     src/openvpn-rig.cpp
23
24 OTHER_FILES += qml/harbour-openvpn-rig.qml \
25     qml/cover/CoverPage.qml \
26     rpm/harbour-openvpn-rig.spec \
27     qml/pages/ConnectPage.qml \
28     qml/pages/ConfigurePage.qml \
29     OpenVPN-help.txt \
30     client.ovpn \
31     qml/filebrowse/images/small-link.png \
32     qml/filebrowse/images/small-folder-link.png \
33     qml/filebrowse/images/small-folder.png \
34     qml/filebrowse/images/small-file-video.png \
35     qml/filebrowse/images/small-file-txt.png \
36     qml/filebrowse/images/small-file-text.png \
37     qml/filebrowse/images/small-file-rpm.png \
38     qml/filebrowse/images/small-file-image.png \
39     qml/filebrowse/images/small-file-audio.png \
40     qml/filebrowse/images/small-file-apk.png \
41     qml/filebrowse/images/small-file.png \
42     qml/filebrowse/images/large-link.png \
43     qml/filebrowse/images/large-folder-link.png \
44     qml/filebrowse/images/large-folder.png \
45     qml/filebrowse/images/large-file-video.png \
46     qml/filebrowse/images/large-file-txt.png \
47     qml/filebrowse/images/large-file-rpm.png \
48     qml/filebrowse/images/large-file-image.png \
49     qml/filebrowse/images/large-file-audio.png \
50     qml/filebrowse/images/large-file-apk.png \
51     qml/filebrowse/images/large-file.png \
52     qml/filebrowse/pages/functions.js \
53     qml/filebrowse/pages/ViewPage.qml \
54     qml/filebrowse/pages/SettingsPage.qml \
55     qml/filebrowse/pages/SearchPage.qml \
56     qml/filebrowse/pages/RenameDialog.qml \
57     qml/filebrowse/pages/PermissionsDialog.qml \
58     qml/filebrowse/pages/FilePage.qml \
59     qml/filebrowse/pages/DirectoryPage.qml \
60     qml/filebrowse/pages/CreateFolderDialog.qml \
61     qml/filebrowse/pages/ConsolePage.qml \
62     qml/filebrowse/components/Spacer.qml \
63     qml/filebrowse/components/ProgressPanel.qml \
64     qml/filebrowse/components/NotificationPanel.qml \
65     qml/filebrowse/components/LetterSwitch.qml \
66     qml/filebrowse/components/InteractionBlocker.qml \
67     qml/filebrowse/components/DoubleMenuItem.qml \
68     qml/filebrowse/components/DirPopup.qml \
69     qml/filebrowse/components/CenteredField.qml \
70     qml/components/ValueButtonAlignRight.qml \
71     bin/ovpnpermit \
72     qml/harbour-openvpn-rig.qml \
73     harbour-openvpn-rig.desktop \
74     rpm/harbour-openvpn-rig.spec \
75     rpm/harbour-openvpn-rig.yaml \
76     qml/images/openvpn-rig.png \
77     qml/images/ovpn-title.png \
78     qml/pages/AboutPage.qml
79
80 HEADERS += \
81     src/vpncontrol.h \
82     src/filebrowse/searchworker.h \
83     src/filebrowse/searchengine.h \
84     src/filebrowse/globals.h \
85     src/filebrowse/fileworker.h \
86     src/filebrowse/filemodel.h \
87     src/filebrowse/fileinfo.h \
88     src/filebrowse/engine.h
89
90 INCLUDEPATH += src/filebrowse
91
92 bin.files = bin
93 bin.path = /usr/share/$${TARGET}
94
95 INSTALLS += bin
96