mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
* Use source path and build path instead of relative ones * Unify pre target dependencies in libraries.pri
24 lines
398 B
Prolog
24 lines
398 B
Prolog
include ($$SourceRoot/config.pri)
|
|
include ($$SourceRoot/build.pri)
|
|
|
|
QT += core dbus network
|
|
|
|
TARGET = sample_blackmisc
|
|
TEMPLATE = app
|
|
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
CONFIG += blackmisc
|
|
|
|
DEPENDPATH += . $$SourceRoot/src/blackmisc
|
|
INCLUDEPATH += . $$SourceRoot/src
|
|
|
|
DESTDIR = $$BuildRoot/bin
|
|
|
|
HEADERS += *.h
|
|
SOURCES += *.cpp
|
|
|
|
OTHER_FILES +=
|
|
|
|
include ($$SourceRoot/libraries.pri)
|