mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-27 18:24:33 +00:00
34 lines
665 B
Prolog
34 lines
665 B
Prolog
#
|
|
# Copyright (C) 2018-2019 QuasarApp.
|
|
# Distributed under the lgplv3 software license, see the accompanying
|
|
# Everyone is permitted to copy and distribute verbatim copies
|
|
# of this license document, but changing it is not allowed.
|
|
#
|
|
|
|
|
|
QT += testlib
|
|
QT -= gui
|
|
|
|
CONFIG(release, debug|release): {
|
|
DESTDIR="$$PWD/build/release"
|
|
} else {
|
|
DESTDIR="$$PWD/build/debug"
|
|
}
|
|
|
|
include('$$PWD/../QuasarAppLib/QuasarLib.pri')
|
|
include('$$PWD/../Deploy/Deploy.pri')
|
|
|
|
CONFIG += qt console warn_on depend_includepath testcase
|
|
CONFIG -= app_bundle
|
|
|
|
TEMPLATE = app
|
|
|
|
SOURCES += tst_deploytest.cpp \
|
|
libcreator.cpp
|
|
|
|
RESOURCES += \
|
|
res.qrc
|
|
|
|
HEADERS += \
|
|
libcreator.h
|