Finish 3rd example

This commit is contained in:
Bassem Girgis
2017-09-27 00:55:23 -05:00
parent 82a38a0c1f
commit 799fc1a2b1
13 changed files with 94 additions and 52 deletions

6
execEx/03/SConscript Normal file
View File

@@ -0,0 +1,6 @@
Import('env')
prog = env.Program(target='helloworld',
source=['main.cpp', 'foo.cpp'])
env.Install(env.installDir, prog)