diff --git a/Compilling-metamod-r.md b/Compilling-metamod-r.md index b6bfb98..69d422c 100644 --- a/Compilling-metamod-r.md +++ b/Compilling-metamod-r.md @@ -1 +1,35 @@ -## [](https://github.com/EpicMorgGames/metamod-r-game-tests/wiki/English-version) Back \ No newline at end of file +## [](https://github.com/EpicMorgGames/metamod-r-game-tests/wiki/English-version) Back + +## Build instructions +There are several software requirements for building rehlds: + +1. [Java Development Kit \ JDK 7+](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) +1. For Windows: [Visual Studio 2015](https://www.visualstudio.com/vs/older-downloads/) and [later](https://www.visualstudio.com/downloads/) +1. For Linux: [Intel C++ Compiler 13](https://software.intel.com/en-us/c-compilers) 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\ No newline at end of file