NiceGit.pro 581 B

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