Skip to content

Commit 8734465

Browse files
committed
Add RelWithDebInfo and MinSizeRel configurations
1 parent d6fb728 commit 8734465

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/cmake-rn/src/cli.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,8 @@ const sourcePathOption = new Option(
3636
"Specify the source directory containing a CMakeLists.txt file",
3737
).default(process.cwd());
3838

39-
// TODO: Add "MinSizeRel" and "RelWithDebInfo"
4039
const configurationOption = new Option("--configuration <configuration>")
41-
.choices(["Release", "Debug"] as const)
40+
.choices(["Release", "Debug", "RelWithDebInfo", "MinSizeRel"] as const)
4241
.default("Release");
4342

4443
// TODO: Derive default build triplets

0 commit comments

Comments
 (0)