CuteGit.pro 1.2 KB

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