CMakeLists.txt 491 B

123456789101112
  1. idf_component_register(SRCS "commands.c"
  2. "esp_console_repl.c"
  3. "split_argv.c"
  4. "argtable3/argtable3.c"
  5. "linenoise/linenoise.c"
  6. INCLUDE_DIRS "."
  7. REQUIRES vfs
  8. PRIV_REQUIRES driver)
  9. if(CMAKE_C_COMPILER_ID MATCHES "GNU")
  10. set_source_files_properties(argtable3/argtable3.c PROPERTIES COMPILE_FLAGS -Wno-clobbered)
  11. endif()