2017-01-14 19:00:57 +07:00
|
|
|
# Reapi [/statusIcon)](http://teamcity.rehlds.org/viewType.html?buildTypeId=Reapi_Publish&guest=1) [](http://teamcity.rehlds.org/guestAuth/downloadArtifacts.html?buildTypeId=Reapi_Publish&buildId=lastSuccessful)
|
2016-03-30 17:12:54 +06:00
|
|
|
AMX Mod X module, using API regamedll & rehlds
|
2019-06-24 00:51:29 +07:00
|
|
|
|
|
|
|
## Build instructions
|
|
|
|
There are several software requirements for building ReAPI:
|
|
|
|
<ol>
|
|
|
|
<li>Java Development Kit (JDK) 7+ (http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)</li>
|
|
|
|
<li>For Windows: Visual Studio 2015 and later</li>
|
|
|
|
<li>For Linux: Intel C++ Compiler 15 and later</li>
|
|
|
|
</ol>
|
|
|
|
|
|
|
|
### Checking requirements
|
|
|
|
#### JDK version
|
|
|
|
Windows<pre>> %JAVA_HOME%\bin\javac -version
|
|
|
|
javac 1.8.0_25
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
Linux
|
|
|
|
<pre>$ javac -version
|
|
|
|
javac 1.7.0_65
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
#### Visual Studio
|
|
|
|
Help -> About
|
|
|
|
|
|
|
|
#### ICC
|
|
|
|
<pre>$ icc --version
|
|
|
|
icc (ICC) 15.0.1 20141023
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
### Building
|
|
|
|
On Windows:
|
|
|
|
<pre>gradlew clean buildRelease</pre>
|
|
|
|
|
|
|
|
On Linux (ICC):
|
|
|
|
<pre>./gradlew clean buildRelease</pre>
|
|
|
|
|
|
|
|
On Linux (GCC):
|
|
|
|
<pre>./gradlew clean -PuseGcc buildRelease</pre>
|
|
|
|
|
|
|
|
Compiled binaries will be placed in the build/binaries/ directory
|
|
|
|
|
|
|
|
## How can I help the project?
|
|
|
|
Just install it on your game server and report problems you faced.<br />
|
|
|
|
Merge requests are also welcome :shipit:
|