CMakeLists.txt 411 B

123456789
  1. idf_component_register(SRC_DIRS "."
  2. PRIV_INCLUDE_DIRS "."
  3. PRIV_REQUIRES cmock test_utils nvs_flash bootloader_support
  4. EMBED_TXTFILES encryption_keys.bin partition_encrypted.bin sample.bin)
  5. target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
  6. if(CONFIG_NVS_ENCRYPTION)
  7. target_link_libraries(${COMPONENT_LIB} PUBLIC idf::mbedtls)
  8. endif()