equal
deleted
inserted
replaced
|
1 # |
|
2 # Code for making sure our test plugins go to the right places |
|
3 # (by default, these are private plugins for cross compilation platforms) |
|
4 # |
|
5 # There is typically a completely separate folder for each unit test |
|
6 # on these platforms, so installing plugins to those dirs is acceptable. |
|
7 # |
|
8 # On other platforms, all tests are built and live in a single place |
|
9 # so we put the test plugins into a separate dir, since we don't want |
|
10 # these test plugins available for all unit tests. |
|
11 # |
|
12 symbian{ |
|
13 TARGET.EPOCALLOWDLLDATA = 1 |
|
14 TARGET.CAPABILITY = ALL -TCB |
|
15 |
|
16 testplugin.sources = $${TARGET}.dll |
|
17 testplugin.path = plugins\contacts |
|
18 DEPLOYMENT += testplugin |
|
19 |
|
20 target.path = plugins\contacts |
|
21 INSTALLS += target |
|
22 } |
|
23 |
|
24 wince* { |
|
25 testplugin.sources = $${TARGET}.dll |
|
26 testplugin.path = ./plugins |
|
27 DEPLOYMENT += testplugin |
|
28 |
|
29 target.path = ./plugins |
|
30 INSTALLS += target |
|
31 } |
|
32 |
|
33 # Add this too |
|
34 CONFIG += mobility |
|
35 MOBILITY = contacts |
|
36 |
|
37 |