2023-05-16 18:36:39 +02:00
|
|
|
# This is the project CMakeLists.txt file for the test subproject
|
|
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
|
2025-08-21 15:46:32 +02:00
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
|
|
|
|
|
|
if("${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}" VERSION_GREATER_EQUAL "6.0")
|
|
|
|
set(test_component_dir $ENV{IDF_PATH}/tools/test_apps/components)
|
|
|
|
else()
|
|
|
|
set(test_component_dir $ENV{IDF_PATH}/tools/unit-test-app/components)
|
|
|
|
endif()
|
|
|
|
|
2023-05-16 18:36:39 +02:00
|
|
|
set(EXTRA_COMPONENT_DIRS ../../esp_websocket_client
|
2025-08-21 15:46:32 +02:00
|
|
|
${test_component_dir})
|
2023-05-16 18:36:39 +02:00
|
|
|
|
|
|
|
project(websocket_unit_test)
|