mirror of
https://github.com/rehlds/metamod-r.git
synced 2024-12-26 06:35:33 +03:00
12 KiB
12 KiB
metamod-r
Metamod-r is based on original Metamod by Will Day for Half-Life 1 with some improvements by Jussi Kivilinna. It contains a huge number of performance optimizations and much cleaner code. The core was written using the JIT compiler.
Supported games
❌ - OS is not supported ✔️ - OS is supported
Build instructions
There are several software requirements for building rehlds:
- Java Development Kit (JDK) 7+ (http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)
- For Windows: Visual Studio 2015 and later
- For Linux: Intel C++ Compiler 13 and later
Checking requirements
JDK version
Windows
> %JAVA_HOME%\bin\javac -version javac 1.8.0_25
Linux
$ javac -version javac 1.7.0_65
Visual Studio
Help -> About
ICC
$ icc --version icc (ICC) 15.0.1 20141023
Building
On Windows:
gradlew --max-workers=1 clean buildRelease
On Linux (ICC):
./gradlew --max-workers=1 clean buildRelease