mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-04-21 22:01:19 +02:00
7 lines
291 B
Plaintext
7 lines
291 B
Plaintext
DefaultEnvironment(tools=[])
|
|
env = Environment(tools=[],
|
|
BUILDCOM=['${TEMPFILE("xxx.py -otempfile $SOURCE")}',
|
|
'${TEMPFILE("yyy.py -o$TARGET tempfile")}'],
|
|
MAXLINELENGTH=1)
|
|
env.Command('file.output', 'file.input', '$BUILDCOM')
|