Просмотр исходного кода

Added more VS2026 batch files

Removed VS2019 batch files
Jorrit Rouwe 1 месяц назад
Родитель
Сommit
d601be7034

+ 0 - 3
Build/cmake_vs2019_cl.bat

@@ -1,3 +0,0 @@
-@echo off
-cmake -S . -B VS2019_CL -G "Visual Studio 16 2019" -A x64 %*
-echo Open VS2019_CL\JoltPhysics.sln to build the project.

+ 0 - 3
Build/cmake_vs2019_cl_arm.bat

@@ -1,3 +0,0 @@
-@echo off
-cmake -S . -B VS2019_CL_ARM -G "Visual Studio 16 2019" -A ARM64 %*
-echo Open VS2019_CL_ARM\JoltPhysics.sln to build the project.

+ 0 - 3
Build/cmake_vs2019_cl_arm_32bit.bat

@@ -1,3 +0,0 @@
-@echo off
-cmake -S . -B VS2019_CL_ARM_32BIT -G "Visual Studio 16 2019" -A ARM %*
-echo Open VS2019_CL_ARM_32BIT\JoltPhysics.sln to build the project.

+ 3 - 0
Build/cmake_vs2026_cl_cross_platform_deterministic.bat

@@ -0,0 +1,3 @@
+@echo off
+cmake -S . -B VS2026_CL_CPD -G "Visual Studio 18 2026" -A x64 -DCROSS_PLATFORM_DETERMINISTIC=ON %*
+echo Open VS2026_CL_CPD\JoltPhysics.sln to build the project.

+ 4 - 4
Build/cmake_vs2019_clang.bat → Build/cmake_vs2026_clang.bat

@@ -1,10 +1,10 @@
 @echo off
-cmake -S . -B VS2019_Clang -G "Visual Studio 16 2019" -A x64 -T ClangCL %*
+cmake -S . -B VS2026_Clang -G "Visual Studio 18 2026" -A x64 -T ClangCL %*
 echo:
 echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 echo Make sure to install:
-echo - C++ Clang Compiler for Windows 11.0.0+
-echo - C++ Clang-cl for v142+ build tools (x64/x86)
+echo - C++ Clang Compiler for Windows 20+
+echo - MSBuild support for LLVM (clang-cl) toolset
 echo Using the Visual Studio Installer
 echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-echo Open VS2019_Clang/JoltPhysics.sln to build the project.
+echo Open VS2026_Clang/JoltPhysics.sln to build the project.

+ 10 - 0
Build/cmake_vs2026_clang_cross_platform_deterministic.bat

@@ -0,0 +1,10 @@
+@echo off
+cmake -S . -B VS2026_Clang_CPD -G "Visual Studio 18 2026" -A x64 -T ClangCL -DCROSS_PLATFORM_DETERMINISTIC=ON %*
+echo:
+echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+echo Make sure to install:
+echo - C++ Clang Compiler for Windows 20+
+echo - MSBuild support for LLVM (clang-cl) toolset
+echo Using the Visual Studio Installer
+echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+echo Open VS2026_Clang_CPD/JoltPhysics.sln to build the project.

+ 10 - 0
Build/cmake_vs2026_clang_double.bat

@@ -0,0 +1,10 @@
+@echo off
+cmake -S . -B VS2026_Clang_Double -G "Visual Studio 18 2026" -A x64 -T ClangCL -DDOUBLE_PRECISION=YES %*
+echo:
+echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+echo Make sure to install:
+echo - C++ Clang Compiler for Windows 20+
+echo - MSBuild support for LLVM (clang-cl) toolset
+echo Using the Visual Studio Installer
+echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+echo Open VS2026_Clang_Double/JoltPhysics.sln to build the project.