Skip to content

Commit

Permalink
Use flycast-gdxsv-windows.zip as package name and future check, dis…
Browse files Browse the repository at this point in the history
…able msvc build
  • Loading branch information
vkedwardli committed Jan 12, 2025
1 parent aa00dc2 commit 7e3773f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
- {name: apple-darwin, os: self-hosted-mac, shell: sh, cmakeArgs: -G Xcode, destDir: osx, buildType: RelWithDebInfo, packageName: flycast-gdxsv-macos-x86_64.zip}
# - {name: apple-ios, os: macos-latest, shell: sh, cmakeArgs: -DCMAKE_SYSTEM_NAME=iOS -G Xcode, destDir: ios, buildType: Release}
- {name: x86_64-pc-linux-gnu, os: ubuntu-20.04, shell: sh, cmakeArgs: -G Ninja, destDir: linux, buildType: RelWithDebInfo, packageName: flycast-gdxsv-linux-x86_64.zip}
- {name: x86_64-pc-windows-msvc, os: windows-latest, shell: cmd, arch: x64, cmakeArgs: -G Ninja -DMSVC_BREAKPAD=ON, destDir: win, buildType: Release, packageName: flycast-gdxsv-windows-msvc.zip}
- {name: x86_64-w64-mingw32, os: windows-latest, shell: 'msys2 {0}', cmakeArgs: -G Ninja, destDir: win, buildType: RelWithDebInfo, packageName: flycast-gdxsv-windows-mingw64.zip}
# - {name: x86_64-pc-windows-msvc, os: windows-latest, shell: cmd, arch: x64, cmakeArgs: -G Ninja -DMSVC_BREAKPAD=ON, destDir: win, buildType: Release, packageName: flycast-gdxsv-windows-msvc.zip}
- {name: x86_64-w64-mingw32, os: windows-latest, shell: 'msys2 {0}', cmakeArgs: -G Ninja, destDir: win, buildType: RelWithDebInfo, packageName: flycast-gdxsv-windows.zip}
# - {name: libretro-x86_64-pc-linux-gnu, os: ubuntu-latest, shell: sh, cmakeArgs: -DLIBRETRO=ON -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE -G Ninja, buildType: Release}
# - {name: libretro-x86_64-w64-mingw32, os: windows-latest, shell: 'msys2 {0}', cmakeArgs: -DLIBRETRO=ON -G Ninja, buildType: Release}

Expand Down
2 changes: 1 addition & 1 deletion core/gdxsv/gdxsv_update.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ static constexpr size_t MaxDownloadSize = 30 * 1024 * 1024;
static const std::string ReleaseFileName =
#if HOST_CPU == CPU_X64
#if defined(_WIN32)
"flycast-gdxsv-windows-msvc.zip";
"flycast-gdxsv-windows.zip";
#elif defined(__APPLE__) && !defined(TARGET_IPHONE)
"flycast-gdxsv-macos-x86_64.zip";
#elif defined(__unix__) && !defined(__APPLE__) && !defined(__ANDROID__)
Expand Down

0 comments on commit 7e3773f

Please sign in to comment.