4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-05 14:09:35 +00:00

57 lines
1.2 KiB
Prolog
Raw Normal View History

2019-01-26 15:34:39 +03:00
#
2019-12-08 13:57:20 +03:00
# Copyright (C) 2018-2020 QuasarApp.
2019-01-26 15:34:39 +03:00
# 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-09-11 18:09:37 +03:00
DEFINES+=TEST_BIN_DIR='\\"$$PWD/../tests/build/\\"'
2020-09-09 17:57:18 +03:00
DEFINES+=QTEST_FUNCTION_TIMEOUT=900000
2019-03-29 18:05:55 +03:00
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-14 15:51:23 +03:00
modules.cpp \
2020-01-31 12:40:31 +03:00
modulesqt513.cpp \
modulesqt514.cpp \
2020-08-16 13:18:46 +03:00
modulesqt515.cpp \
modulesqt5152.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 += \
2020-09-09 14:15:54 +03:00
backward-cpp/backward.hpp \
2019-03-26 22:12:20 +03:00
libcreator.h \
2019-09-14 15:51:23 +03:00
modules.h \
2020-01-31 12:40:31 +03:00
modulesqt513.h \
modulesqt514.h \
2020-08-16 13:18:46 +03:00
modulesqt515.h \
modulesqt5152.h \
2019-09-08 14:18:58 +03:00
qmlcreator.h \
testutils.h
2020-09-09 15:52:20 +03:00