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 fa3462d5be45ce6b7ec2cb79e4fdf1ff97c2dc78
parent d0e4bd8495046fd8d1fb5759cb7fdc6729db7a55
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}}