NiceGit.pro 765 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. HEADERS += \
  22. githandler.h \
  23. gitrepository.h \
  24. repositorymodel.h \
  25. gitbranch.h \
  26. gitreference.h \
  27. gitbase.h \
  28. gitoid.h \
  29. gitcommit.h \
  30. commitmodel.h \
  31. universallistmodel.h \
  32. commitgraph.h \
  33. graphpoint.h \
  34. gittag.h \
  35. tagmodel.h \
  36. gitdiff.h
  37. RESOURCES += \
  38. resources.qrc
  39. debug {
  40. DEFINES += DEBUG
  41. }