qtmobility/tests/auto/contacts_plugins.pri
changeset 1 2b40d63a9c3d
equal deleted inserted replaced
0:cfcbf08528c4 1:2b40d63a9c3d
       
     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