mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-03-12 18:38:59 +01:00
13 lines
249 B
Plaintext
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",
|
||
|
}
|
||
|
)
|