mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-03-24 19:26:41 +01:00
26 lines
861 B
Python
26 lines
861 B
Python
DefaultEnvironment(tools=[])
|
|
|
|
env = Environment(tools=['textfile'])
|
|
data0 = ['Goethe', 'Schiller']
|
|
data = ['lalala', 42, data0, 'tanteratei']
|
|
|
|
env.Textfile('foo1', data)
|
|
env.Textfile('foo2', data, LINESEPARATOR='|*')
|
|
env.Textfile('foo1a.txt', data + [''])
|
|
env.Textfile('foo2a.txt', data + [''], LINESEPARATOR='|*')
|
|
|
|
issue_4021_textfile = r'<HintPath>..\..\..\@HINT_PATH@\Datalogics.PDFL.dll</HintPath>'
|
|
env.Textfile('issue-4021.txt', issue_4021_textfile,
|
|
SUBST_DICT={'@HINT_PATH@': r'NETCore\bin\$$(Platform)\$$(Configuration)'})
|
|
|
|
# recreate the list with the data wrapped in Value()
|
|
data0 = list(map(Value, data0))
|
|
data = list(map(Value, data))
|
|
data[2] = data0
|
|
|
|
env.Substfile('bar1', data)
|
|
env.Substfile('bar2', data, LINESEPARATOR='|*')
|
|
data.append(Value(''))
|
|
env.Substfile('bar1a.txt', data)
|
|
env.Substfile('bar2a.txt', data, LINESEPARATOR='|*')
|