CuteGit.pro 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. QT += qml quick widgets concurrent
  2. TARGET = CuteGit
  3. TEMPLATE = app
  4. unix {
  5. desktop.files = CuteGit.desktop
  6. desktop.path = $$SYSROOT/usr/share/applications
  7. INSTALLS += desktop
  8. LIBS += -lgit2
  9. }
  10. win32 {
  11. INCLUDEPATH += $$PWD//include
  12. LIBS += -L$$PWD//lib// -lgit2
  13. }
  14. SOURCES += \
  15. main.cpp \
  16. githandler.cpp \
  17. gitrepository.cpp \
  18. repositorymodel.cpp \
  19. gitbranch.cpp \
  20. gitreference.cpp \
  21. gitbase.cpp \
  22. gitoid.cpp \
  23. gitcommit.cpp \
  24. commitmodel.cpp \
  25. universallistmodel.cpp \
  26. commitgraph.cpp \
  27. graphpoint.cpp \
  28. gittag.cpp \
  29. tagmodel.cpp \
  30. gitdiff.cpp \
  31. graphlistmodel.cpp \
  32. gitremote.cpp \
  33. gitbaseoid.cpp \
  34. branchlistmodel.cpp \
  35. taglistmodel.cpp \
  36. tooltipviewmodel.cpp \
  37. gitconsole.cpp \
  38. colorhandler.cpp \
  39. diffmodel.cpp \
  40. settings.cpp \
  41. universallistmodelbase.cpp \
  42. gitauthenticator.cpp
  43. HEADERS += \
  44. githandler.h \
  45. gitrepository.h \
  46. repositorymodel.h \
  47. gitbranch.h \
  48. gitreference.h \
  49. gitbase.h \
  50. gitoid.h \
  51. gitcommit.h \
  52. commitmodel.h \
  53. universallistmodel.h \
  54. commitgraph.h \
  55. graphpoint.h \
  56. gittag.h \
  57. tagmodel.h \
  58. gitdiff.h \
  59. graphlistmodel.h \
  60. gitremote.h \
  61. gitbaseoid.h \
  62. branchlistmodel.h \
  63. taglistmodel.h \
  64. tooltipviewmodel.h \
  65. gitconsole.h \
  66. colorhandler.h \
  67. diffmodel.h \
  68. settings.h \
  69. universallistmodelbase.h \
  70. gitauthenticator.h
  71. RESOURCES += \
  72. resources.qrc
  73. OTHER_FILES += \
  74. CuteGit.desktop
  75. debug {
  76. DEFINES += DEBUG
  77. }
  78. target.path = $$SYSROOT/usr/bin
  79. INSTALLS += target