Mesen2/COMPILING.md
2023-01-04 15:50:28 +09:00

485 B

Windows

  1. Open the solution in Visual Studio 2022
  2. Compile as Release/x64
  3. Set the startup project to the "UI" project and run

Linux

To compile Mesen under Linux you will need a version of clang or gcc which supports C++17.

Additionally, the .NET 6 SDK must also be installed.

Examples:
LTO=true make will compile with clang and LTO.
USE_GCC=true LTO=true make will compile with gcc and LTO.