CI
This commit is contained in:
parent
a4c20830fc
commit
739aa38a18
1 changed files with 4 additions and 3 deletions
7
.github/workflows/windows.yml
vendored
7
.github/workflows/windows.yml
vendored
|
@ -38,7 +38,8 @@ jobs:
|
||||||
# The target architecture (x86, x64) of the Python interpreter.
|
# The target architecture (x86, x64) of the Python interpreter.
|
||||||
architecture: x64
|
architecture: x64
|
||||||
|
|
||||||
- uses: ilammy/msvc-dev-cmd@v1
|
- name: Add msbuild to PATH
|
||||||
|
uses: microsoft/setup-msbuild@v1.0.2
|
||||||
|
|
||||||
- name: Build raylib
|
- name: Build raylib
|
||||||
run: |
|
run: |
|
||||||
|
@ -48,8 +49,8 @@ jobs:
|
||||||
cmake -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
|
cmake -DWITH_PIC=on -DCMAKE_BUILD_TYPE=Release ..
|
||||||
echo %cd%
|
echo %cd%
|
||||||
dir
|
dir
|
||||||
msbuild ALL_BUILD.vxcproj
|
msbuild raylib.sln /target:raylib /property:Configuration=Release
|
||||||
copy raylib\Debug\raylib.lib ..\..
|
copy raylib\Release\raylib.lib ..\..
|
||||||
cd ..\..
|
cd ..\..
|
||||||
|
|
||||||
- name: Build raylib-python-cffi
|
- name: Build raylib-python-cffi
|
||||||
|
|
Reference in a new issue