mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
26 lines
517 B
Prolog
26 lines
517 B
Prolog
QT += core testlib
|
|
QT -= gui
|
|
|
|
TARGET = test_blackmisc
|
|
TEMPLATE = app
|
|
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
|
|
DEPENDPATH += . ../../src
|
|
INCLUDEPATH += . ../../src
|
|
SOURCES += main.cpp testmain.cpp testphysicalquantitiesbase.cpp
|
|
HEADERS += testmain.h testphysicalquantitiesbase.h
|
|
|
|
win32-msvc* {
|
|
PRE_TARGETDEPS += ../../lib/blackmisc.lib
|
|
LIBS += ../../lib/blackmisc.lib
|
|
}
|
|
|
|
!win32-msvc* {
|
|
PRE_TARGETDEPS += ../../lib/libblackmisc.a
|
|
LIBS += ../../lib/libblackmisc.a
|
|
}
|
|
|
|
DESTDIR = ../../bin
|