NiceGit.pro 673 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. commitviewmodel.cpp
  18. HEADERS += \
  19. githandler.h \
  20. gitrepository.h \
  21. repositorymodel.h \
  22. gitbranch.h \
  23. gitreference.h \
  24. gitbase.h \
  25. gitoid.h \
  26. gitcommit.h \
  27. commitmodel.h \
  28. universallistmodel.h \
  29. commitgraph.h \
  30. commitviewmodel.h
  31. RESOURCES += \
  32. resources.qrc
  33. debug {
  34. DEFINES += DEBUG
  35. }