mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
* config.pri: Build configuration version * library.pri project library dependencies * build.pri: compiler/qmake configuration refs #145
26 lines
438 B
Prolog
26 lines
438 B
Prolog
include (../../config.pri)
|
|
include (../../build.pri)
|
|
|
|
QT += core
|
|
QT -= gui
|
|
|
|
TARGET = sample_plugin
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += plugin
|
|
CONFIG += blackmisc blackcore
|
|
|
|
|
|
DEPENDPATH += . ../../src
|
|
INCLUDEPATH += . ../../src
|
|
|
|
SOURCES += *.cpp
|
|
HEADERS += *.h
|
|
|
|
win32:!win32-g++*: PRE_TARGETDEPS += ../../lib/blackmisc.lib
|
|
else: PRE_TARGETDEPS += ../../lib/libblackmisc.a
|
|
|
|
DESTDIR = ../../bin
|
|
|
|
include (../../libraries.pri)
|