Cross-platform Nestopia emulator core with a GUI
Go to file
2020-01-03 16:55:34 -05:00
doc Initial Commit 2012-09-02 13:13:55 -04:00
extras Added 1536 byte palettes 2018-07-29 20:17:37 -04:00
icons Removed option to disable GUI 2018-01-17 23:17:50 -05:00
libretro Change version string 2020-01-03 16:36:35 -05:00
source Update copyright year, clamp texture to border 2020-01-03 16:55:34 -05:00
.gitignore Add more entries to .gitignore after building on Ubuntu. 2018-02-05 15:56:56 -05:00
.travis.yml Remove broken builds from travis 2018-09-03 21:12:02 -04:00
appveyor.yml Appveyor CI 2017-12-21 21:12:33 +09:00
AUTHORS Added FirebrandX's palettes 2016-05-22 16:03:17 -04:00
ChangeLog Add missing changes to ChangeLog 2020-01-03 16:29:14 -05:00
configure.ac Change version string 2020-01-03 16:36:35 -05:00
COPYING Initial Commit 2012-09-02 13:13:55 -04:00
Makefile.am Add Action 53 (mapper 28) 2019-05-28 11:22:24 -04:00
NstDatabase.xml Fix permissions. 2017-03-23 19:27:12 -07:00
readme.html Initial Commit 2012-09-02 13:13:55 -04:00
README.md Remove build status from README.md 2019-11-28 21:05:44 -05:00
schemadb.xsd Initial Commit 2012-09-02 13:13:55 -04:00
schemaromset.xsd Initial Commit 2012-09-02 13:13:55 -04:00

Maintenance Mode

This project is now in maintenance mode. For any libretro related issues or pull requests, please go to: https://github.com/libretro/nestopia

About

This project is a fork of the original Nestopia source code, plus the Linux port. The purpose of the project is to enhance the original, and ensure it continues to work on modern operating systems.

The following platforms are supported:

  • Linux, FreeBSD, OpenBSD, NetBSD, OS X, Windows
  • Anything supported by libretro

This project depends on the following libraries: libsdl2, libepoxy, libao, libarchive, zlib

Optionally, it depends on GTK+3 for the GUI, currently only available on Linux and BSD.

Installing Dependencies

Install dependencies required for building on Debian-based Linux distributions:

apt-get install build-essential autoconf autoconf-archive automake autotools-dev libsdl2-dev libepoxy-dev libarchive-dev zlib1g-dev

Optional dependencies:

apt-get install libao-dev libjack-dev libgtk-3-dev

Building

To build using Autotools (optional arguments in square brackets):

autoreconf -vif
./configure [--enable-gui] [--enable-doc] [--with-ao] [--with-jack]
make

Optionally:

make install

Differences on OS X:

export PKG_CONFIG_PATH=/usr/local/opt/libarchive/lib/pkgconfig/
./configure --disable-gui

In order to bootstrap the Autotools you will need:

  1. Autoconf; latest 2.69 release (http://www.gnu.org/software/autoconf/)

    GNU Autoconf produces the ./configure script from configure.ac.

  2. Automake; latest 1.15 release (http://www.gnu.org/software/automake/)

    GNU Automake produces the Makefile.in precursor, that is processed with ./configure to yield the final Makefile.

  3. Autoconf Archive; latest 2016.09.16 release (http://www.gnu.org/software/autoconf-archive/)

    The configure.ac requires a number of m4 macros from the Autoconf archive.