Install the debugging support (cdbext, qtcdebugger, qmlprofiler).

Required to deploy the lib upon 'make install'.

Change-Id: I1d6f02e5083dc0b1b34ece840509cb1094f9863c
Reviewed-by: Tim Jenssen <tim.jenssen@nokia.com>
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
Daniel Molkentin
2011-12-15 18:19:02 +01:00
parent de875606e8
commit 99e3556a4c
3 changed files with 13 additions and 4 deletions

View File

@@ -31,18 +31,19 @@ ENV_CPU=$$(CPU)
ENV_LIBPATH=$$(LIBPATH)
contains(ENV_CPU, ^AMD64$) {
DESTDIR=$$IDE_BASE_PATH/lib/$${BASENAME}64
DIRNAME=$${BASENAME}64
CDB_PLATFORM=amd64
} else:isEmpty(ENV_CPU):contains(ENV_LIBPATH, ^.*amd64.*$) {
DESTDIR=$$IDE_BASE_PATH/lib/$${BASENAME}64
DIRNAME=$${BASENAME}64
CDB_PLATFORM=amd64
} else {
DESTDIR=$$IDE_BASE_PATH/lib/$${BASENAME}32
DIRNAME=$${BASENAME}32
CDB_PLATFORM=i386
}
LIBS+=-luser32
DESTDIR=$$IDE_BASE_PATH/lib/$${DIRNAME}
TARGET = $$BASENAME
message("Compiling Qt Creator CDB extension $$TARGET $$DESTDIR for $$CDB_PLATFORM using $$CDB_PATH")
@@ -80,3 +81,7 @@ HEADERS += extensioncontext.h \
containers.h \
knowntype.h \
symbolgroupnode.h
target.path = /lib/$${DIRNAME}
INSTALLS += target

View File

@@ -22,5 +22,6 @@ HEADERS += \
commandlistener.h \
constants.h
target.path=/bin
INSTALLS+=target

View File

@@ -5,3 +5,6 @@ TEMPLATE = app
SOURCES += main.cpp
DESTDIR=../../../bin
target.path=/bin
INSTALLS+=target