summaryrefslogtreecommitdiffstats
path: root/tests/auto/qprocess/test/test.pro
blob: 82f91f89d581a10682ba778d4830ec9dc83ad779 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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

!symbian: {
    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
}

symbian: {
   binDep.sources = \
        fileWriterProcess.exe \
        testDetached.exe \
        testExitCodes.exe \
        testProcessCrash.exe \
        testProcessEcho.exe \
        testProcessNormal.exe \
        testProcessOutput.exe \
        nospace.exe \
        testSpaceInName.exe
   binDep.path = \sys\bin

   DEPLOYMENT += binDep
}