Merge branch 'contrib/github_pr_14871' into 'master'

fix: fix build failure when project name is not mqtt_ssl (GitHub PR)

Closes IDFGH-14052

See merge request espressif/esp-idf!39963
This commit is contained in:
Rocha Euripedes
2025-06-23 18:13:49 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -8,4 +8,4 @@ include($ENV{IDF_PATH}/tools/cmake/project.cmake)
idf_build_set_property(MINIMAL_BUILD ON) idf_build_set_property(MINIMAL_BUILD ON)
project(mqtt_ssl) project(mqtt_ssl)
target_add_binary_data(mqtt_ssl.elf "main/mqtt_eclipseprojects_io.pem" TEXT) target_add_binary_data(${PROJECT_NAME}.elf "main/mqtt_eclipseprojects_io.pem" TEXT)

View File

@@ -8,4 +8,4 @@ include($ENV{IDF_PATH}/tools/cmake/project.cmake)
idf_build_set_property(MINIMAL_BUILD ON) idf_build_set_property(MINIMAL_BUILD ON)
project(mqtt_websocket_secure) project(mqtt_websocket_secure)
target_add_binary_data(mqtt_websocket_secure.elf "main/mqtt_eclipseprojects_io.pem" TEXT) target_add_binary_data(${PROJECT_NAME}.elf "main/mqtt_eclipseprojects_io.pem" TEXT)