mirror of
https://github.com/demik/quack.git
synced 2024-12-22 20:30:48 +00:00
12 lines
242 B
CMake
12 lines
242 B
CMake
set(srcs "blue.c"
|
|
"esp_hid_gap.c"
|
|
"gpio.c"
|
|
"led.c"
|
|
"main.c")
|
|
|
|
set(include_dirs ".")
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
INCLUDE_DIRS "${include_dirs}"
|
|
REQUIRES esp_hid)
|