CMakeLists.txt 646 B

123456789101112
  1. idf_component_register(SRCS "expat/expat/lib/xmlparse.c"
  2. "expat/expat/lib/xmlrole.c"
  3. "expat/expat/lib/xmltok.c"
  4. "expat/expat/lib/xmltok_impl.c"
  5. "expat/expat/lib/xmltok_ns.c"
  6. INCLUDE_DIRS expat/expat/lib port/include)
  7. target_compile_definitions(${COMPONENT_LIB} PRIVATE HAVE_EXPAT_CONFIG_H)
  8. target_compile_definitions(${COMPONENT_LIB} PRIVATE HAVE_GETRANDOM)
  9. # Temporary suppress "fallthrough" warnings until they are fixed in expat repo
  10. target_compile_options(${COMPONENT_LIB} PRIVATE -Wno-implicit-fallthrough)