We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e70834c commit 837ad10Copy full SHA for 837ad10
Modules/@babylonjs/react-native/postinstall.js
@@ -2,17 +2,12 @@ const os = require("os");
2
3
function iosCMake() {
4
const { spawn } = require('child_process');
5
- const cmake = spawn(
6
- "npx",
7
- [
8
- '--package=cmake-runtime@3.31.1',
9
- './node_modules/cmake-runtime/bin/cmake',
10
- '-S',
11
- 'ios',
12
- '-B',
13
- 'Build/iOS',
14
- '-G',
15
- 'Xcode',
+
+ const cmake = spawn('npx', [
+ 'cmake',
+ '-S', 'ios',
+ '-B', 'Build/iOS',
+ '-G', 'Xcode',
16
'-DFETCHCONTENT_FULLY_DISCONNECTED=ON',
17
'-DBABYLON_NATIVE_BUILD_APPS=OFF',
18
'-DBABYLON_NATIVE_PLUGIN_TESTUTILS=OFF',
0 commit comments