Advertisement
Guest User

Untitled

a guest
Nov 7th, 2011
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. # Add files and directories to ship with the application
  2. # by adapting the examples below.
  3. # file1.source = myfile
  4. # dir1.source = mydir
  5. DEPLOYMENTFOLDERS = # file1 dir1
  6.  
  7. symbian:TARGET.UID3 = 0xE63365A6
  8.  
  9. # Smart Installer package's UID
  10. # This UID is from the protected range
  11. # and therefore the package will fail to install if self-signed
  12. # By default qmake uses the unprotected range value if unprotected UID is defined for the application
  13. # and 0x2002CCCF value if protected UID is given to the application
  14. #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
  15.  
  16. # Allow network access on Symbian
  17. symbian:TARGET.CAPABILITY += NetworkServices
  18.  
  19. # If your application uses the Qt Mobility libraries, uncomment
  20. # the following lines and add the respective components to the
  21. # MOBILITY variable.
  22. # CONFIG += mobility
  23. # MOBILITY +=
  24.  
  25. SOURCES += main.cpp mainwindow.cpp
  26. HEADERS += mainwindow.h
  27. FORMS += mainwindow.ui
  28.  
  29. # Please do not modify the following two lines. Required for deployment.
  30. include(deployment.pri)
  31. qtcAddDeployment()
  32.  
  33. OTHER_FILES += \
  34. qtc_packaging/debian_harmattan/rules \
  35. qtc_packaging/debian_harmattan/README \
  36. qtc_packaging/debian_harmattan/copyright \
  37. qtc_packaging/debian_harmattan/control \
  38. qtc_packaging/debian_harmattan/compat \
  39. qtc_packaging/debian_harmattan/changelog \
  40. qtc_packaging/debian_fremantle/rules \
  41. qtc_packaging/debian_fremantle/README \
  42. qtc_packaging/debian_fremantle/copyright \
  43. qtc_packaging/debian_fremantle/control \
  44. qtc_packaging/debian_fremantle/compat \
  45. qtc_packaging/debian_fremantle/changelog
  46.  
  47.  
  48.  
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement