diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/MSVC/hierarchical.py | 4 | ||||
-rw-r--r-- | test/MSVC/msvc.py | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/test/MSVC/hierarchical.py b/test/MSVC/hierarchical.py index 6b4f007..f130806 100644 --- a/test/MSVC/hierarchical.py +++ b/test/MSVC/hierarchical.py @@ -49,7 +49,9 @@ SConscript('build/SConscript') test.write('src/SConscript',""" import os -env = Environment() +# TODO: this is order-dependent (putting 'mssdk' second or third breaks), +# and ideally we shouldn't need to specify the tools= list anyway. +env = Environment(tools=['mssdk', 'msvc', 'mslink']) env.Append(CPPPATH=os.environ.get('INCLUDE', ''), LIBPATH=os.environ.get('LIB', '')) env['PCH'] = 'StdAfx.pch' diff --git a/test/MSVC/msvc.py b/test/MSVC/msvc.py index e28a87f..106aed9 100644 --- a/test/MSVC/msvc.py +++ b/test/MSVC/msvc.py @@ -45,7 +45,9 @@ if sys.platform != 'win32': test.write('SConstruct',""" import os -env = Environment() +# TODO: this is order-dependent (putting 'mssdk' second or third breaks), +# and ideally we shouldn't need to specify the tools= list anyway. +env = Environment(tools=['mssdk', 'msvc', 'mslink']) env.Append(CPPPATH=os.environ.get('INCLUDE', ''), LIBPATH=os.environ.get('LIB', ''), CCFLAGS='/DPCHDEF') |