forked from qt-creator/qt-creator
OSX: Move libraries from PlugIns/ to Frameworks/ other: move QmlDesigner plugins to plugins directory Change-Id: Ia266a3514ce6a496061daa044b3781daae0bc272 Reviewed-by: Christian Stenger <christian.stenger@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
14 lines
548 B
Plaintext
14 lines
548 B
Plaintext
macx {
|
|
QMAKE_LFLAGS += -Wl,-rpath,@loader_path/../,-rpath,@executable_path/../
|
|
} else:linux-* {
|
|
#do the rpath by hand since it's not possible to use ORIGIN in QMAKE_RPATHDIR
|
|
# this expands to $ORIGIN (after qmake and make), it does NOT read a qmake var
|
|
QMAKE_RPATHDIR += \$\$ORIGIN
|
|
QMAKE_RPATHDIR += \$\$ORIGIN/..
|
|
QMAKE_RPATHDIR += \$\$ORIGIN/../$$IDE_LIBRARY_BASENAME/qtcreator
|
|
IDE_PLUGIN_RPATH = $$join(QMAKE_RPATHDIR, ":")
|
|
|
|
QMAKE_LFLAGS += -Wl,-z,origin \'-Wl,-rpath,$${IDE_PLUGIN_RPATH}\'
|
|
QMAKE_RPATHDIR =
|
|
}
|