Advertisement
Guest User

Untitled

a guest
May 13th, 2014
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.40 KB | None | 0 0
  1. TEMPLATE = app
  2.  
  3. QT += qml quick serialport
  4.  
  5. # qmake will report all known warnings.
  6. QMAKE_CXXFLAGS += -Wall
  7.  
  8. # Mac OS Info.plist
  9. QMAKE_INFO_PLIST = Info.plist
  10.  
  11. # Qt Linguist needs you to set the CODECFORTR
  12. CODECFORSRC = UTF-8
  13.  
  14. # Additional import path used to resolve QML modules in Creator's code model
  15. QML_IMPORT_PATH =
  16.  
  17. ICON = resource/image/icon/my.icns
  18.  
  19. RC_FILE = my.rc
  20.  
  21. TRANSLATIONS += \
  22.     resource/translation/my_pt-BR.ts
  23.  
  24. OTHER_FILES += \
  25.     Doxyfile \
  26.     Info.plist \
  27.     my.rc
  28.  
  29. RESOURCES += \
  30.     src/app/qml.qrc \
  31.     my.qrc
  32.  
  33. ######################################################################
  34. # paths for building
  35. ######################################################################
  36.  
  37. Debug:DESTDIR = build/debug
  38. Release:DESTDIR = build/release
  39.  
  40. # Default rules for deployment.
  41. include(deployment.pri)
  42.  
  43. lupdate_only {
  44. SOURCES += \
  45.     src/app/qml/*.qml \
  46.     src/app/qml/device/*.qml \
  47.     src/app/qml/device/config/*.qml \
  48.     src/app/qml/device/configs/*.qml \
  49.     src/app/qml/device/occurrence/*.qml \
  50.     src/app/qml/device/occurrences/*.qml \
  51.     src/app/qml/device/rfid/*.qml \
  52.     src/app/qml/device/rtc/*.qml \
  53.     src/app/qml/devices/*.qml \
  54.     src/app/qml/settings/*.qml \
  55.     src/app/qml/style/*.qml
  56. }
  57.  
  58. # The .cpp file which was generated for your project. Feel free to hack it.
  59. SOURCES += \
  60.     ...
  61.     src/app/main.cpp
  62.  
  63.  
  64. HEADERS += \
  65.     ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement