1234567891011121314151617181920212223242526272829303132333435 |
- static_library("iot_schedule_posix") {
- 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 = [
- "//base/hiviewdfx/hilog_lite/interfaces/native/innerkits/",
- "//foundation/communication/wifi_lite/interfaces/wifiservice",
- "../inc",
- ]
- deps = [
- ]
- }
|