Skip to content

Commit ffdbb24

Browse files
committed
BUILD.gn fixes for CI
1 parent 07e78e0 commit ffdbb24

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

examples/thermostat/linux/BUILD.gn

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,13 @@ import("//build_overrides/chip.gni")
1818
executable("thermostat-app") {
1919
sources = [
2020
"${chip_root}/src/app/clusters/thermostat-server/PresetStructWithOwnedMembers.cpp",
21+
"${chip_root}/src/app/clusters/thermostat-server/thermostat-delegate.h",
2122
"include/low-power/LowPowerManager.cpp",
2223
"include/low-power/LowPowerManager.h",
2324
"main.cpp",
25+
"include/thermostat-delegate-impl.h",
2426
"thermostat-delegate-impl.cpp",
27+
"include/thermostat-manager.h",
2528
"thermostat-manager.cpp",
2629
]
2730

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

34-
include_dirs = [ "include" ]
37+
include_dirs = [
38+
"include",
39+
"${chip_root}/src/app/clusters/thermostat-server",
40+
]
3541

3642
cflags = [ "-Wconversion" ]
3743

0 commit comments

Comments
 (0)