summaryrefslogtreecommitdiff
path: root/tests/manual/debugger/spacy-file/plugin/plugin.pro
blob: 3ae5194ac0796fd3b49fad4fed8396162ac10e31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
TEMPLATE = lib
TARGET = plugin
DESTDIR = ..
CONFIG += shared

SOURCES += "../plugin with space.cpp"

macx {
   QMAKE_LFLAGS_SONAME = -Wl,-install_name,@executable_path/../PlugIns/
} else:linux-* {
    #do the rpath by hand since it's not possible to use ORIGIN in QMAKE_RPATHDIR
    QMAKE_RPATHDIR += \$\$ORIGIN/..
    IDE_PLUGIN_RPATH = $$join(QMAKE_RPATHDIR, ":")
    QMAKE_LFLAGS += -Wl,-z,origin \'-Wl,-rpath,$${IDE_PLUGIN_RPATH}\'
    QMAKE_RPATHDIR =
}