10 lines
146 B
Python
10 lines
146 B
Python
|
|
env = Environment(tools=['default', 'cpythongen'])
|
|
|
|
hello = File('helloworld.py')
|
|
|
|
env.InstallPython('bin', hello)
|
|
|
|
env.Alias('install', 'bin')
|
|
|