mirror of
https://github.com/demik/quack.git
synced 2024-11-29 05:49:19 +00:00
14 lines
297 B
CMake
14 lines
297 B
CMake
set(srcs "adb.c"
|
|
"blue.c"
|
|
"esp_hid_gap.c"
|
|
"gpio.c"
|
|
"led.c"
|
|
"main.c"
|
|
"quad.c")
|
|
|
|
set(include_dirs ".")
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
INCLUDE_DIRS "${include_dirs}"
|
|
REQUIRES driver esp_hid nvs_flash spi_flash)
|