mirror of
https://github.com/lighttransport/tinyusdz.git
synced 2026-01-18 01:11:17 +01:00
Add MVSC 32bit build on CI.
This commit is contained in:
16
.github/workflows/ccpp.yml
vendored
16
.github/workflows/ccpp.yml
vendored
@@ -81,6 +81,22 @@ jobs:
|
||||
- name: Build
|
||||
run: cmake --build build --config Release
|
||||
|
||||
# Windows(32bit) + Visual Studio 2019 build
|
||||
build-windows-msvc:
|
||||
|
||||
runs-on: windows-latest
|
||||
name: Build for Windows(Win32, MSVC)
|
||||
|
||||
# Use system installed cmake
|
||||
# https://help.github.com/en/actions/reference/software-installed-on-github-hosted-runners
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
- name: Configure
|
||||
run: .\vcsetup-32bit.bat
|
||||
- name: Build
|
||||
run: cmake --build build_win32 --config Release
|
||||
|
||||
# Android(aarch64) build
|
||||
build-android:
|
||||
|
||||
|
||||
6
vcsetup-32bit.bat
Normal file
6
vcsetup-32bit.bat
Normal file
@@ -0,0 +1,6 @@
|
||||
rmdir /s /q build_win32
|
||||
mkdir build_win32
|
||||
|
||||
rem cmake -G "Visual Studio 16 2019" -A Win32 -DTINYUSDZ_WITH_OPENSUBDIV=On -Bbuild_win32 -S.
|
||||
|
||||
cmake -G "Visual Studio 17 2022" -A Win32 -DTINYUSDZ_WITH_OPENSUBDIV=On -Bbuild_win32 -S.
|
||||
Reference in New Issue
Block a user