-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add option to build a server lib with increased limits
the MAX_PHYSENTS change breaks compatibility with the client engine. In order to raise this limit for a dedicated server, both rehlds and the server library need to be compiled with -DINCREASED_SERVER_LIMITS.
- Loading branch information
Showing
9 changed files
with
48 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
@echo off | ||
cls | ||
|
||
:: run from the location of this script | ||
cd %~dp0 | ||
cd .. | ||
|
||
mkdir build | ||
cd build | ||
cmake -A Win32 -DBUILD_SERVER=ON .. | ||
cmake --build . --config Release | ||
|
||
@echo off | ||
cls | ||
|
||
:: run from the location of this script | ||
cd %~dp0 | ||
cd .. | ||
|
||
mkdir build | ||
cd build | ||
cmake -A Win32 -DBUILD_SERVER=ON -DINCREASED_SERVER_LIMITS=OFF .. | ||
cmake --build . --config Release | ||
|
||
echo. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
@echo off | ||
cls | ||
|
||
:: run from the location of this script | ||
cd %~dp0 | ||
cd .. | ||
|
||
mkdir build | ||
cd build | ||
cmake -A Win32 -DBUILD_SERVER=ON -DBUILD_PLUGINS=ON -DUPDATE_PLUGINS=ON .. | ||
cmake --build . --config Release | ||
|
||
echo. | ||
@echo off | ||
cls | ||
|
||
:: run from the location of this script | ||
cd %~dp0 | ||
cd .. | ||
|
||
mkdir build | ||
cd build | ||
cmake -A Win32 -DBUILD_SERVER=ON -DBUILD_PLUGINS=ON -DUPDATE_PLUGINS=ON -DINCREASED_SERVER_LIMITS=OFF .. | ||
cmake --build . --config Release | ||
|
||
echo. | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
@echo off | ||
cls | ||
|
||
:: run from the location of this script | ||
cd %~dp0 | ||
cd .. | ||
|
||
mkdir msvc | ||
cd msvc | ||
cmake -A Win32 -DBUILD_CLIENT=ON -DBUILD_SERVER=ON -DBUILD_PLUGINS=ON -DSETUP_IDE=ON .. | ||
cmake-gui | ||
|
||
@echo off | ||
cls | ||
|
||
:: run from the location of this script | ||
cd %~dp0 | ||
cd .. | ||
|
||
mkdir msvc | ||
cd msvc | ||
cmake -A Win32 -DBUILD_CLIENT=ON -DBUILD_SERVER=ON -DBUILD_PLUGINS=ON -DSETUP_IDE=ON -DINCREASED_SERVER_LIMITS=OFF .. | ||
cmake-gui | ||
|
||
echo. |