mirror of
https://github.com/demik/quack.git
synced 2024-11-22 20:32:58 +00:00
14 lines
270 B
CMake
14 lines
270 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 esp_hid)
|