Issue 2537: fix typos in the man page. (Luca Faravigna)
[scons.git] / examples / src_packaging / SConstruct
1 from glob import glob
2
3 src_files = glob( 'src/*.c' )
4 include_files = glob( 'src/*.h' )
5
6 SharedLibrary( 'foobar', src_files )
7
8 Package( projectname = 'libfoobar',
9          version     = '1.2.3',
10          type        = [ 'src_zip', 'src_targz', 'src_tarbz2' ],
11          source      = FindSourceFiles() )