part two of initial libtemporal creation

This commit is contained in:
Paul Davis 2017-09-24 10:48:00 -04:00
parent b62c305f20
commit 48d402c960
7 changed files with 42 additions and 88 deletions

View file

@ -16,12 +16,12 @@ def configure(conf):
def build(bld):
bld.shlib (
source = [ 'src/time.cc', 'src/bbt_time.cc' ],
name = 'libtimecode',
target = 'timecode',
source = [ 'time.cc', 'bbt_time.cc' ],
name = 'libtemporal',
target = 'temporal',
includes = ['.'],
export_includes = ['.'],
defines = [ 'LIBTIMECODE_DLL_EXPORTS' ],
defines = [ 'LIBTEMPORAL_DLL_EXPORTS' ],
install_path = bld.env['LIBDIR']
)