GEMC  2.3
Geant4 Monte-Carlo Framework
SConstruct
Go to the documentation of this file.
1 
2 env = Environment(tools=['default'])
3 
4 sources = Split("""example.cc bst_strip.cc fst_strip.cc""")
5 Target = 'example'
6 
7 env.Program(source = sources, target = Target)
8