mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-30 11:55:35 +08:00
Test Plan: - Check that the new shared libraries are packaged in all platform installers. - check that plugins are loaded properly on all platforms. Reviewers: #swift_pilot_client, msutcliffe Reviewed By: #swift_pilot_client, msutcliffe Maniphest Tasks: T471 Differential Revision: https://dev.swift-project.org/D79
32 lines
600 B
Prolog
32 lines
600 B
Prolog
load(common_pre)
|
|
|
|
QT += core dbus network widgets
|
|
|
|
TARGET = simulatorfs9
|
|
TEMPLATE = lib
|
|
|
|
CONFIG += plugin shared
|
|
CONFIG += blackmisc blackcore blackgui
|
|
CONFIG += simulatorfscommon simulatorplugincommon
|
|
|
|
DEPENDPATH += . $$SourceRoot/src
|
|
INCLUDEPATH += . $$SourceRoot/src
|
|
|
|
LIBS += -luuid -ldxguid -lole32
|
|
|
|
SOURCES += *.cpp
|
|
HEADERS += *.h
|
|
DISTFILES += simulatorfs9.json
|
|
|
|
DESTDIR = $$DestRoot/bin/plugins/simulator
|
|
|
|
win32 {
|
|
dlltarget.path = $$PREFIX/bin/plugins/simulator
|
|
INSTALLS += dlltarget
|
|
} else {
|
|
target.path = $$PREFIX/bin/plugins/simulator
|
|
INSTALLS += target
|
|
}
|
|
|
|
load(common_post)
|