We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6fb728 commit 8734465Copy full SHA for 8734465
packages/cmake-rn/src/cli.ts
@@ -36,9 +36,8 @@ const sourcePathOption = new Option(
36
"Specify the source directory containing a CMakeLists.txt file",
37
).default(process.cwd());
38
39
-// TODO: Add "MinSizeRel" and "RelWithDebInfo"
40
const configurationOption = new Option("--configuration <configuration>")
41
- .choices(["Release", "Debug"] as const)
+ .choices(["Release", "Debug", "RelWithDebInfo", "MinSizeRel"] as const)
42
.default("Release");
43
44
// TODO: Derive default build triplets
0 commit comments