summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorRay <[email protected]>2020-01-10 16:37:23 +0100
committerGitHub <[email protected]>2020-01-10 16:37:23 +0100
commit2829cec720f6de9b5eebb7c60c886260a9812b07 (patch)
tree5468372ba3f46db5ac2bb073cba0ded508e00c2b /.github
parenta63a4229723f6a5bd2db4db7459049eb710b2a80 (diff)
downloadraylib-2829cec720f6de9b5eebb7c60c886260a9812b07.tar.gz
raylib-2829cec720f6de9b5eebb7c60c886260a9812b07.zip
Update ci_src_examples_win.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci_src_examples_win.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci_src_examples_win.yml b/.github/workflows/ci_src_examples_win.yml
index 395a6c1d..e173ee37 100644
--- a/.github/workflows/ci_src_examples_win.yml
+++ b/.github/workflows/ci_src_examples_win.yml
@@ -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