Files
pilotclient/src/blackcore/blackcore.pro
Mathew Sutcliffe dace9e4da5 refs #297 Added CSettingsCache singleton derived class of CValueCache
for core settings, with context signal and slot for relay.
2015-11-19 20:51:27 +00:00

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)