Skip to content

Commit

Permalink
Update CMake configuration for multi-platform testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ak5k committed Jan 3, 2024
1 parent 245848a commit 6eb624c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,11 @@ jobs:
# Execute tests defined by the CMake configuration
shell: cmd
run: |
if "${{ matrix.arch }}" == "x64"
then
if "%matrix.arch%"=="x64" (
call "C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
elif "${{ matrix.arch }}" == "x86"
then
) else if "%matrix.arch%"=="x86" (
call "C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars32.bat"
fi
)
- name: Configure CMake
# Note the current configuration is for a basic C++ project. You'll need to update this for your specific needs.
Expand Down

0 comments on commit 6eb624c

Please sign in to comment.