We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb837cb commit 3d7c553Copy full SHA for 3d7c553
.github/workflows/ci.yml
@@ -72,6 +72,25 @@ jobs:
72
path: bin/libgodot-cpp.windows.release.64.lib
73
if-no-files-found: error
74
75
+ windows-msvc-cmake:
76
+ name: Build (Windows, MSVC, CMake)
77
+ runs-on: windows-2019
78
+ steps:
79
+ - name: Checkout
80
+ uses: actions/[email protected]
81
+ with:
82
+ submodules: recursive
83
+
84
+ - name: Set up Python (for binding generator)
85
+ uses: actions/setup-python@v2
86
87
+ python-version: '3.9.1'
88
89
+ - name: Build godot-cpp
90
+ run: |
91
+ cmake -G "Visual Studio 16 2019" -T v142 -A x64 -DCMAKE_C_FLAGS=/MP -DCMAKE_CXX_FLAGS=/MP .
92
+ cmake --build . --config "Release" -- /maxcpucount /property:BuildInParallel=true /property:CL_MPCount=2 /verbosity:minimal
93
94
windows-mingw:
95
name: Build (Windows, MinGW)
96
runs-on: windows-2019
0 commit comments