CQtDeployer/UnitTests/UnitTests.pro

43 lines
876 B
Prolog
Raw Normal View History

2019-01-26 15:34:39 +03:00
#
# 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')
2019-03-25 20:13:30 +03:00
include('$$PWD/../pe/pe-parser-library/pe-parser-library.pri')
2019-03-23 20:40:33 +03:00
2019-01-26 15:34:39 +03:00
2019-06-27 19:41:21 +03:00
QT_DIR = $$[QT_HOST_BINS]/../
2019-03-29 18:05:55 +03:00
DEFINES+=QT_BASE_DIR='\\"$$QT_DIR\\"'
2019-01-26 15:34:39 +03:00
CONFIG += qt console warn_on depend_includepath testcase
CONFIG -= app_bundle
TEMPLATE = app
2019-03-19 21:50:05 +03:00
SOURCES += tst_deploytest.cpp \
2019-03-26 22:12:20 +03:00
libcreator.cpp \
2019-09-08 14:18:58 +03:00
qmlcreator.cpp \
testutils.cpp
2019-01-26 22:27:36 +03:00
RESOURCES += \
res.qrc
2019-03-19 21:50:05 +03:00
HEADERS += \
2019-03-26 22:12:20 +03:00
libcreator.h \
2019-09-08 14:18:58 +03:00
qmlcreator.h \
testutils.h