947e3e94ed
Adds the ESP certificate bundle feature that enables users to bundle a root certificate bundle together with their application. Default bundle includes all Mozilla root certificates Closes IDF-296
11 lines
592 B
CMake
11 lines
592 B
CMake
idf_component_register(SRC_DIRS "."
|
|
INCLUDE_DIRS "."
|
|
REQUIRES unity test_utils mbedtls libsodium
|
|
EMBED_TXTFILES server_cert_chain.pem prvtkey.pem server_cert_bundle)
|
|
|
|
|
|
idf_component_get_property(mbedtls mbedtls COMPONENT_LIB)
|
|
target_compile_definitions(${mbedtls} INTERFACE "-DMBEDTLS_DEPRECATED_WARNING")
|
|
target_compile_definitions(mbedtls PUBLIC "-DMBEDTLS_DEPRECATED_WARNING")
|
|
target_compile_definitions(mbedcrypto PUBLIC "-DMBEDTLS_DEPRECATED_WARNING")
|
|
target_compile_definitions(mbedx509 PUBLIC "-DMBEDTLS_DEPRECATED_WARNING")
|