mirror of
https://github.com/mangosone/server
synced 2026-08-18 22:26:15 -04:00
Remove unused USE_STORMLIB directive. Thanks Pysis
This commit is contained in:
parent
2ba08ee1cf
commit
9c0068e7be
5 changed files with 2 additions and 5 deletions
2
.github/apps/ci/ci-compile.sh
vendored
2
.github/apps/ci/ci-compile.sh
vendored
|
|
@ -8,7 +8,7 @@ cd _build
|
|||
# PCH is OFF on purpose. A precompiled header supplies declarations the source never
|
||||
# named, so a green PCH build says nothing about whether a file includes what it uses --
|
||||
# and that is exactly the class of defect this CI exists to catch.
|
||||
time cmake .. -DCMAKE_INSTALL_PREFIX=../_install -DBUILD_TOOLS:BOOL=1 -DBUILD_MANGOSD:BOOL=1 -DBUILD_REALMD:BOOL=1 -DSOAP:BOOL=1 -DSCRIPT_LIB_ELUNA:BOOL=1 -DSCRIPT_LIB_SD3:BOOL=1 -DPLAYERBOTS:BOOL=0 -DUSE_STORMLIB:BOOL=1 -DPCH:BOOL=0
|
||||
time cmake .. -DCMAKE_INSTALL_PREFIX=../_install -DBUILD_TOOLS:BOOL=1 -DBUILD_MANGOSD:BOOL=1 -DBUILD_REALMD:BOOL=1 -DSOAP:BOOL=1 -DSCRIPT_LIB_ELUNA:BOOL=1 -DSCRIPT_LIB_SD3:BOOL=1 -DPLAYERBOTS:BOOL=1 -DPCH:BOOL=0
|
||||
|
||||
time make -j $(nproc)
|
||||
time make install
|
||||
|
|
|
|||
1
.github/workflows/core_linux_build.yml
vendored
1
.github/workflows/core_linux_build.yml
vendored
|
|
@ -73,7 +73,6 @@ jobs:
|
|||
-DSCRIPT_LIB_ELUNA=1
|
||||
-DSCRIPT_LIB_SD3=1
|
||||
-DPLAYERBOTS=1
|
||||
-DUSE_STORMLIB=1
|
||||
-DPCH=0
|
||||
|
||||
- name: Build
|
||||
|
|
|
|||
1
.github/workflows/core_windows_build.yml
vendored
1
.github/workflows/core_windows_build.yml
vendored
|
|
@ -129,7 +129,6 @@ jobs:
|
|||
-DSCRIPT_LIB_ELUNA=1
|
||||
-DSCRIPT_LIB_SD3=1
|
||||
-DPLAYERBOTS=1
|
||||
-DUSE_STORMLIB=1
|
||||
-DPCH=1
|
||||
|
||||
- name: Build
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ mkdir -p _build _install && cd _build
|
|||
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../_install \
|
||||
-DBUILD_TOOLS=0 -DBUILD_MANGOSD=1 -DBUILD_REALMD=1 -DSOAP=1 \
|
||||
-DSCRIPT_LIB_ELUNA=1 -DSCRIPT_LIB_SD3=1 -DPLAYERBOTS=1 \
|
||||
-DUSE_STORMLIB=1 -DPCH=0
|
||||
-DPCH=0
|
||||
make -j"$(nproc)" && make install -j"$(nproc)"
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -86,7 +86,6 @@ message(
|
|||
BUILD_MANGOSD Build the main server
|
||||
BUILD_REALMD Build the login server
|
||||
BUILD_TOOLS Build the client-data extractor
|
||||
USE_STORMLIB Use StormLib for reading MPQs
|
||||
SOAP Enable remote access via SOAP
|
||||
PCH Enable use of precompiled headers
|
||||
WITH_TESTS Build the unit tests (target: mangos_tests)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue