We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5897fc2 commit 0374230Copy full SHA for 0374230
packages/node-addon-examples/scripts/build-examples.mts
@@ -6,14 +6,9 @@ const projectDirectories = findCMakeProjects();
6
7
for (const projectDirectory of projectDirectories) {
8
console.log(`Running "cmake-rn" in ${projectDirectory}`);
9
- execSync(
10
- "cmake-rn",
11
- // "cmake-rn --android --apple",
12
- // "cmake-rn --triplet aarch64-linux-android --triplet arm64-apple-ios-sim",
13
- {
14
- cwd: projectDirectory,
15
- stdio: "inherit",
16
- },
17
- );
+ execSync("cmake-rn --configuration RelWithDebInfo", {
+ cwd: projectDirectory,
+ stdio: "inherit",
+ });
18
console.log();
19
}
0 commit comments