mirror of
https://github.com/demik/quack.git
synced 2025-01-11 00:30:09 +00:00
11 lines
232 B
CMake
11 lines
232 B
CMake
|
set(srcs "blue.c"
|
||
|
"esp_hid_gap.c"
|
||
|
"gpio.c"
|
||
|
"main.c")
|
||
|
|
||
|
set(include_dirs ".")
|
||
|
|
||
|
idf_component_register(SRCS "${srcs}"
|
||
|
INCLUDE_DIRS "${include_dirs}"
|
||
|
REQUIRES esp_hid)
|