Guest User

Untitled

a guest
Dec 14th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. PROJECT = souffleur
  2. TEMPLATE = app
  3.  
  4. QT += core gui sql webkit declarative
  5. CONFIG += mobility
  6. MOBILITY += systeminfo sensors multimedia
  7.  
  8. INCLUDEPATH += ./include
  9.  
  10. CONFIG += link_pkgconfig
  11. PKGCONFIG += glib-2.0
  12.  
  13. QMAKE_CXXFLAGS += -std=c++0x
  14.  
  15. DEFINES += DELIBERATE_DEBUG=0
  16. !include(options.pri) {
  17. DEFINES += DELIBERATE_OLDNOTIFY=1
  18. }
  19.  
  20.  
  21. UI_DIR = tmp/ui
  22. MOC_DIR = tmp/moc
  23. RCC_DIR = tmp/rcc
  24. OBJECTS_DIR = tmp/obj
  25. RESOURCES = sched.qrc
  26. TARGET = souffleur
  27.  
  28. FORMS = ui/DebugLog.ui \
  29. ui/config-edit.ui \
  30. ui/item-edit.ui \
  31. ui/helpwin.ui \
  32.  
  33.  
  34. HEADERS = include/schedmain.h \
  35. include/gpl2.h \
  36. include/cmdoptions.h \
  37. include/config-edit.h \
  38. include/delib-debug.h \
  39. include/deliberate.h \
  40. include/version.h \
  41. include/agenda.h \
  42. include/db-manager.h \
  43. include/item-edit.h \
  44. include/agenda-event.h \
  45. include/agenda-shell.h \
  46. include/agenda-warning.h \
  47. include/agenda-repeat.h \
  48. include/event-list.h \
  49. include/agenda-scheduler.h \
  50. include/notify.h \
  51. include/shell-launcher.h \
  52. include/helpview.h \
  53. include/property.h \
  54. include/magic-defs.h \
  55. include/orientation.h \
  56. include/date-time-checker.h \
  57.  
  58.  
  59. SOURCES = src/schedmain.cpp \
  60. src/cmdoptions.cpp \
  61. src/config-edit.cpp \
  62. src/delib-debug.cpp \
  63. src/deliberate.cpp \
  64. src/version.cpp \
  65. src/agenda.cpp \
  66. src/db-manager.cpp \
  67. src/item-edit.cpp \
  68. src/agenda-event.cpp \
  69. src/event-list.cpp \
  70. src/agenda-scheduler.cpp \
  71. src/notify.cpp \
  72. src/shell-launcher.cpp \
  73. src/helpview.cpp \
  74. src/orientation.cpp \
  75. src/date-time-checker.cpp \
  76.  
  77.  
  78. OTHER_FILES += \
  79. sounds/alert.wav
Add Comment
Please, Sign In to add comment