We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14bbbbb commit 8ec3f41Copy full SHA for 8ec3f41
1 file changed
packages/cmake-rn/src/cli.ts
@@ -106,6 +106,11 @@ const targetOption = new Option(
106
"CMake targets to build",
107
).default([] as string[], "Build all targets of the CMake project");
108
109
+const stripOption = new Option(
110
+ "--strip",
111
+ "Strip debug symbols from the final binaries",
112
+).default(false);
113
+
114
const noAutoLinkOption = new Option(
115
"--no-auto-link",
116
"Don't mark the output as auto-linkable by react-native-node-api",
@@ -132,6 +137,7 @@ let program = new Command("cmake-rn")
132
137
.addOption(defineOption)
133
138
.addOption(cleanOption)
134
139
.addOption(targetOption)
140
+ .addOption(stripOption)
135
141
.addOption(noAutoLinkOption)
136
142
.addOption(noWeakNodeApiLinkageOption)
143
.addOption(cmakeJsOption);
0 commit comments