~libbls/libbls/libbls-package

« back to all changes in this revision

Viewing changes to src/wscript_build

  • Committer: Alexandros Frantzis
  • Date: 2011-10-01 10:10:46 UTC
  • Revision ID: alf82@freemail.gr-20111001101046-etz52jurwzwc007x
Tags: upstream-0.3.2
ImportĀ upstreamĀ versionĀ 0.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import Options
 
2
 
 
3
lib = bld(
 
4
                features     = ['c', 'cshlib'],
 
5
                source       = bld.path.ant_glob('*.c'),
 
6
                target       = 'bls-%s' % bld.env.LIBBLS_VERSION_NO_PATCH,
 
7
                vnum         = bld.env.LIBBLS_VERSION,
 
8
                export_includes = '.'
 
9
                )
 
10
 
 
11
bld.install_files('${INCLUDEDIR}/bls-${LIBBLS_VERSION_NO_PATCH}/bls',
 
12
                ['buffer.h','buffer_source.h','buffer_options.h', 'buffer_event.h'])
 
13