libretro: fix path for some games like MM9 on windows when using mingw #252
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Dolphin (libretro) on Windows (MSVC) | |
| on: [push, pull_request] | |
| env: | |
| core_id: dolphin_libretro | |
| jobs: | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Install dependencies | |
| run: | | |
| choco install cmake ninja git | |
| - name: Checkout Dolphin (libretro) repo | |
| uses: actions/checkout@v6 | |
| with: | |
| path: ${{ env.core_id }} | |
| submodules: recursive | |
| - name: Configure (MSVC) | |
| run: | | |
| cd ${{ env.core_id }} | |
| mkdir build && cd build | |
| cmake .. -DLIBRETRO=ON -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 18 2026" -A x64 | |
| - name: Build | |
| run: | | |
| cmake --build ${{ env.core_id }}/build --config Release --parallel |