From 739aa38a18d5c5ff210f22240c71c2d30b691e2e Mon Sep 17 00:00:00 2001 From: richard Date: Mon, 28 Jun 2021 13:17:12 +0100 Subject: [PATCH] CI --- .github/workflows/windows.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index f4127f2..d0b07f7 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -38,7 +38,8 @@ jobs: # The target architecture (x86, x64) of the Python interpreter. architecture: x64 - - uses: ilammy/msvc-dev-cmd@v1 + - name: Add msbuild to PATH + uses: microsoft/setup-msbuild@v1.0.2 - name: Build raylib run: | @@ -48,8 +49,8 @@ jobs: cmake -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release .. echo %cd% dir - msbuild ALL_BUILD.vxcproj - copy raylib\Debug\raylib.lib ..\.. + msbuild raylib.sln /target:raylib /property:Configuration=Release + copy raylib\Release\raylib.lib ..\.. cd ..\.. - name: Build raylib-python-cffi