scons_gd/scons/test/MSVC/MSVC_BATCH-spaces-targetdir/SConstruct
2022-10-15 16:06:26 +02:00

9 lines
196 B
Python

import os.path
env=Environment(MSVC_BATCH=True)
td='tar ge tdir'
VariantDir(td,'src')
env.Program(os.path.join(td,'test_program'),
[os.path.join(td,a) for a in ['a.c','b.c','c.c']])