mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-11-13 20:47:19 +01:00
Added threads postfix for build words.
This commit is contained in:
parent
61cfc92beb
commit
9610e56c9a
@ -354,6 +354,12 @@ Appends `debug_symbols=no` to the build command, which will strip the resulting
|
|||||||
|
|
||||||
``` scons bel_strip -j4 ```
|
``` scons bel_strip -j4 ```
|
||||||
|
|
||||||
|
##### threads
|
||||||
|
|
||||||
|
Appends `threads_enabled=yes` to the build command. Useful for building the editor for html.
|
||||||
|
|
||||||
|
``` scons bej_threads -j4 ```
|
||||||
|
|
||||||
#### Scons cache, and sdk locations
|
#### Scons cache, and sdk locations
|
||||||
|
|
||||||
In order to use scons cache and to tell the build system where some of the required sdks are located you usually
|
In order to use scons cache and to tell the build system where some of the required sdks are located you usually
|
||||||
|
@ -433,6 +433,10 @@ if len(sys.argv) > 1:
|
|||||||
build_string += 'debug_symbols=no'
|
build_string += 'debug_symbols=no'
|
||||||
build_string += ' '
|
build_string += ' '
|
||||||
|
|
||||||
|
if 'threads' in arg_split:
|
||||||
|
build_string += 'threads_enabled=yes'
|
||||||
|
build_string += ' '
|
||||||
|
|
||||||
target = ' '
|
target = ' '
|
||||||
|
|
||||||
if 'E' in arg:
|
if 'E' in arg:
|
||||||
|
Loading…
Reference in New Issue
Block a user