view test-svcore-system.pro @ 2421:791ee0f879fd

Next release will be 4.1; update changelog, and update Qt version in build
author Chris Cannam
date Thu, 21 Nov 2019 14:12:22 +0000
parents a86168d1ba68
children
line wrap: on
line source

TEMPLATE = app

exists(config.pri) {
    include(config.pri)
}

!exists(config.pri) {
    include(noconfig.pri)
}

include(base.pri)

CONFIG += console
QT += network xml testlib
QT -= gui

win32-x-g++:QMAKE_LFLAGS += -Wl,-subsystem,console
macx*: CONFIG -= app_bundle

TARGET = test-svcore-system

OBJECTS_DIR = o
MOC_DIR = o

include(svcore/system/test/files.pri)

for (file, TEST_SOURCES) { SOURCES += $$sprintf("svcore/system/test/%1", $$file) }
for (file, TEST_HEADERS) { HEADERS += $$sprintf("svcore/system/test/%1", $$file) }

!win32* {
    POST_TARGETDEPS += $$PWD/libbase.a
    QMAKE_POST_LINK = ./$${TARGET}
}