123456789101112131415161718192021222324252627282930 |
- static_library("iot_boardbutton") {
- sources = [
- "iot_boardbutton.c",
- ]
-
- cflags = [ "-Wno-unused-variable" ]
- cflags += [ "-Wno-unused-but-set-variable" ]
- cflags += [ "-Wno-unused-parameter" ]
-
- include_dirs = [
- "//base/iot_hardware/peripheral/interfaces/kits",
- "../inc",
- ]
- deps = [ ]
- }
|