Skip to content

Commit

Permalink
BUILD.gn fixes for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nivi-apple committed Jul 26, 2024
1 parent 07e78e0 commit ffdbb24
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion examples/thermostat/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@ import("//build_overrides/chip.gni")
executable("thermostat-app") {
sources = [
"${chip_root}/src/app/clusters/thermostat-server/PresetStructWithOwnedMembers.cpp",
"${chip_root}/src/app/clusters/thermostat-server/thermostat-delegate.h",
"include/low-power/LowPowerManager.cpp",
"include/low-power/LowPowerManager.h",
"main.cpp",
"include/thermostat-delegate-impl.h",
"thermostat-delegate-impl.cpp",
"include/thermostat-manager.h",
"thermostat-manager.cpp",
]

Expand All @@ -31,7 +34,10 @@ executable("thermostat-app") {
"${chip_root}/src/lib",
]

include_dirs = [ "include" ]
include_dirs = [
"include",
"${chip_root}/src/app/clusters/thermostat-server",
]

cflags = [ "-Wconversion" ]

Expand Down

0 comments on commit ffdbb24

Please sign in to comment.