mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 13:36:48 +08:00
38 lines
715 B
Prolog
38 lines
715 B
Prolog
include ($$SourceRoot/config.pri)
|
|
include ($$SourceRoot/build.pri)
|
|
|
|
# GUI is required for the matrix classes
|
|
# Network for host info etc.
|
|
QT += network dbus xml multimedia
|
|
|
|
TARGET = blackcore
|
|
TEMPLATE = lib
|
|
CONFIG += blackmisc blackinput blacksound
|
|
|
|
contains(BLACK_CONFIG, Static) {
|
|
CONFIG += staticlib
|
|
}
|
|
|
|
INCLUDEPATH += ..
|
|
DEPENDPATH += . ..
|
|
|
|
# PRECOMPILED_HEADER = stdpch.h
|
|
precompile_header:!isEmpty(PRECOMPILED_HEADER) {
|
|
DEFINES += USING_PCH
|
|
}
|
|
|
|
DEFINES += LOG_IN_FILE BUILD_BLACKCORE_LIB
|
|
|
|
HEADERS += *.h
|
|
$$PWD/settings/*.h
|
|
SOURCES += *.cpp
|
|
|
|
LIBS *= -lvatlib2
|
|
|
|
DESTDIR = $$BuildRoot/lib
|
|
DLLDESTDIR = $$BuildRoot/bin
|
|
|
|
OTHER_FILES += readme.txt *.xml
|
|
|
|
include ($$SourceRoot/libraries.pri)
|