Advertisement
Guest User

Untitled

a guest
Jul 9th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2010-12-15T19:17:13
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT       += core gui
  8.  
  9. TARGET = vinitiativ
  10. TEMPLATE = app
  11.  
  12.  
  13. SOURCES += main.cpp\
  14.         mainwindow.cpp \
  15.     obdice.cpp
  16.  
  17. HEADERS  += mainwindow.h \
  18.     obdice.h
  19.  
  20. FORMS    += mainwindow.ui
  21.  
  22. CONFIG += mobility
  23. MOBILITY =
  24.  
  25. symbian {
  26.     TARGET.UID3 = 0xe5aabbf7
  27.     # TARGET.CAPABILITY +=
  28.     TARGET.EPOCSTACKSIZE = 0x14000
  29.     TARGET.EPOCHEAPSIZE = 0x020000 0x800000
  30. }
  31.  
  32. maemo5 {
  33.     isEmpty(PREFIX):PREFIX = /usr/local
  34.     BINDIR = $$PREFIX/bin
  35.     DATADIR = $$PREFIX/share
  36.  
  37.     DEFINES += DATADIR=\\\"$$DATADIR\\\" \
  38.         PKGDATADIR=\\\"$$PKGDATADIR\\\"
  39.  
  40.     target.path = $$BINDIR
  41.  
  42.     INSTALLS += target other_files
  43.  
  44.     #define extras_files
  45.     other_files.files = input.txt
  46.     other_files.path = $$PREFIX/bin
  47. }
  48.  
  49. RESOURCES += \
  50.     resources.qrc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement