Skip to content

Commit

Permalink
Add default target to example projects (#31510)
Browse files Browse the repository at this point in the history
* Add default target to chip-shell

* bridge-app fix

* Add dependencies to default group for minimal-mdns
  • Loading branch information
jlatusek authored and pull[bot] committed Apr 9, 2024
1 parent 139f3da commit b280685
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
4 changes: 4 additions & 0 deletions examples/bridge-app/linux/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,7 @@ executable("chip-bridge-app") {
group("linux") {
deps = [ ":chip-bridge-app" ]
}

group("default") {
deps = [ ":chip-bridge-app" ]
}
9 changes: 9 additions & 0 deletions examples/minimal-mdns/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,12 @@ executable("mdns-advertiser") {

output_dir = root_out_dir
}

group("default") {
deps = [
":mdns-advertiser",
":minimal-mdns-client",
":minimal-mdns-example-common",
":minimal-mdns-server",
]
}
4 changes: 4 additions & 0 deletions examples/shell/standalone/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,7 @@ executable("chip-shell") {
group("standalone") {
deps = [ ":chip-shell" ]
}

group("default") {
deps = [ ":chip-shell" ]
}

0 comments on commit b280685

Please sign in to comment.