12345678910111213141516171819202122232425262728293031323334 |
- static_library("iot_schedule") {
- sources = [
- "iot_schedule.c",
- "schedule_list.c",
- "schedule_store.c"
- ]
-
- cflags = [ "-Wno-unused-variable" ]
- cflags += [ "-Wno-unused-but-set-variable" ]
- cflags += [ "-Wno-unused-parameter" ]
-
- include_dirs = [
- "//foundation/communication/wifi_lite/interfaces/wifiservice",
- "../inc",
- ]
- deps = [
- ]
- }
|