|
Size: 561
Comment:
|
← Revision 27 as of 2008-03-12 02:47:02 ⇥
Size: 561
Comment: converted to 1.6 markup
|
| No differences found! | |
- Author: JohnA
- OS: Win2K
- Tools: msvc
Note: these are my first SCONS trys, there are probably better ways of doing them
This is the shortest SConstruct for creating an executable. This is even simpler than SconstructShortMingwWin32
#need glob to get source files
import glob
#create an environment
env = Environment()
#target us myprogram.exe
#source is a list of source files
env.Program(target='myprogram', source = glob.glob('*.cpp'))errata: do not need Split() around glob, i.e. source can be a list
