Work In Progress SEGA Dreamcast emulator
Go to file
Anthony Pesch 4fb509246a updated imgui implementation to filter small analog inputs 2017-12-04 09:29:00 -05:00
assets initial ui work 2017-11-21 21:03:50 -05:00
cmake add git version header 2017-11-22 10:06:16 -05:00
deps updated libretro Makefile to build from the deps/libretro directory 2017-11-21 21:03:50 -05:00
src updated imgui implementation to filter small analog inputs 2017-12-04 09:29:00 -05:00
test remove old hw testing framework 2017-10-28 10:23:35 -04:00
tools initial sh4 scif support for interacting with dcload 2017-10-25 20:54:18 -04:00
.appveyor.yml update appveyor and travis to publish to redream.io 2017-11-24 21:06:03 -05:00
.clang-format initial android support 2017-06-19 23:03:19 -04:00
.gitignore only ignore android/ and build/ in root 2017-07-26 22:14:11 -04:00
.travis.yml update appveyor and travis to publish to redream.io 2017-11-24 21:06:03 -05:00
CMakeLists.txt unscramble bootfile of CD-ROM XA discs during HLE bootstrap 2017-12-03 16:55:07 -05:00
ICLA.md added individual contributor license agreement 2017-06-22 14:33:15 -04:00
LICENSE.txt added note about external library licenses 2017-07-27 09:53:37 -04:00
README.md remove old docs dir 2017-11-26 20:28:44 -05:00

README.md

redream

travis-ci status appveyor status slack status

redream is a work-in-progress SEGA Dreamcast emulator written in C for Mac, Linux and Windows.

redream is licensed under the GPLv3 license (see LICENSE.txt) and uses third party libraries that are each distributed under their own terms (see each library's license in deps/).

Ask questions and help answer them on our Slack group.

Downloading

The latest pre-built binaries can be found on the downloads page.

Building

Start by cloning the repository and setting up a build directory.

git clone https://github.com/inolen/redream.git
mkdir redream_build
cd redream_build

Next, generate a makefile or project file for your IDE of choice. For more info on the supported IDEs, checkout the CMake documentation.

# Makefile
cmake -DCMAKE_BUILD_TYPE=RELEASE ../redream

# Xcode project
cmake -G "Xcode" ../redream

# Visual Studio project
cmake -G "Visual Studio 14 Win64" ../redream

Finally, you can either run make from the command line if you've generated a Makefile or load up the project file and compile the code from inside of your IDE.

Reporting bugs

Report bugs via the GitHub issue queue.