I am following the directions on https://github.com/TideSDK/TideSDK/wiki/Windows7-x86-2010-Express, but when running:
scons debug=1
I get errors about SCons not being able to find cl so I added the following to SContruct:
if build.is_win32():
subprocess.call(path_to_vcvars32.bat)
But I am still getting the error:
'cl' is not recognized as an internal or external command,
operable program or batch file.
scons: *** [build\win32\objs\installer\common.obj] Error 1
Any thoughts on why SCons can't find cl?