mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
Summary: This fixes issue reported by Klaus in Slack: > when I change something in the plugin driver, I always have to rebuild the plugins before I can debug again. Also refactored `libraries.pri` to remove duplication. Reviewers: #swift_pilot_client, rwinklmeier Reviewed By: #swift_pilot_client, rwinklmeier Subscribers: kbasan, jenkins Tags: #swift_pilot_client Differential Revision: https://dev.swift-project.org/D31
49 lines
936 B
Plaintext
49 lines
936 B
Plaintext
LIBS *= -L$$DestRoot/lib
|
|
|
|
unix:!macx {
|
|
# Set the rpath-link to find dependent shared libraries when linking
|
|
# Note: This does not add any rpath into the binaries.
|
|
LIBS += -Wl,-rpath-link,$$DestRoot/lib -Wl,-rpath-link,$$[QT_INSTALL_LIBS]
|
|
}
|
|
|
|
blackgui {
|
|
addLibraryDependency(blackgui)
|
|
LIBS *= -lblackgui
|
|
}
|
|
|
|
blackcore {
|
|
addLibraryDependency(blackcore)
|
|
LIBS *= -lblackcore -lvatlib
|
|
}
|
|
|
|
blacksound {
|
|
LIBS *= -lblacksound
|
|
}
|
|
|
|
blackinput {
|
|
addLibraryDependency(blackinput)
|
|
LIBS *= -lblackinput
|
|
|
|
macx {
|
|
LIBS += -framework CoreFoundation -framework ApplicationServices -framework Foundation -framework AppKit
|
|
}
|
|
|
|
win32 {
|
|
LIBS *= -ldxguid -lole32 -ldinput8 -lUser32
|
|
}
|
|
}
|
|
|
|
blackmisc {
|
|
addLibraryDependency(blackmisc)
|
|
LIBS *= -lblackmisc
|
|
|
|
win32 {
|
|
LIBS *= -lShell32
|
|
}
|
|
}
|
|
|
|
blackconfig {
|
|
addStaticLibraryDependency(blackconfig)
|
|
LIBS *= -lblackconfig
|
|
}
|