CMakeLists.txt 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. set(CMAKE_CXX_STANDARD 20)
  2. set( WEBPACK_DIR webapp/webpack/dist )
  3. # for the forgetful, REQUIRES cannot use CONFIG_XXX due to parsing order
  4. if(IDF_TARGET STREQUAL "esp32")
  5. set(target_requires "driver_bt")
  6. endif()
  7. idf_component_register( SRC_DIRS . UML-State-Machine-in-C/src
  8. INCLUDE_DIRS . UML-State-Machine-in-C/src
  9. REQUIRES squeezelite-ota json mdns
  10. PRIV_REQUIRES tools services platform_config esp_common json newlib freertos spi_flash nvs_flash mdns pthread wpa_supplicant platform_console esp_http_server console ${target_requires}
  11. )
  12. # Define the source and destination directories
  13. set(WEBAPP_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/webapp/dist")
  14. set(WEBAPP_DEST_DIR "${CMAKE_SOURCE_DIR}/spiffs/www")
  15. # Collect all .gz and .png files in the source directory
  16. file(GLOB_RECURSE WEBAPP_FILES
  17. "${WEBAPP_SOURCE_DIR}/*.gz"
  18. "${WEBAPP_SOURCE_DIR}/*.png")
  19. # # Custom command to copy files, preserving the directory structure
  20. # foreach(FILE_PATH ${WEBAPP_FILES})
  21. # # Get the relative path from the source directory
  22. # file(RELATIVE_PATH REL_PATH "${WEBAPP_SOURCE_DIR}" "${FILE_PATH}")
  23. # # Compute the destination file path
  24. # set(DEST_PATH "${WEBAPP_DEST_DIR}/${REL_PATH}")
  25. # # Create a custom command to copy each file
  26. # add_custom_command(
  27. # OUTPUT "${DEST_PATH}"
  28. # COMMAND ${CMAKE_COMMAND} -E copy "${FILE_PATH}" "${DEST_PATH}"
  29. # DEPENDS "${FILE_PATH}"
  30. # )
  31. # # Add the destination path to a list of outputs
  32. # list(APPEND WEBAPP_OUTPUT_FILES "${DEST_PATH}")
  33. # endforeach()
  34. # # Custom target that depends on all copied files
  35. # add_custom_target(copy_webapp DEPENDS ${WEBAPP_OUTPUT_FILES} )
  36. # # Ensure the destination directory exists
  37. # add_custom_command(TARGET copy_webapp PRE_BUILD COMMAND ${CMAKE_COMMAND} -E make_directory "${WEBAPP_DEST_DIR}" )
  38. # add_dependencies(${COMPONENT_LIB} copy_webapp)