Browse Source

Update ci_src_examples_win.yml

pull/1067/head
Ray 5 years ago
committed by GitHub
parent
commit
2829cec720
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      .github/workflows/ci_src_examples_win.yml

+ 4
- 2
.github/workflows/ci_src_examples_win.yml View File

@ -23,9 +23,11 @@ jobs:
- compiler: msvc16
bits: 32
GENERATOR: "Visual Studio 16 2019"
ARCH: "-A Win32"
- compiler: msvc16
bits: 64
GENERATOR: "Visual Studio 16 2019 -A x64"
GENERATOR: "Visual Studio 16 2019"
ARCH: "-A x64"
env:
CFLAGS: ${{ matrix.CFLAGS }}
@ -43,7 +45,7 @@ jobs:
uses: warrenbuckley/Setup-MSBuild@v1
- name: Setup CMake Project
run: cmake -G "${{ matrix.GENERATOR }}" -DCMAKE_SH="CMAKE_SH-NOTFOUND" -DSTATIC=ON -DSHARED=ON -DBUILD_EXAMPLES=ON -DBUILD_GAMES=OFF -DINCLUDE_EVERYTHING=ON ../raylib
run: cmake -G "${{ matrix.GENERATOR }}" ${{ matrix.ARCH }} -DCMAKE_SH="CMAKE_SH-NOTFOUND" -DSTATIC=ON -DSHARED=ON -DBUILD_EXAMPLES=ON -DBUILD_GAMES=OFF -DINCLUDE_EVERYTHING=ON ../raylib
- name: Build raylib Source & Examples
run: cmake --build . --target install

Loading…
Cancel
Save