Revert "wscript: disable /showIncludes based msvcdeps for now, it causes issues with non-English locales"

Add option --enable-msvcdeps that we only enable on CI.

This reverts commit e58007aab3.
This commit is contained in:
Alibek Omarov
2025-01-10 21:48:43 +03:00
parent f2fb668c9e
commit a7b776f3b9
2 changed files with 6 additions and 1 deletions

View File

@@ -162,6 +162,7 @@ def options(opt):
# a1ba: special option for me
grp.add_option('--debug-all-servers', action='store_true', dest='ALL_SERVERS', default=False, help='')
grp.add_option('--enable-msvcdeps', action='store_true', dest='MSVCDEPS', default=False, help='')
grp = opt.add_option_group('Renderers options')
@@ -200,6 +201,9 @@ def configure(conf):
# Load compilers early
conf.load('xshlib xcompile compiler_c compiler_cxx gccdeps')
if conf.options.MSVCDEPS:
conf.load('msvcdeps')
if conf.options.NSWITCH:
conf.load('nswitch')