blob: c526283de206dbd2647556bf53d98aa1e0330a93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
TEMPLATE = aux
CONFIG -= debug_and_release
INSTALLER = RiseupVPN-Installer
INPUT = $$PWD/config/config.xml $$PWD/packages
inst.input = INPUT
inst.output = $$INSTALLER
inst.commands = binarycreator -c $$PWD/config/config.xml -p $$PWD/packages ${QMAKE_FILE_OUT}
inst.CONFIG += target_predeps no_link combine
QMAKE_EXTRA_COMPILERS += inst
OTHER_FILES += \
# watch out... it chokes with dashes in the path
packages/riseupvpn/meta/package.xml \
packages/riseupvpn/meta/install.js \
packages/riseupvpn/data/README.txt \
packages/riseupvpn/data/riseup-vpn
|