Data interchange, editor suite, and runtime re-implementations for games by Retro Studios
Go to file
Jack Andersen 087a2bd4e6 Update README.md 2016-03-04 19:11:00 -10:00
DataSpec Humungous refactor 2016-03-04 13:04:53 -10:00
Editor Missed library reference 2016-03-04 15:30:22 -08:00
Runtime CToken tweak 2016-03-04 18:50:38 -10:00
hecl@0df19b29fb Windows fixes 2016-03-04 17:34:27 -10:00
nod@a98927d4a0 Update nod 2016-03-04 17:58:44 -10:00
specter@d6a6032dba Humungous refactor 2016-03-04 13:04:53 -10:00
.gitignore Updates for Menu 2016-01-15 13:35:59 -10:00
.gitmodules Submodule refactor 2016-03-04 09:25:39 -10:00
CMakeLists.txt Windows fixes 2016-03-04 17:34:27 -10:00
LICENSE Community Concensus MIT LICENSE revert 2016-01-05 09:17:34 -10:00
README.md Update README.md 2016-03-04 19:11:00 -10:00
version.h.in Update splash screen 2015-12-13 11:01:32 -10:00

README.md

URDE

Status: Extract Only

Download

Precompiled builds are available at https://github.com/AxioDL/urde/releases

Platform Support

  • Windows 7+ (64-bit support only)
  • Mac OS X 10.9+
  • Linux (with recent udev, xcb, xinput, glx)
  • [Coming Soon] FreeBSD

Build Prerequisites:

Build Directions (Release)

make

git clone https://github.com/AxioDL/urde.git
mkdir urde-build
cd urde
git submodule update --init --recursive
cd ../urde-build
cmake -DCMAKE_BUILD_TYPE=Release ../urde
make

Visual Studio

Using Git Shell with GitHub for Windows

git clone https://github.com/AxioDL/urde.git
mkdir urde-build
cd urde
git submodule update --init --recursive
cd ../urde-build

Windows 7/8 users should then run:

cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Release ../urde

Windows 10 users should then run:

cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_SYSTEM_VERSION=10.0 -DCMAKE_BUILD_TYPE=Release ../urde

Then open urde.sln

Xcode

git clone https://github.com/AxioDL/urde.git
mkdir urde-build
cd urde
git submodule update --init --recursive
cd ../urde-build
cmake -G Xcode -DCMAKE_BUILD_TYPE=Release ../urde

Then open urde.xcodeproj