mirror of
https://github.com/espressif/esp-mqtt.git
synced 2026-06-05 21:04:46 +00:00
169e1ee88d
- Makes the name of component mqtt - Updates README - Adjust CI to build for supported idf versions - Removes qemu job
17 lines
520 B
CMake
17 lines
520 B
CMake
#This is the project CMakeLists.txt file for the test subproject
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
|
|
set(EXTRA_COMPONENT_DIRS "../common")
|
|
|
|
if("${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}" VERSION_GREATER "5.5")
|
|
list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/test_apps/components")
|
|
else()
|
|
list(APPEND EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components")
|
|
endif()
|
|
|
|
|
|
idf_build_set_property(MINIMAL_BUILD ON)
|
|
project(esp_mqtt5_client_test)
|