mirror of https://github.com/AxioDL/metaforce.git
bba30a25bf | ||
---|---|---|
DataSpec | ||
Editor | ||
Runtime | ||
hecl@f1f3bb641d | ||
nod@473607ebe7 | ||
specter@ba1b4ecc51 | ||
.gitignore | ||
.gitmodules | ||
CMakeLists.txt | ||
LICENSE | ||
README.md | ||
version.h.in |
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:
- CMake 3+
- Python 3+
- LLVM
- Visual Studio 2015 and Windows SDK (Windows builders)
- Xcode Tools (Mac builders)
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