NiceGit.pro 891 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. HEADERS += \
  25. githandler.h \
  26. gitrepository.h \
  27. repositorymodel.h \
  28. gitbranch.h \
  29. gitreference.h \
  30. gitbase.h \
  31. gitoid.h \
  32. gitcommit.h \
  33. commitmodel.h \
  34. universallistmodel.h \
  35. commitgraph.h \
  36. graphpoint.h \
  37. gittag.h \
  38. tagmodel.h \
  39. gitdiff.h \
  40. graphlistmodel.h \
  41. gitremote.h \
  42. gitbaseoid.h
  43. RESOURCES += \
  44. resources.qrc
  45. debug {
  46. DEFINES += DEBUG
  47. }