Skip to content

Commit 5004194

Browse files
authored
Merge pull request #7 from project-chip/master
merge master
2 parents d8e5ffe + ea5b53b commit 5004194

File tree

290 files changed

+24716
-21501
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

290 files changed

+24716
-21501
lines changed

.github/workflows/cirque.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@
1414

1515
name: Cirque
1616

17-
on:
18-
push:
19-
pull_request:
17+
on: workflow_dispatch
2018

2119
jobs:
2220
cirque:

config/esp32/components/chip/CMakeLists.txt

+9
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,19 @@ macro(chip_gn_arg_append arg val)
4545
string(APPEND chip_gn_args "${arg} = ${val}\n")
4646
endmacro()
4747

48+
macro(chip_gn_arg_bool arg boolean)
49+
if (${boolean})
50+
string(APPEND chip_gn_args "${arg} = true\n")
51+
else()
52+
string(APPEND chip_gn_args "${arg} = false\n")
53+
endif()
54+
endmacro()
55+
4856
chip_gn_arg_append("esp32_ar" "\"${CMAKE_AR}\"")
4957
chip_gn_arg_append("esp32_cc" "\"${CMAKE_C_COMPILER}\"")
5058
chip_gn_arg_append("esp32_cxx" "\"${CMAKE_CXX_COMPILER}\"")
5159
chip_gn_arg_append("esp32_cpu" "\"esp32\"")
60+
chip_gn_arg_bool("is_debug" is_debug)
5261

5362
if(CONFIG_ENABLE_PW_RPC)
5463
chip_gn_arg_append("chip_build_pw_rpc_lib" "true")

0 commit comments

Comments
 (0)