Import('env')

prog = env.Program(target='helloworld',
                   source=['main.cpp', 'foo.cpp'])

env.Install(env.installDir, prog)
