- Windows
- CMake (version >= 3.17.0)
- Visual Studio 2019 (VS 16)
- In Visual Studio Installer, make sure you select the workload: "Desktop development with C++"
- If you get a .dll error, install Visual C++ Runtime 2019
- create
build
directory cd build
- Create the project in either 32-bit or 64-bit mode:
- 32-bit:
cmake -A Win32 -G "Visual Studio 16" ..
- 64-bit:
cmake -A x64 -G "Visual Studio 16" ..
- 32-bit:
cd build
cmake --build . --config Release
- double-click
bin/mc2.exe
- double-click build/mc2.sln
git clean -fdx
- recreate project with above instructions