NiceGit.pro 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. HEADERS += \
  30. githandler.h \
  31. gitrepository.h \
  32. repositorymodel.h \
  33. gitbranch.h \
  34. gitreference.h \
  35. gitbase.h \
  36. gitoid.h \
  37. gitcommit.h \
  38. commitmodel.h \
  39. universallistmodel.h \
  40. commitgraph.h \
  41. graphpoint.h \
  42. gittag.h \
  43. tagmodel.h \
  44. gitdiff.h \
  45. graphlistmodel.h \
  46. gitremote.h \
  47. gitbaseoid.h \
  48. branchlistmodel.h \
  49. taglistmodel.h \
  50. tooltipviewmodel.h \
  51. gitconsole.h \
  52. colorhandler.h
  53. RESOURCES += \
  54. resources.qrc
  55. debug {
  56. DEFINES += DEBUG
  57. }