I just look at documentation - scons simple example and it does not work for me.
First file: main.cpp
#include <iostream>
int main()
{
std::cout << "Hello World" << std::endl;
return 0;
}
Second file: SCons SConstruct
Program('main.cpp')
Result:
scons: Reading SConscript files ...
scons: done reading SConscript
files. scons: Building targets ...
cl /Fomain.obj /c main.cpp /TP /nologo
"cl" is not an internal or external command, operable program or batch file.
scons: *** [main.obj] Error 1 scons:
building terminated because of errors.
I tried this on Window 7 with Visual Studio Express 2012, scons 2.3 Any help?