diff options
| author | William Deegan <bill@baddogconsulting.com> | 2015-09-21 17:03:12 (GMT) |
|---|---|---|
| committer | William Deegan <bill@baddogconsulting.com> | 2015-09-21 17:03:12 (GMT) |
| commit | 0941093e0e5a030faa49968457638a3a6aee7ad8 (patch) | |
| tree | 6d33513c14eb6eac0531dd050de0ecca4c39bd79 /examples/src_packaging/SConstruct | |
| download | SCons-2.4.0.zip SCons-2.4.0.tar.gz SCons-2.4.0.tar.bz2 | |
release 2.4.02.4.0
Diffstat (limited to 'examples/src_packaging/SConstruct')
| -rw-r--r-- | examples/src_packaging/SConstruct | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/src_packaging/SConstruct b/examples/src_packaging/SConstruct new file mode 100644 index 0000000..1e662af --- /dev/null +++ b/examples/src_packaging/SConstruct @@ -0,0 +1,11 @@ +from glob import glob + +src_files = glob( 'src/*.c' ) +include_files = glob( 'src/*.h' ) + +SharedLibrary( 'foobar', src_files ) + +Package( projectname = 'libfoobar', + version = '1.2.3', + type = [ 'src_zip', 'src_targz', 'src_tarbz2' ], + source = FindSourceFiles() ) |
