debugger: fix renaming of manual test .pro file

Part of this change was alreadry accidentally committed in b1e63fff9.
This commit is contained in:
hjk
2010-06-07 13:21:20 +02:00
parent 61e52d2e70
commit bb824a7401
4 changed files with 3 additions and 33 deletions

View File

@@ -1,12 +0,0 @@
TEMPLATE = app
TARGET = debuggertest
DEPENDPATH += .
INCLUDEPATH += .
DESTDIR = ..
# Input
SOURCES += ../app.cpp
# SOURCES += ../../../../../share/qtcreator/gdbmacros/gdbmacros.cpp
QT += network
message("this says <foo & bar>")

View File

@@ -1,9 +1,9 @@
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}/

View File

@@ -1,18 +0,0 @@
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 =
}

View File

@@ -1,4 +1,4 @@
TEMPLATE = subdirs
SUBDIRS += app plugin
SUBDIRS += app.pro plugin.pro