blob: 2740167fc650c5655925a780f5e4bc037398de99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
TEMPLATE = app
TARGET = repogen
INCLUDEPATH += . ..
include(../../installerfw.pri)
QT -= gui
QT += qml xml concurrent
CONFIG -= import_plugins
CONFIG += console
DESTDIR = $$IFW_APP_PATH
!macos:QTPLUGIN += qopensslbackend
macos:QTPLUGIN += qsecuretransportbackend
SOURCES += repogen.cpp
macx:include(../../no_app_bundle.pri)
target.path = $$[QT_INSTALL_BINS]
INSTALLS += target
|