Cross-platform Nestopia emulator core with a GUI
Go to file
2017-09-03 16:32:25 -04:00
doc Initial Commit 2012-09-02 13:13:55 -04:00
extras Added BMF palettes to extras 2016-11-26 11:43:03 -05:00
libretro Fix permissions. 2017-03-23 19:27:12 -07:00
projects/blackberry-qnx Pruning 2014-02-23 19:45:18 -05:00
source This is 1.48 2017-09-03 16:32:25 -04:00
.gitignore Add Autotools as alternative build system. 2017-01-21 18:48:43 +01:00
AUTHORS Added FirebrandX's palettes 2016-05-22 16:03:17 -04:00
ChangeLog This is 1.48 2017-09-03 16:32:25 -04:00
CMakeLists.txt Add Autotools as alternative build system. 2017-01-21 18:48:43 +01:00
configure.ac This is 1.48 2017-09-03 16:32:25 -04:00
COPYING Initial Commit 2012-09-02 13:13:55 -04:00
Makefile.am Add Autotools as alternative build system. 2017-01-21 18:48:43 +01: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 Update README with OS X specific instructions 2017-03-31 22:50:44 -04:00
README.unix Removed static Makefile and updated build instructions 2017-01-07 11:15:50 -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

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.