Skip to content

Commit

Permalink
[Windows] update MSVC version
Browse files Browse the repository at this point in the history
  • Loading branch information
Reputeless committed Aug 7, 2024
1 parent 6644bbf commit e7d60f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@

| Platform | SDK | Requirements |
|:------------------:|:----------:|:------------------------------|
| Windows | [**Download SDK**](https://siv3d.github.io/en-us/download/windows/) /<br>[**SDK をダウンロード**](https://siv3d.github.io/ja-jp/download/windows/) | - Windows 10 / 11 (64-bit)<br>- Microsoft Visual C++ 2022 17.9<br>- Windows 10 SDK<br>- Intel / AMD CPU |
| Windows | [**Download SDK**](https://siv3d.github.io/en-us/download/windows/) /<br>[**SDK をダウンロード**](https://siv3d.github.io/ja-jp/download/windows/) | - Windows 10 / 11 (64-bit)<br>- Microsoft Visual C++ 2022 17.10<br>- Windows 10 SDK<br>- Intel / AMD CPU |
| macOS | [**Download SDK**](https://siv3d.github.io/en-us/download/macos/) /<br>[**SDK をダウンロード**](https://siv3d.github.io/ja-jp/download/macos/) | - macOS Big Sur / Monterey / Ventura<br>- Xcode 12.5 or newer<br>- Intel CPU / Apple Silicon (Rosetta mode)*<br>- OpenGL 4.1 compatible hardware |
| Linux | [**Compiling for Linux**](https://siv3d.github.io/en-us/download/ubuntu/) /<br>[**Linux 版のビルド**](https://siv3d.github.io/ja-jp/download/ubuntu/) | - GCC 9.3.0 (with Boost 1.71.0) / GCC 11.2 (with Boost 1.74.0)<br>- Intel / AMD CPU<br>- OpenGL 4.1 compatible hardware |
| Web (experimental**) | [**Compiling for Web**](https://siv3d.kamenokosoft.com/docs/en/) /<br>[**Web 版のビルド**](https://siv3d.kamenokosoft.com/docs/ja/) | Web browser with WebAssembly and WebGL2 support |
Expand Down
4 changes: 2 additions & 2 deletions Siv3D/include/Siv3D/Platform.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,11 @@
//
//////////////////////////////////////////////////

# if SIV3D_PLATFORM(WINDOWS) && (_MSC_VER < 1934) // 古い Visual Studio | Old MSVC
# if SIV3D_PLATFORM(WINDOWS) && (_MSC_VER < 1940) // 古い Visual Studio | Old MSVC

// お使いの Visual Studio のバージョンが古い場合、このエラーが発生します
// This error occures when your Visual Studio version is not up to date.
# error Please update the Visual Studio. Visual Studio 2022 17.4 is required to build this project.
# error Please update the Visual Studio. Visual Studio 2022 17.10 is required to build this project.

# endif

Expand Down

0 comments on commit e7d60f0

Please sign in to comment.