mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 03:24:56 +08:00
wscript: try to automatically set console subsystem flag depending on target features
Remove subsystem flag from shlibs and stlibs, it's only required for executables.
This commit is contained in:
@@ -72,5 +72,4 @@ def build(bld):
|
||||
includes = includes,
|
||||
use = libs + v['libs'],
|
||||
defines = v['defines'] + ['REF_DLL=1'],
|
||||
install_path = bld.env.LIBDIR,
|
||||
subsystem = bld.env.MSVC_SUBSYSTEM)
|
||||
install_path = bld.env.LIBDIR)
|
||||
|
||||
@@ -14,6 +14,5 @@ def build(bld):
|
||||
target = 'ref_null',
|
||||
defines = 'REF_DLL',
|
||||
use = 'engine_includes sdk_includes werror',
|
||||
install_path = bld.env.LIBDIR,
|
||||
subsystem = bld.env.MSVC_SUBSYSTEM
|
||||
install_path = bld.env.LIBDIR
|
||||
)
|
||||
|
||||
@@ -26,6 +26,5 @@ def build(bld):
|
||||
includes = '.',
|
||||
defines = 'REF_DLL=1',
|
||||
use = libs,
|
||||
install_path = bld.env.LIBDIR,
|
||||
subsystem = bld.env.MSVC_SUBSYSTEM
|
||||
install_path = bld.env.LIBDIR
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user