CuteGit.pro 1.3 KB

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