Skip to content

fix xcode build for image coder #170

fix xcode build for image coder

fix xcode build for image coder #170

Workflow file for this run

name: Windows Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release, MinSizeRel, RelWithDebInfo]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup MSBuild.exe
uses: microsoft/[email protected]
- name: Generate Project
run: ./build_windows.bat
- name: Restore Project
run: msbuild ./proj/picasso.sln /t:Restore /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}
- name: Build Solution
run: msbuild ./proj/picasso.sln /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}