2019-04-28 07:38:23 +00:00
|
|
|
idf_component_register(SRCS "expat/expat/lib/loadlibrary.c"
|
|
|
|
"expat/expat/lib/xmlparse.c"
|
|
|
|
"expat/expat/lib/xmlrole.c"
|
|
|
|
"expat/expat/lib/xmltok.c"
|
|
|
|
"expat/expat/lib/xmltok_impl.c"
|
|
|
|
"expat/expat/lib/xmltok_ns.c"
|
|
|
|
INCLUDE_DIRS expat/expat/lib port/include)
|
2018-01-12 02:49:13 +00:00
|
|
|
|
2019-05-10 02:53:08 +00:00
|
|
|
target_compile_definitions(${COMPONENT_LIB} PRIVATE HAVE_EXPAT_CONFIG_H)
|
|
|
|
target_compile_definitions(${COMPONENT_LIB} PRIVATE HAVE_GETRANDOM)
|
2018-01-12 02:49:13 +00:00
|
|
|
|
2018-08-16 05:01:43 +00:00
|
|
|
# Temporary suppress "fallthrough" warnings until they are fixed in expat repo
|
2018-09-18 03:44:24 +00:00
|
|
|
if(GCC_NOT_5_2_0)
|
2019-05-10 02:53:08 +00:00
|
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE -Wno-implicit-fallthrough)
|
2018-09-18 03:44:24 +00:00
|
|
|
endif()
|