You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just a quick comment: the above isn't really the shortest SConstruct possible. That would be something like this:
#create a.exe from a.c (assuming win32)
Program('a.c')
which would build a.exe from a.c using all the defaults. Notice that as of SCons 0.95 or so, you can use the default environment so you don't even need to create one separately.
-- Gary O
you're right! I'm more verbose than I thought. JohnA