PBD::Signal<...>::connect() is already thread safe, so drop intermediate proxy/call_s...
[ardour.git] / libs / timecode / wscript
index 0ca89403d15c4802241a29fdbee6eeaa28451e64..fadeb0aebdcf19d142c834264eece2087108d40a 100644 (file)
@@ -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():