7 lines
141 B
Python
7 lines
141 B
Python
Import('env')
|
|
|
|
prog = env.Program(target='helloworld',
|
|
source=['main.cpp', 'foo.cpp'])
|
|
|
|
env.Install(env.installDir, prog)
|