CMakeLists.txt 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. target_sources(vnote PRIVATE
  2. buffer/buffer.cpp buffer/buffer.h
  3. buffer/bufferprovider.cpp buffer/bufferprovider.h
  4. buffer/filebufferprovider.cpp buffer/filebufferprovider.h
  5. buffer/filetypehelper.cpp buffer/filetypehelper.h
  6. buffer/ibufferfactory.h
  7. buffer/markdownbuffer.cpp buffer/markdownbuffer.h
  8. buffer/markdownbufferfactory.cpp buffer/markdownbufferfactory.h
  9. buffer/mindmapbuffer.cpp buffer/mindmapbuffer.h
  10. buffer/mindmapbufferfactory.cpp buffer/mindmapbufferfactory.h
  11. buffer/nodebufferprovider.cpp buffer/nodebufferprovider.h
  12. buffer/pdfbuffer.cpp buffer/pdfbuffer.h
  13. buffer/pdfbufferfactory.cpp buffer/pdfbufferfactory.h
  14. buffer/textbuffer.cpp buffer/textbuffer.h
  15. buffer/textbufferfactory.cpp buffer/textbufferfactory.h
  16. buffer/urlbasedbufferprovider.h
  17. buffermgr.cpp buffermgr.h
  18. clipboarddata.cpp clipboarddata.h
  19. configmgr.cpp configmgr.h
  20. coreconfig.cpp coreconfig.h
  21. editorconfig.cpp editorconfig.h
  22. events.h
  23. exception.h
  24. externalfile.cpp externalfile.h
  25. file.cpp file.h
  26. filelocator.h
  27. fileopenparameters.h
  28. global.cpp global.h
  29. historyitem.cpp historyitem.h
  30. historymgr.cpp historymgr.h
  31. htmltemplatehelper.cpp htmltemplatehelper.h
  32. iconfig.h
  33. location.h
  34. logger.cpp logger.h
  35. mainconfig.cpp mainconfig.h
  36. markdowneditorconfig.cpp markdowneditorconfig.h
  37. mindmapeditorconfig.cpp mindmapeditorconfig.h
  38. namebasedserver.h
  39. noncopyable.h
  40. notebook/bundlenotebook.cpp notebook/bundlenotebook.h
  41. notebook/bundlenotebookfactory.cpp notebook/bundlenotebookfactory.h
  42. notebook/externalnode.cpp notebook/externalnode.h
  43. notebook/historyi.h
  44. notebook/inotebookfactory.h
  45. notebook/node.cpp notebook/node.h
  46. notebook/nodeparameters.cpp notebook/nodeparameters.h
  47. notebook/nodevisual.cpp notebook/nodevisual.h
  48. notebook/notebook.cpp notebook/notebook.h
  49. notebook/notebookdatabaseaccess.cpp notebook/notebookdatabaseaccess.h
  50. notebook/notebookparameters.cpp notebook/notebookparameters.h
  51. notebook/notebooktagmgr.cpp notebook/notebooktagmgr.h
  52. notebook/tag.cpp notebook/tag.h
  53. notebook/tagi.h
  54. notebook/vxnode.cpp notebook/vxnode.h
  55. notebook/vxnodefile.cpp notebook/vxnodefile.h
  56. notebookbackend/inotebookbackend.cpp notebookbackend/inotebookbackend.h
  57. notebookbackend/inotebookbackendfactory.h
  58. notebookbackend/localnotebookbackend.cpp notebookbackend/localnotebookbackend.h
  59. notebookbackend/localnotebookbackendfactory.cpp notebookbackend/localnotebookbackendfactory.h
  60. notebookconfigmgr/bundlenotebookconfigmgr.cpp notebookconfigmgr/bundlenotebookconfigmgr.h
  61. notebookconfigmgr/inotebookconfigmgr.cpp notebookconfigmgr/inotebookconfigmgr.h
  62. notebookconfigmgr/inotebookconfigmgrfactory.h
  63. notebookconfigmgr/notebookconfig.cpp notebookconfigmgr/notebookconfig.h
  64. notebookconfigmgr/vxnodeconfig.cpp notebookconfigmgr/vxnodeconfig.h
  65. notebookconfigmgr/vxnotebookconfigmgr.cpp notebookconfigmgr/vxnotebookconfigmgr.h
  66. notebookconfigmgr/vxnotebookconfigmgrfactory.cpp notebookconfigmgr/vxnotebookconfigmgrfactory.h
  67. notebookmgr.cpp notebookmgr.h
  68. pdfviewerconfig.cpp pdfviewerconfig.h
  69. quickaccesshelper.cpp quickaccesshelper.h
  70. sessionconfig.cpp sessionconfig.h
  71. singleinstanceguard.cpp singleinstanceguard.h
  72. templatemgr.cpp templatemgr.h
  73. texteditorconfig.cpp texteditorconfig.h
  74. theme.cpp theme.h
  75. thememgr.cpp thememgr.h
  76. versioncontroller/dummyversioncontroller.cpp versioncontroller/dummyversioncontroller.h
  77. versioncontroller/dummyversioncontrollerfactory.cpp versioncontroller/dummyversioncontrollerfactory.h
  78. versioncontroller/iversioncontroller.h
  79. versioncontroller/iversioncontrollerfactory.h
  80. versioncontroller/versioncontrollerserver.cpp versioncontroller/versioncontrollerserver.h
  81. vnotex.cpp vnotex.h
  82. webresource.h
  83. widgetconfig.cpp widgetconfig.h
  84. )
  85. target_include_directories(vnote PRIVATE
  86. ${CMAKE_CURRENT_SOURCE_DIR}
  87. )