XPlor/tests/tests.pro

47 lines
856 B
Prolog
Raw Normal View History

2025-03-01 20:38:52 -05:00
TEMPLATE = app
CONFIG += no_main
# Enable the testlib module
QT += testlib
# Define a test-specific flag
DEFINES += QT_TESTS
TARGET = tests
# List all test source files
SOURCES += \
autotest_cod5.cpp \
test_main.cpp \
autotest_cod.cpp \
autotest_xplor.cpp
# Prevent tests from being built in release mode (optional)
# CONFIG(debug, debug|release) {
# message("Including test files in Debug mode")
# } else {
# SOURCES -= autotest_cod5.cpp
# }
2025-04-04 20:34:24 -04:00
app.depends += \
libs/core \
libs/compression \
libs/encryption
LIBS += \
-L$$OUT_PWD/../libs/ -lcore -lencryption -lcompression
INCLUDEPATH += \
$$PWD/../libs/core \
$$PWD/../libs/encryption \
$$PWD/../libs/compression
DEPENDPATH += \
$$PWD/../libs/core \
$$PWD/../libs/encryption \
$$PWD/../libs/compression
RESOURCES += \
data.qrc