test-server-http: no need to complete transaction early since FILE_COMPLETION will...
[platform/upstream/libwebsockets.git] / cross-esp32.cmake
index a0b3c1d..f978e80 100644 (file)
 set(CMAKE_SYSTEM_NAME Linux)
 
 # Name of C compiler.
-set(CMAKE_C_COMPILER "${CROSS_PATH}/bin/xtensa-esp32-elf-gcc")
+set(CMAKE_C_COMPILER   "${CROSS_PATH}/bin/xtensa-esp32-elf-gcc")
+set(CMAKE_AR           "${CROSS_PATH}/bin/xtensa-esp32-elf-ar")
+set(CMAKE_RANLIB       "${CROSS_PATH}/bin/xtensa-esp32-elf-ranlib")
+set(CMAKE_LINKER       "${CROSS_PATH}/bin/xtensa-esp32-elf-ld")
 
-SET(CMAKE_C_FLAGS "-nostdlib -Wall -Werror -I${BUILD_DIR_BASE}/include -I${COMPONENT_PATH}/../driver/include -I${COMPONENT_PATH}/../spi_flash/include -I${COMPONENT_PATH}/../nvs_flash/include -I${COMPONENT_PATH}/../tcpip_adapter/include -I${COMPONENT_PATH}/../lwip/include/lwip/posix -I${COMPONENT_PATH}/../lwip/include/lwip -I${COMPONENT_PATH}/../lwip/include/lwip/port -I${COMPONENT_PATH}/../esp32/include/ ${LWS_C_FLAGS} -I${COMPONENT_PATH}/../nvs_flash/test_nvs_host -I${COMPONENT_PATH}/../freertos/include -Os" CACHE STRING "" FORCE)
+SET(CMAKE_C_FLAGS "-nostdlib -Wall -Werror \
+       -I${BUILD_DIR_BASE}/include \
+       -I${IDF_PATH}/components/mdns/include \
+       -I${IDF_PATH}/components/driver/include \
+       -I${IDF_PATH}/components/spi_flash/include \
+       -I${IDF_PATH}/components/nvs_flash/include \
+       -I${IDF_PATH}/components/tcpip_adapter/include \
+       -I${IDF_PATH}/components/lwip/include/lwip/posix \
+       -I${IDF_PATH}/components/lwip/include/lwip \
+       -I${IDF_PATH}/components/lwip/include/lwip/port \
+       -I${IDF_PATH}/components/esp32/include/ \
+       -I${IDF_PATH}/components/bootloader_support/include/ \
+       -I${IDF_PATH}/components/app_update/include/ \
+       -I$(IDF_PATH)/components/soc/esp32/include/ \
+       ${LWS_C_FLAGS} -Os \
+       -I${IDF_PATH}/components/nvs_flash/test_nvs_host \
+       -I${IDF_PATH}/components/freertos/include" CACHE STRING "" FORCE)
 
 # Where to look for the target environment. (More paths can be added here)
 set(CMAKE_FIND_ROOT_PATH "${CROSS_PATH}")