mirror of
https://github.com/libretro/docs.git
synced 2024-11-27 18:50:37 +00:00
Create pcsx2.md
This commit is contained in:
parent
3d6cbec308
commit
3fddb1b706
27
docs/development/cores/core-specific/pcsx2.md
Normal file
27
docs/development/cores/core-specific/pcsx2.md
Normal 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
|
Loading…
Reference in New Issue
Block a user