scons_gd/scons/test/textfile/fixture/SConstruct.issue-3550
2022-10-15 16:06:26 +02:00

13 lines
249 B
Plaintext

DefaultEnvironment(tools=[])
env = Environment(tools=['textfile'])
env['FOO_PATH'] = r'Z:\mongo\build\install\bin'
foo = env.Substfile(
target="substfile",
source="substfile.in",
SUBST_DICT={
"@foo_path@": "$FOO_PATH",
}
)