view test-svcore-system.pro @ 2262:423f6be8622f

Added tag sv_v3.3pre1 for changeset 0f94d8f9f7d2
author Chris Cannam
date Fri, 05 Apr 2019 11:13:46 +0100
parents df146330bc34
children a86168d1ba68
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* {
    QMAKE_POST_LINK = ./$${TARGET}
}