Skip to content

Commit

Permalink
Try using the v140 toolset
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlegiantJGC committed Mar 11, 2021
1 parent 954c111 commit 7e5d980
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
shell: cmd
run: |
cd zlib
cmake -G "Visual Studio 16 2019" -A Win32
cmake -G "Visual Studio 16 2019" -A Win32 -T v140
cmake --build . --config Release
cd ..
Expand All @@ -32,7 +32,7 @@ jobs:
run: |
mkdir build_leveldb
cd build_leveldb
cmake -DZLIB_INCLUDE_DIR="..\zlib" -DZLIB_LIBRARY="..\zlib\Release\zlibstatic.lib" -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=TRUE -G "Visual Studio 16 2019" -A Win32 ..\leveldb-mcpe
cmake -DZLIB_INCLUDE_DIR="..\zlib" -DZLIB_LIBRARY="..\zlib\Release\zlibstatic.lib" -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=TRUE -G "Visual Studio 16 2019" -A Win32 -T v140 ..\leveldb-mcpe
cmake --build . --config Release
cd ..
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
shell: cmd
run: |
cd zlib
cmake -G "Visual Studio 16 2019" -A x64
cmake -G "Visual Studio 16 2019" -A x64 -T v140
cmake --build . --config Release
cd ..
Expand All @@ -74,7 +74,7 @@ jobs:
run: |
mkdir build_leveldb
cd build_leveldb
cmake -DZLIB_INCLUDE_DIR="..\zlib" -DZLIB_LIBRARY="..\zlib\Release\zlibstatic.lib" -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=TRUE -G "Visual Studio 16 2019" -A x64 ..\leveldb-mcpe
cmake -DZLIB_INCLUDE_DIR="..\zlib" -DZLIB_LIBRARY="..\zlib\Release\zlibstatic.lib" -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=TRUE -G "Visual Studio 16 2019" -A x64 -T v140 ..\leveldb-mcpe
cmake --build . --config Release
cd ..
Expand Down

0 comments on commit 7e5d980

Please sign in to comment.