Update c-cpp.yml

This commit is contained in:
Vladimir Dubrovin 2026-04-04 12:59:38 +03:00
parent 8c8ad7be6d
commit 82533b1a50

View File

@ -77,6 +77,10 @@ jobs:
set "INCLUDE=%INCLUDE%;c:/program files/openssl/include;c:/vcpkg/installed/x64-windows/include" set "INCLUDE=%INCLUDE%;c:/program files/openssl/include;c:/vcpkg/installed/x64-windows/include"
nmake /F Makefile.msvc64 nmake /F Makefile.msvc64
nmake /F Makefile.msvc64 clean nmake /F Makefile.msvc64 clean
- name: make Windows MSVC - name: make with CMake POSIX
if: ${{ !startsWith(matrix.target, 'windows') }}
run: mkdir build && cd build && cmake .. && make run: mkdir build && cd build && cmake .. && make
- name: make with CMake Win
if: ${{ startsWith(matrix.target, 'windows') }}
run: mkdir build && cd build && cmake .. && dir