Skip to content

Commit

Permalink
update azure pipelines for vs2019
Browse files Browse the repository at this point in the history
  • Loading branch information
alexchicn committed Oct 12, 2020
1 parent 5cb771f commit 7a544d4
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,12 @@ jobs:
mkdir build
cd build
cmake -G "Visual Studio 16 2019" -A "Win32" -DLIBGLTF_CHARACTOR_ENCODING=UTF8 ../
msbuild libgltf.sln /t:Build /p:Configuration="Debug" /p:Platform="Win32"
msbuild libgltf.sln /t:Build /p:Configuration="Release" /p:Platform="Win32"
cd ../
displayName: "CMake for VS2019 Win32"
- task: VSBuild@1
solution: build/libgltf.sln
platform: Win32
configuration: Release
displayName: "Compile for VS2019 Win32"

- job: vs2019_x64
Expand All @@ -60,7 +63,10 @@ jobs:
mkdir build
cd build
cmake -G "Visual Studio 16 2019" -A "x64" -DLIBGLTF_CHARACTOR_ENCODING=UTF8 ../
msbuild libgltf.sln /t:Build /p:Configuration="Debug" /p:Platform="x64"
msbuild libgltf.sln /t:Build /p:Configuration="Release" /p:Platform="x64"
cd ../
displayName: "CMake for VS2019 x64"
- task: VSBuild@1
solution: build/libgltf.sln
platform: x64
configuration: Release
displayName: "Compile for VS2019 x64"

0 comments on commit 7a544d4

Please sign in to comment.