Skip to content
Snippets Groups Projects
Commit bb824a74 authored by hjk's avatar hjk
Browse files

debugger: fix renaming of manual test .pro file

Part of this change was alreadry accidentally committed in b1e63fff.
parent 61e52d2e
No related branches found
No related tags found
No related merge requests found
TEMPLATE = app
TARGET = debuggertest
DEPENDPATH += .
INCLUDEPATH += .
DESTDIR = ..
# Input
SOURCES += ../app.cpp
# SOURCES += ../../../../../share/qtcreator/gdbmacros/gdbmacros.cpp
QT += network
message("this says <foo & bar>")
TEMPLATE = lib
TARGET = plugin
DESTDIR = ..
DESTDIR = .
CONFIG += shared
SOURCES += ../plugin.cpp
SOURCES += plugin.cpp
macx {
QMAKE_LFLAGS_SONAME = -Wl,-install_name,@executable_path/../PlugIns/$${PROVIDER}/
......
TEMPLATE = lib
TARGET = plugin
DESTDIR = ..
CONFIG += shared
SOURCES += ../plugin.cpp
macx {
QMAKE_LFLAGS_SONAME = -Wl,-install_name,@executable_path/../PlugIns/$${PROVIDER}/
} 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 =
}
TEMPLATE = subdirs
SUBDIRS += app plugin
SUBDIRS += app.pro plugin.pro
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment