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