StarTime.pro 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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. symbian:TARGET.UID3 = 0xE750C09F
  7. # Smart Installer package's UID
  8. # This UID is from the protected range
  9. # and therefore the package will fail to install if self-signed
  10. # By default qmake uses the unprotected range value if unprotected UID is defined for the application
  11. # and 0x2002CCCF value if protected UID is given to the application
  12. #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
  13. # Allow network access on Symbian
  14. symbian:TARGET.CAPABILITY += NetworkServices
  15. # If your application uses the Qt Mobility libraries, uncomment
  16. # the following lines and add the respective components to the
  17. # MOBILITY variable.
  18. # CONFIG += mobility
  19. # MOBILITY +=
  20. SOURCES += main.cpp mainwindow.cpp
  21. HEADERS += mainwindow.h
  22. FORMS += mainwindow.ui
  23. # Please do not modify the following two lines. Required for deployment.
  24. include(deployment.pri)
  25. qtcAddDeployment()