gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit ece6e861931c80a5d9688d91317a1983ed92efaf
parent bfe4bb387f624af8d5cbe3a5cd89116d14b5bf29
Author: henry <henryborchers@yahoo.com>
Date:   Wed, 14 Jul 2021 19:34:18 -0500

Explicitly use msvc when testing on windows

Diffstat:
M.github/workflows/cmake.yml | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml @@ -27,6 +27,10 @@ jobs: if: matrix.cmake_generator == 'Ninja' uses: seanmiddleditch/gha-setup-ninja@master + - name: Set up MSVC compiler + if: matrix.os == 'windows-latest' + uses: ilammy/msvc-dev-cmd@v1 + - name: Configure CMake with ${{ matrix.cmake_generator }} if: matrix.cmake_generator != 'default' run: cmake -G ${{ matrix.cmake_generator }} -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}