CuteGit.pro 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. QT += qml quick widgets concurrent
  2. TARGET = CuteGit
  3. TEMPLATE = app
  4. unix {
  5. desktop.files = CuteGit.desktop
  6. desktop.path = $$SYSROOT/usr/share/applications
  7. INSTALLS += desktop
  8. LIBS += -lgit2
  9. }
  10. win32 {
  11. INCLUDEPATH += $$PWD//include
  12. LIBS += -L$$PWD//lib// -lgit2
  13. }
  14. SOURCES += \
  15. main.cpp \
  16. githandler.cpp \
  17. gitrepository.cpp \
  18. repositorymodel.cpp \
  19. gitbranch.cpp \
  20. gitreference.cpp \
  21. gitbase.cpp \
  22. gitoid.cpp \
  23. gitcommit.cpp \
  24. commitmodel.cpp \
  25. universallistmodel.cpp \
  26. commitgraph.cpp \
  27. graphpoint.cpp \
  28. gittag.cpp \
  29. tagmodel.cpp \
  30. gitdiff.cpp \
  31. graphlistmodel.cpp \
  32. gitremote.cpp \
  33. gitbaseoid.cpp \
  34. branchlistmodel.cpp \
  35. taglistmodel.cpp \
  36. tooltipviewmodel.cpp \
  37. gitconsole.cpp \
  38. colorhandler.cpp \
  39. diffmodel.cpp \
  40. settings.cpp
  41. HEADERS += \
  42. githandler.h \
  43. gitrepository.h \
  44. repositorymodel.h \
  45. gitbranch.h \
  46. gitreference.h \
  47. gitbase.h \
  48. gitoid.h \
  49. gitcommit.h \
  50. commitmodel.h \
  51. universallistmodel.h \
  52. commitgraph.h \
  53. graphpoint.h \
  54. gittag.h \
  55. tagmodel.h \
  56. gitdiff.h \
  57. graphlistmodel.h \
  58. gitremote.h \
  59. gitbaseoid.h \
  60. branchlistmodel.h \
  61. taglistmodel.h \
  62. tooltipviewmodel.h \
  63. gitconsole.h \
  64. colorhandler.h \
  65. diffmodel.h \
  66. settings.h
  67. RESOURCES += \
  68. resources.qrc
  69. OTHER_FILES += \
  70. CuteGit.desktop
  71. debug {
  72. DEFINES += DEBUG
  73. }
  74. target.path = $$SYSROOT/usr/bin
  75. INSTALLS += target