Files
scons-presentation/execEx/04/SConstruct
2021-04-25 12:23:20 -05:00

10 lines
146 B
Python

env = Environment(tools=['default', 'cpythongen'])
hello = File('helloworld.py')
env.InstallPython('bin', hello)
env.Alias('install', 'bin')