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