mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-20 17:24:23 +01:00
10 lines
254 B
Python
10 lines
254 B
Python
env = Environment(tools=['default', 'packaging'])
|
|
prog = env.Install( 'bin/', ["f1", "f2"] )
|
|
env.File( "f3" )
|
|
|
|
src_files = sorted(map(str, env.FindSourceFiles()))
|
|
oth_files = sorted(map(str, env.FindInstalledFiles()))
|
|
|
|
print(src_files)
|
|
print(oth_files)
|