We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8a85f82 + f994488 commit f3a8cdcCopy full SHA for f3a8cdc
1 file changed
build.py
@@ -16,11 +16,9 @@
16
17
# Detect platform and choose CMake generator
18
system = platform.system()
19
-if system == "Darwin": # macOS
20
- cmake_generator = ["-G", "Xcode"]
21
-elif system == "Windows":
+if system == "Windows":
22
cmake_generator = ["-G", "Visual Studio 17 2022"] # You can adjust this if using another version
23
-else: # Assume Linux
+else:
24
cmake_generator = ["-G", "Ninja"]
25
26
# Load config.json
0 commit comments