mirror of
https://github.com/espressif/esp-mqtt.git
synced 2026-06-05 21:04:46 +00:00
32df7e27fc
Add support of percent-encoded characters when passing the username and password in URI Closes https://github.com/espressif/esp-mqtt/issues/294
17 lines
620 B
CMake
17 lines
620 B
CMake
# The following four lines of boilerplate have to be in your project's CMakeLists
|
|
# in this exact order for cmake to work correctly
|
|
cmake_minimum_required(VERSION 3.16)
|
|
|
|
include(${CMAKE_CURRENT_LIST_DIR}/../../cmake/CPM.cmake)
|
|
include(${CMAKE_CURRENT_LIST_DIR}/../../cmake/RapidCheck.cmake)
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
idf_build_set_property(MINIMAL_BUILD ON)
|
|
list(APPEND EXTRA_COMPONENT_DIRS
|
|
"$ENV{IDF_PATH}/tools/mocks/freertos/"
|
|
"$ENV{IDF_PATH}/tools/mocks/esp_timer/"
|
|
"$ENV{IDF_PATH}/tools/mocks/esp_event/"
|
|
"$ENV{IDF_PATH}/tools/mocks/tcp_transport/")
|
|
|
|
project(host_mqtt_client_test)
|