remove hardcoded major version in build scripts

This commit is contained in:
Robin Gareus 2015-01-08 16:57:46 +01:00
parent 7985624037
commit 659c0d093d
4 changed files with 36 additions and 18 deletions

View file

@ -21,7 +21,8 @@ def build(bld):
target = 'timecode',
includes = ['.'],
export_includes = ['.'],
defines = [ 'LIBTIMECODE_DLL_EXPORTS' ]
defines = [ 'LIBTIMECODE_DLL_EXPORTS' ],
install_path = bld.env['LIBDIR']
)
def shutdown():