Skip to content

Commit

Permalink
Fix batch file
Browse files Browse the repository at this point in the history
  • Loading branch information
durswd committed May 24, 2023
1 parent 2b32162 commit df8a0a7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Release/build_msvc2022_x64.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mkdir build_msvc2022
cd build_msvc2022
cmake -G "Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX=../install_msvc2022 -DUSE_LLGI=ON -DBUILD_DX12=ON .. -DCMAKE_DEBUG_POSTFIX=d
mkdir build_msvc2022_x64
cd build_msvc2022_x64
cmake -G "Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX=../install_msvc2022_x64 -DUSE_LLGI=ON -DBUILD_DX12=ON .. -DCMAKE_DEBUG_POSTFIX=d
cmake --build . --config Debug --target INSTALL
cmake --build . --config Release --target INSTALL
6 changes: 3 additions & 3 deletions Release/build_msvc2022_x86.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mkdir build_msvc2022
cd build_msvc2022
cmake -G "Visual Studio 17 2022" -A Win32 -DCMAKE_INSTALL_PREFIX=../install_msvc2022 -DUSE_LLGI=ON -DBUILD_DX12=ON .. -DCMAKE_DEBUG_POSTFIX=d
mkdir build_msvc2022_x86
cd build_msvc2022_x86
cmake -G "Visual Studio 17 2022" -A Win32 -DCMAKE_INSTALL_PREFIX=../install_msvc2022_x86 -DUSE_LLGI=ON -DBUILD_DX12=ON .. -DCMAKE_DEBUG_POSTFIX=d
cmake --build . --config Debug --target INSTALL
cmake --build . --config Release --target INSTALL

0 comments on commit df8a0a7

Please sign in to comment.