Cross-platform Nestopia emulator core with a GUI
Go to file
2018-01-14 22:54:56 -05:00
cmake/Modules Add JACK audio support 2017-12-29 16:32:01 -05:00
doc Initial Commit 2012-09-02 13:13:55 -04:00
extras Added extra palettes and did some cleanups 2017-05-22 23:32:10 -04:00
icons Start of major source tree restructuring and cleanup 2018-01-14 22:54:56 -05:00
libretro Add Switch target 2018-01-04 23:17:36 +01:00
projects/blackberry-qnx Pruning 2014-02-23 19:45:18 -05:00
source Start of major source tree restructuring and cleanup 2018-01-14 22:54:56 -05:00
.gitignore Add Autotools as alternative build system. 2017-01-21 18:48:43 +01:00
.travis.yml Build the correct core... 2017-12-21 13:13:51 -05: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 Enabled overclock option in standalone port 2017-09-20 11:32:45 -04:00
CMakeLists.txt Add JACK audio support 2017-12-29 16:32:01 -05:00
configure.ac Start of major source tree restructuring and cleanup 2018-01-14 22:54:56 -05:00
COPYING Initial Commit 2012-09-02 13:13:55 -04:00
Makefile.am Start of major source tree restructuring and cleanup 2018-01-14 22:54:56 -05: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 Appveyor CI 2017-12-21 21:12:33 +09: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

Build Status Build status

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.

Building with Autotools

In order to build with Autotools:

autoreconf -vif
./configure --prefix=<INSTALLATION PREFIX>
make -j<NUMBER OF CORES>

optionally:

make install

Differences on OS X:

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

Building with CMake

In order to build with CMake:

mkdir BUILD
cd BUILD
cmake -DCMAKE_INSTALL_PREFIX=<INSTALLATION PREFIX> ..
make -j<NUMBER OF CORES>

optionally:

make install

The CMake build system can also be used with Ninja by adding -GNinja to the cmake line.

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.