You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -48,6 +51,7 @@ The C++ sample shows how Godot can be controlled by a host process, by displayin
48
51
49
52
After libgodot is compiled successfully, run the following commands to test the C++ sample:
50
53
54
+
On Linux and MacOS:
51
55
```
52
56
cd samples/cpp_sample
53
57
mkdir build
@@ -56,6 +60,16 @@ cd build
56
60
./sample
57
61
```
58
62
63
+
On Windows:
64
+
```
65
+
cd samples/cpp_sample
66
+
mkdir build
67
+
cmake -S . -B build -G Ninja
68
+
cd build
69
+
ninja
70
+
sample.exe
71
+
```
72
+
59
73
### SwiftUI Sample
60
74
61
75
To test the SwiftUI sample, just open the ios_sample project in XCode 15.1+, build it and run on any iOS device. (iOS Simulator is not supported due to Godot limitations.)
0 commit comments