CMakeLists.txt 325 B

123456789
  1. set(srcs "esp_hid_device_main.c"
  2. "esp_hid_gap.c")
  3. set(include_dirs ".")
  4. idf_component_register(SRCS "${srcs}"
  5. INCLUDE_DIRS "${include_dirs}"
  6. REQUIRES esp_hid
  7. PRIV_REQUIRES nvs_flash)
  8. target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")