transferuiexample.pro 756 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Copyright (c) 2011 Nokia Corporation.
  2. QT += declarative
  3. CONFIG += qt-components link_pkgconfig
  4. PKGCONFIG += libtuiclient
  5. MOBILITY +=
  6. TARGET = transferuiexample
  7. HEADERS += \
  8. src/transferuiclientitem.h \
  9. src/transferuitransferitem.h
  10. SOURCES += \
  11. src/main.cpp \
  12. src/transferuiclientitem.cpp \
  13. src/transferuitransferitem.cpp
  14. RESOURCES += resources.qrc
  15. OTHER_FILES += qml/*
  16. target.path = /opt/transferuiexample/bin
  17. icon.files = transferuiexample.png
  18. #icon.path = /usr/share/icons/hicolor/80x80/apps
  19. icon.path = /usr/share/icons/hicolor/64x64/apps
  20. desktopfile.files = $${TARGET}.desktop
  21. desktopfile.path = /usr/share/applications
  22. INSTALLS += target icon desktopfile
  23. # End of file.