CMakeLists.txt 355 B

123456789101112131415161718
  1. # add_subdirectory(apps)
  2. # add_subdirectory(http)
  3. # add_subdirectory(web-deamon)
  4. add_subdirectory(settings)
  5. install(FILES dist/index.html
  6. DESTINATION webconfig
  7. )
  8. install(DIRECTORY dist/static
  9. DESTINATION webconfig/
  10. FILES_MATCHING PATTERN "*"
  11. )
  12. install(DIRECTORY config
  13. DESTINATION ./
  14. FILES_MATCHING PATTERN "*"
  15. )