Files
scons-presentation/execEx/03/SConscript
2017-09-27 00:56:48 -05:00

7 lines
141 B
Python

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