summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorRay <[email protected]>2020-01-09 16:50:01 +0100
committerGitHub <[email protected]>2020-01-09 16:50:01 +0100
commitd1a4c1f789d05973ae67ff5cc648f2c29f71afaa (patch)
treea14127e20a014aec99558039d47b004742053dee /.github/workflows
parent451969de1b59d7744236e229294774f2105dbfd9 (diff)
downloadraylib-d1a4c1f789d05973ae67ff5cc648f2c29f71afaa.tar.gz
raylib-d1a4c1f789d05973ae67ff5cc648f2c29f71afaa.zip
Update ci_src_examples_win.yml
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci_src_examples_win.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci_src_examples_win.yml b/.github/workflows/ci_src_examples_win.yml
index a3a9cd12..0bdb223b 100644
--- a/.github/workflows/ci_src_examples_win.yml
+++ b/.github/workflows/ci_src_examples_win.yml
@@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v1
- name: Enable MSVC Developer Command Prompt
uses: ilammy/[email protected]
- - name: Build using CL.EXE
- run: cd src && make PLATFORM=PLATFORM_DESKTOP
- - name: make examples
- run: cd examples && make PLATFORM=PLATFORM_DESKTOP
+ - name: Setup CMake Project
+ run: cmake -G Visual Studio 14 2015 -DSTATIC=ON -DSHARED=ON -DBUILD_EXAMPLES=ON -DBUILD_GAMES=OFF -DINCLUDE_EVERYTHING=ON ..
+ - name: Build raylib Source & Examples
+ run: cmake --build . --target install