BUILD.gn 589 B

12345678910111213141516171819202122232425
  1. static_library("Paomadeng") {
  2. sources = [
  3. "paomadeng.c",
  4. ]
  5. cflags = [ "-Wno-unused-variable" ]
  6. cflags += [ "-Wno-unused-but-set-variable" ]
  7. cflags += [ "-Wno-unused-parameter" ]
  8. include_dirs = [
  9. "//base/iot_hardware/peripheral/interfaces/kits",
  10. "//third_party/cJSON",
  11. "../../common/inc",
  12. ]
  13. deps = [
  14. "../../common/iot_wifi:iot_wifi",
  15. "../../common/iot_cloud:iot_cloud",
  16. "../../common/iot_boardled:iot_boardled",
  17. "../../common/iot_boardbutton:iot_boardbutton",
  18. ]
  19. }