mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-12 07:58:05 +00:00
Update README.md.
This commit is contained in:
parent
881f013742
commit
61a16bc8aa
19
README.md
19
README.md
@ -318,20 +318,33 @@ cmake -B build -S .
|
|||||||
cmake --build build
|
cmake --build build
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Force 64-bit build:
|
||||||
|
```
|
||||||
|
cmake -D64BIT=1 -B build -S .
|
||||||
|
cmake --build build
|
||||||
|
```
|
||||||
|
|
||||||
### Building with waf
|
### Building with waf
|
||||||
|
|
||||||
To use waf, you need to install python (2.7 minimum)
|
To use waf, you need to install python (2.7 minimum)
|
||||||
|
|
||||||
```
|
```
|
||||||
(./waf configure -T release)
|
./waf configure -T release
|
||||||
(./waf)
|
./waf
|
||||||
|
```
|
||||||
|
|
||||||
|
Force 64-bit build:
|
||||||
|
```
|
||||||
|
./waf configure -T release -8
|
||||||
|
./waf
|
||||||
```
|
```
|
||||||
|
|
||||||
## Build options
|
## Build options
|
||||||
|
|
||||||
Some useful build options that can be set during the cmake step.
|
Some useful build options that can be set during the cmake step.
|
||||||
|
|
||||||
* **GOLDSOURCE_SUPPORT** - allows to turn off/on the support for GoldSource input. Set to **ON** by default on Windows and Linux, **OFF** on other platforms.
|
* **GOLDSOURCE_SUPPORT** - allows to turn off/on the support for GoldSource input. Set to **ON** by default on Windows, Linux and MacOS, **OFF** on other platforms.
|
||||||
|
* **64BIT** - allows to turn off/on 64-bit build. Set to **OFF** by default on x86_64 Windows, x86_64 Linux and 32-bit platforms, **ON** on other 64-bit platforms.
|
||||||
* **USE_VGUI** - whether to use VGUI library. **OFF** by default. You need to init `vgui_support` submodule in order to build with VGUI.
|
* **USE_VGUI** - whether to use VGUI library. **OFF** by default. You need to init `vgui_support` submodule in order to build with VGUI.
|
||||||
|
|
||||||
This list is incomplete. Look at `CMakeLists.txt` to see all available options.
|
This list is incomplete. Look at `CMakeLists.txt` to see all available options.
|
||||||
|
Loading…
Reference in New Issue
Block a user