Skip to content

Commit

Permalink
release #27
Browse files Browse the repository at this point in the history
  • Loading branch information
yousefvand committed Nov 28, 2024
1 parent 583ed1a commit 2ef39ae
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,19 @@ jobs:
choco install ninja -y
choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' -y
# Debug and verify environment for Windows
- name: Debug environment paths (Windows)
if: matrix.os == 'windows-latest'
run: |
echo "Checking Visual Studio paths..."
if exist "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvars64.bat" (
echo "Found vcvars64.bat"
) else (
echo "vcvars64.bat not found"
exit 1
)
shell: cmd

# Configure CMake
- name: Configure CMake (Ubuntu and macOS)
if: matrix.os != 'windows-latest'
Expand Down

0 comments on commit 2ef39ae

Please sign in to comment.