0
|
1 |
load(qttest_p4)
|
|
2 |
|
|
3 |
include(../src/src.pri)
|
|
4 |
QT -= gui
|
|
5 |
|
|
6 |
DEFINES += QSHAREDMEMORY_DEBUG
|
|
7 |
DEFINES += QSYSTEMSEMAPHORE_DEBUG
|
|
8 |
|
|
9 |
SOURCES += ../tst_qsharedmemory.cpp
|
|
10 |
TARGET = ../tst_qsharedmemory
|
|
11 |
|
|
12 |
!wince*:win32 {
|
|
13 |
CONFIG(debug, debug|release) {
|
|
14 |
TARGET = ../../debug/tst_qsharedmemory
|
|
15 |
} else {
|
|
16 |
TARGET = ../../release/tst_qsharedmemory
|
|
17 |
}
|
|
18 |
}
|
|
19 |
|
|
20 |
wince*:{
|
|
21 |
requires(contains(QT_CONFIG,script))
|
|
22 |
QT += gui script
|
|
23 |
addFiles.sources = ../lackey/lackey.exe ../lackey/scripts
|
|
24 |
addFiles.path = lackey
|
|
25 |
DEPLOYMENT += addFiles
|
|
26 |
DEFINES += SRCDIR=\\\"\\\"
|
|
27 |
}else:symbian*{
|
|
28 |
requires(contains(QT_CONFIG,script))
|
|
29 |
QT += gui script
|
|
30 |
addFiles.sources = ../lackey/scripts
|
|
31 |
addFiles.path = /data/qsharedmemorytemp/lackey
|
|
32 |
addBin.sources = lackey.exe
|
|
33 |
addBin.path = /sys/bin
|
|
34 |
DEPLOYMENT += addFiles addBin
|
|
35 |
} else {
|
|
36 |
DEFINES += SRCDIR=\\\"$$PWD/../\\\"
|
|
37 |
}
|