mirror of https://github.com/KLayout/klayout.git
26 lines
347 B
Prolog
26 lines
347 B
Prolog
|
|
DESTDIR = $$OUT_PWD/..
|
|
|
|
include($$PWD/../klayout.pri)
|
|
include($$PWD/../with_all_libs.pri)
|
|
|
|
TEMPLATE = app
|
|
|
|
# Don't build the ut_runner app as ordinary command line tool on MacOS
|
|
mac {
|
|
CONFIG -= app_bundle
|
|
}
|
|
|
|
TARGET = ut_runner
|
|
|
|
SOURCES = \
|
|
unit_test_main.cc \
|
|
utTestConsole.cc \
|
|
|
|
HEADERS += \
|
|
utTestConsole.h \
|
|
|
|
!win32 {
|
|
LIBS += -ldl
|
|
}
|