summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/ci_src_examples_win.yml
blob: 449493c5d197d566abfef3ee214404c4d3a5acca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: CI - Source & Examples - Windows

on: [push, pull_request]

jobs:
  build:
    runs-on: windows-latest
    steps:
    - uses: actions/checkout@master
    - name: Setup Environment
      run: | 
        mkdir build
        cd build
    - name: Setup CMake Project
      run: |
        cmake -G "Visual Studio 14 2015" -DSTATIC=ON -DSHARED=ON -DBUILD_EXAMPLES=ON -DBUILD_GAMES=OFF -DINCLUDE_EVERYTHING=ON ..
        dir
        dir ..
    - name: Build raylib Source & Examples
      run: cmake --build . --target install