X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Ftimecode%2Fwscript;h=fadeb0aebdcf19d142c834264eece2087108d40a;hb=7dfd39e708233b618c7911eb66e49625c60d4d1c;hp=0ca89403d15c4802241a29fdbee6eeaa28451e64;hpb=2e27e21d3a09889311e18a8efe11abcaa6d9c8b3;p=ardour.git diff --git a/libs/timecode/wscript b/libs/timecode/wscript index 0ca89403d1..fadeb0aebd 100644 --- a/libs/timecode/wscript +++ b/libs/timecode/wscript @@ -17,10 +17,12 @@ def configure(conf): def build(bld): bld.shlib ( source = [ 'src/time.cc', 'src/bbt_time.cc' ], - target = 'libtimecode', + name = 'libtimecode', + target = 'timecode', includes = ['.'], export_includes = ['.'], - defines = [ 'LIBTIMECODE_DLL_EXPORTS' ] + defines = [ 'LIBTIMECODE_DLL_EXPORTS' ], + install_path = bld.env['LIBDIR'] ) def shutdown():