ppsspp/README.md

50 lines
1.3 KiB
Markdown
Raw Normal View History

2012-11-01 15:19:01 +00:00
PPSSPP - a fast and portable PSP emulator
=========================================
Written by Henrik Rydgård
2012-11-02 06:48:45 +00:00
Released under the GPL 2.0 in November 2012
2012-11-01 15:19:01 +00:00
Official website:
http://www.ppsspp.org/
2012-11-02 06:48:45 +00:00
To contribute, see http://www.ppsspp.org/development.html .
2012-11-01 15:19:01 +00:00
For the latest source code and build instructions, see
http://github.com/hrydgard/ppsspp
2012-11-02 06:48:45 +00:00
2012-11-01 15:19:01 +00:00
BASIC BUILD INSTRUCTIONS
(for more detailed instructions, see http://www.ppsspp.org/development.html )
First of all, after having checked out the source, don't forget to
run:
git submodule init
git submodule update
in order to get the "native" library.
Now, the actual building:
2012-11-01 15:19:01 +00:00
PPSSPP currently has three build systems, for building
for the following platforms:
* Win32: MSVC
* Android: Android.mk + Eclipse project
* SDL (all other platforms): CMake
The ports and build files are located in the following three
subdirectories:
* android/
* SDL/
* Windows/
Please see the README in the directory corresponding to the
platform that you want to build for above.
Windows is separate from SDL because it has some graphical Win-only features.
Long term, the Windows port should be changed to use WX, like Dolphin. At that point,
the SDL port can probably go away as WX works for all Wintel-like platforms such as
2012-11-02 06:48:45 +00:00
MacOSX and Linux.