38be0d1383
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
58 lines
2.0 KiB
Prolog
58 lines
2.0 KiB
Prolog
TEMPLATE = lib
|
|
CONFIG += dll
|
|
CONFIG -= staticlib
|
|
SOURCES = mylib.c
|
|
TARGET = mylib
|
|
DESTDIR = ../
|
|
VERSION = 2
|
|
QT = core
|
|
|
|
wince*: DEFINES += WIN32_MSVC
|
|
win32-msvc: DEFINES += WIN32_MSVC
|
|
win32-borland: DEFINES += WIN32_BORLAND
|
|
|
|
# Force a copy of the library to have an extension that is non-standard.
|
|
# We want to test if we can load a shared library with *any* filename...
|
|
|
|
!symbian {
|
|
win32 {
|
|
# vcproj and Makefile generators refer to target differently
|
|
contains(TEMPLATE,vc.*) {
|
|
src = $(TargetPath)
|
|
} else {
|
|
src = $(DESTDIR_TARGET)
|
|
}
|
|
files = mylib.dl2 system.trolltech.test.mylib.dll
|
|
} else {
|
|
src = $(DESTDIR)$(TARGET)
|
|
files = libmylib.so2 system.trolltech.test.mylib.so
|
|
}
|
|
for(file, files) {
|
|
QMAKE_POST_LINK += $$QMAKE_COPY $$src ..$$QMAKE_DIR_SEP$$file &&
|
|
CLEAN_FILES += ../$$file
|
|
}
|
|
QMAKE_POST_LINK = $$member(QMAKE_POST_LINK, 0, -2)
|
|
}
|
|
|
|
symbian-abld: {
|
|
TARGET.CAPABILITY=ALL -TCB
|
|
FIXEDROOT = $$replace(EPOCROOT,/,\\)
|
|
QMAKE_POST_LINK = \
|
|
copy /Y $${FIXEDROOT}epoc32\\release\\$(PLATFORM)\\$(CFG)\\mylib.dll $${FIXEDROOT}epoc32\\release\\$(PLATFORM)\\$(CFG)\\mylib.dl2 && \
|
|
copy /Y $${FIXEDROOT}epoc32\\release\\$(PLATFORM)\\$(CFG)\\mylib.dll $${FIXEDROOT}epoc32\\release\\$(PLATFORM)\\$(CFG)\\system.trolltech.test.mylib.dll && \
|
|
IF NOT "$(PLATFORM)==WINSCW" copy /Y $${FIXEDROOT}epoc32\\release\\$(PLATFORM)\\$(CFG)\\mylib.dll ..\\tst\\mylib.dl2
|
|
}
|
|
|
|
symbian-sbsv2: {
|
|
TARGET.CAPABILITY=ALL -TCB
|
|
QMAKE_POST_LINK = \
|
|
$(GNUCP) $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/mylib.dll $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/mylib.dl2 && \
|
|
$(GNUCP) $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/mylib.dll $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/system.trolltech.test.mylib.dll && \
|
|
if test $(PLATFORM) != WINSCW;then $(GNUCP) $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/mylib.dll $${PWD}/../tst/mylib.dl2; fi
|
|
}
|
|
|
|
#no special install rule for the library used by test
|
|
INSTALLS =
|
|
|
|
|