NiceGit.pro 1.1 KB

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