CMakeLists.txt 305 B

12345678910
  1. idf_component_register(SRCS "src/jsmn.c"
  2. INCLUDE_DIRS "include")
  3. if(CONFIG_JSMN_PARENT_LINKS)
  4. target_compile_definitions(${COMPONENT_LIB} PUBLIC "-DJSMN_PARENT_LINKS")
  5. endif()
  6. if(CONFIG_JSMN_STRICT)
  7. target_compile_definitions(${COMPONENT_LIB} PUBLIC "-DJSMN_STRICT")
  8. endif()