src.pri 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. QT += core-private gui-private
  2. DEFINES += QWK_CORE_STATIC QWK_WIDGETS_STATIC
  3. INCLUDEPATH += $$PWD
  4. INCLUDEPATH += $$PWD/core
  5. HEADERS += \
  6. $$PWD/core/contexts/abstractwindowcontext_p.h \
  7. $$PWD/core/contexts/cocoawindowcontext_p.h \
  8. $$PWD/core/contexts/qtwindowcontext_p.h \
  9. $$PWD/core/contexts/win32windowcontext_p.h \
  10. $$PWD/core/kernel/nativeeventfilter_p.h \
  11. $$PWD/core/kernel/sharedeventfilter_p.h \
  12. $$PWD/core/kernel/winidchangeeventfilter_p.h \
  13. # $$PWD/core/qwindowkit_linux.h \
  14. $$PWD/core/qwindowkit_windows.h \
  15. $$PWD/core/qwkglobal.h \
  16. $$PWD/core/qwkglobal_p.h \
  17. $$PWD/core/shared/qwkwindowsextra_p.h \
  18. $$PWD/core/shared/systemwindow_p.h \
  19. $$PWD/core/shared/windows10borderhandler_p.h \
  20. $$PWD/core/style/styleagent.h \
  21. $$PWD/core/style/styleagent_p.h \
  22. $$PWD/core/windowagentbase.h \
  23. $$PWD/core/windowagentbase_p.h \
  24. $$PWD/core/windowitemdelegate_p.h \
  25. $$PWD/widgets/qwkwidgetsglobal.h \
  26. $$PWD/widgets/widgetitemdelegate_p.h \
  27. $$PWD/widgets/widgetwindowagent.h \
  28. $$PWD/widgets/widgetwindowagent_p.h
  29. SOURCES += \
  30. $$PWD/core/contexts/abstractwindowcontext.cpp \
  31. # $$PWD/core/contexts/cocoawindowcontext.mm \
  32. $$PWD/core/contexts/qtwindowcontext.cpp \
  33. $$PWD/core/contexts/win32windowcontext.cpp \
  34. $$PWD/core/kernel/nativeeventfilter.cpp \
  35. $$PWD/core/kernel/sharedeventfilter.cpp \
  36. $$PWD/core/kernel/winidchangeeventfilter.cpp \
  37. $$PWD/core/qwindowkit_windows.cpp \
  38. $$PWD/core/qwkglobal.cpp \
  39. $$PWD/core/style/styleagent.cpp \
  40. # $$PWD/core/style/styleagent_linux.cpp \
  41. # $$PWD/core/style/styleagent_mac.mm \
  42. $$PWD/core/style/styleagent_win.cpp \
  43. $$PWD/core/windowagentbase.cpp \
  44. $$PWD/core/windowitemdelegate.cpp \
  45. $$PWD/widgets/widgetitemdelegate.cpp \
  46. $$PWD/widgets/widgetwindowagent.cpp \
  47. # $$PWD/widgets/widgetwindowagent_mac.cpp \
  48. $$PWD/widgets/widgetwindowagent_win.cpp
  49. DISTFILES += \
  50. $$PWD/core/CMakeLists.txt \
  51. $$PWD/widgets/CMakeLists.txt