blob: 3741e3c25b74ef20d17f3581488e498afbe904dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
load(qttest_p4)
SOURCES += ../tst_qprocess.cpp
!wince*: {
TARGET = ../tst_qprocess
win32: {
CONFIG(debug, debug|release) {
TARGET = ../../debug/tst_qprocess
} else {
TARGET = ../../release/tst_qprocess
}
}
} else {
TARGET = tst_qprocess
}
QT = core
QT += network
embedded: QT += gui
wince*: {
addFiles.sources = \
../fileWriterProcess \
"../test Space In Name" \
../testBatFiles \
../testDetached \
../testExitCodes \
../testGuiProcess \
../testProcessCrash \
../testProcessDeadWhileReading \
../testProcessEcho \
../testProcessEcho2 \
../testProcessEcho3 \
../testProcessEchoGui \
../testProcessEOF \
../testProcessLoopback \
../testProcessNormal \
../testProcessOutput \
../testProcessSpacesArgs \
../testSoftExit \
../testSpaceInName
addFiles.path = \Program Files\tst_qprocess
DEPLOYMENT += addFiles
}
|