Create pcsx2.md

This commit is contained in:
Autechre 2021-08-28 21:59:24 +02:00 committed by GitHub
parent 3d6cbec308
commit 3fddb1b706
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,27 @@
# Sony PlayStation2 (PCSX2)
## Requirements
- CMake
## How to compile (for Windows x64 - Visual Studio 2017)
In addition to the requirement(s) listed above, you will also need Visual Studio 2017 installed in order for the following to work.
Enter the following commands (from the Dolphin source directory):
mkdir build
cd build
cmake .. -DLIBRETRO=ON -DCMAKE_BUILD_TYPE=Release -G"Visual Studio 15 2017 Win64"
cmake --build . --target pcsx2_libretro --config Release
## How to compile (for Windows x64 - Visual Studio 2019)
In addition to the requirement(s) listed above, you will also need Visual Studio 2019 installed in order for the following to work.
Enter the following commands (from the Dolphin source directory):
mkdir build
cd build
cmake .. -DLIBRETRO=ON -DCMAKE_BUILD_TYPE=Release -G"Visual Studio 15 2019 Win64"
cmake --build . --target pcsx2_libretro --config Release