We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Program()
Tells SCons to build an executable given a list of sources. A very simple example is
#!python ## Beginning of script sources = [ "foo.c", "bar.c" ]; Program( 'my_program', sources );
On Unix the resulting program will be 'my_program', on Windows the resulting program will be 'my_program.exe'.