Central build configuration

* config.pri: Build configuration version
* library.pri project library dependencies
* build.pri: compiler/qmake configuration

refs #145
This commit is contained in:
Roland Winklmeier
2014-03-10 21:19:24 +01:00
parent 811bbdfe4e
commit e978b6dee1
23 changed files with 202 additions and 90 deletions

View File

@@ -1,4 +1,5 @@
include (../../externals.pri)
include (../../config.pri)
include (../../build.pri)
# GUI is required for the matrix classes
# Network for host info etc.
@@ -6,13 +7,12 @@ QT += network dbus xml multimedia
TARGET = blackcore
TEMPLATE = lib
CONFIG += staticlib c++11
CONFIG += staticlib
CONFIG += blackmisc
INCLUDEPATH += ..
DEPENDPATH += . ..
LIBS += -L../../lib -lblacksound -lblackmisc -lSimConnect
# linux-g++* { QMAKE_CXXFLAGS += -std=c++0x }
# PRECOMPILED_HEADER = stdpch.h
@@ -51,3 +51,5 @@ else: PRE_TARGETDEPS += ../../lib/libblackmisc.a ../../lib/libblack
DESTDIR = ../../lib
OTHER_FILES += readme.txt *.xml
include (../../libraries.pri)