Advertisement
Guest User

.pro

a guest
Mar 26th, 2017
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. # NOTICE:
  2. #
  3. # Application name defined in TARGET has a corresponding QML filename.
  4. # If name defined in TARGET is changed, the following needs to be done
  5. # to match new name:
  6. # - corresponding QML filename must be changed
  7. # - desktop icon filename must be changed
  8. # - desktop filename must be changed
  9. # - icon definition filename in desktop file must be changed
  10. # - translation filenames have to be changed
  11.  
  12. # The name of your application
  13. TARGET = SailfishMessenger
  14.  
  15. CONFIG += sailfishapp link_pkgconfig
  16.  
  17. PKGCONFIG += glib-2.0
  18.  
  19. INCLUDEPATH += /usr/include/libpurple/ \
  20. /usr/include/glib-2.0/ \
  21. /usr/lib/glib-2.0/include/
  22.  
  23. LIBS += -lpurple
  24.  
  25. SOURCES += src/SailfishMessenger.cpp \
  26. src/messenger.cpp \
  27. src/messenger_purple.c
  28.  
  29. OTHER_FILES += qml/SailfishMessenger.qml \
  30. qml/cover/CoverPage.qml \
  31. rpm/SailfishMessenger.changes.in \
  32. rpm/SailfishMessenger.spec \
  33. rpm/SailfishMessenger.yaml \
  34. translations/*.ts \
  35. SailfishMessenger.desktop
  36.  
  37. SAILFISHAPP_ICONS = 86x86 108x108 128x128 256x256
  38.  
  39. # to disable building translations every time, comment out the
  40. # following CONFIG line
  41. CONFIG += sailfishapp_i18n
  42.  
  43. # German translation is enabled as an example. If you aren't
  44. # planning to localize your app, remember to comment out the
  45. # following TRANSLATIONS line. And also do not forget to
  46. # modify the localized app name in the the .desktop file.
  47. TRANSLATIONS += translations/SailfishMessenger-de.ts
  48.  
  49. DISTFILES += \
  50. qml/pages/Contacts.qml \
  51. qml/pages/Chat.qml
  52.  
  53. HEADERS += \
  54. src/messenger.hpp \
  55. src/messenger_purple.h
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement