X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fwscript;h=6f872c987f301441c2ebe7518e3037403d7bd25e;hb=d13435a4e1d0e85654a8477ae99a7b41ff621159;hp=2d832669d18ae9951771a702230e4fb60ea5f7ad;hpb=cd05d46c007583a27be23e2ae8cedc5ea9746373;p=ardour.git diff --git a/libs/pbd/wscript b/libs/pbd/wscript index 2d832669d1..6f872c987f 100644 --- a/libs/pbd/wscript +++ b/libs/pbd/wscript @@ -37,10 +37,10 @@ libpbd_sources = [ 'configuration_variable.cc', 'convert.cc', 'controllable.cc', - 'controllable_descriptor.cc', 'crossthread.cc', 'cpus.cc', 'debug.cc', + 'demangle.cc', 'enumwriter.cc', 'event_loop.cc', 'enums.cc', @@ -49,7 +49,6 @@ libpbd_sources = [ 'ffs.cc', 'file_utils.cc', 'fpu.cc', - 'glib_semaphore.cc', 'id.cc', 'locale_guard.cc', 'localtime_r.cc', @@ -62,6 +61,7 @@ libpbd_sources = [ 'pool.cc', 'property_list.cc', 'pthread_utils.cc', + 'reallocpool.cc', 'receiver.cc', 'resource.cc', 'search_path.cc', @@ -77,6 +77,7 @@ libpbd_sources = [ 'textreceiver.cc', 'timer.cc', 'timing.cc', + 'tlsf.cc', 'transmitter.cc', 'undo.cc', 'uuid.cc', @@ -114,7 +115,7 @@ def configure(conf): def build(bld): # Make signals_generated.h using signals.py - bld(rule = 'python ${SRC} ${TGT}', source = 'pbd/signals.py', target = 'pbd/signals_generated.h') + bld(rule = sys.executable + ' ${SRC} ${TGT}', source = 'pbd/signals.py', target = 'pbd/signals_generated.h') # Library if bld.is_defined ('INTERNAL_SHARED_LIBS'): @@ -149,6 +150,7 @@ def build(bld): obj.defines += [ 'NO_POSIX_MEMALIGN' ] obj.source += [ 'windows_special_dirs.cc' ] obj.source += [ 'windows_timer_utils.cc' ] + obj.source += [ 'windows_mmcss.cc' ] obj.uselib += ' OLE' if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'): @@ -162,6 +164,8 @@ def build(bld): test/signals_test.cc test/convert_test.cc test/filesystem_test.cc + test/natsort_test.cc + test/reallocpool_test.cc test/xml_test.cc test/test_common.cc '''.split() @@ -175,6 +179,6 @@ def build(bld): testobj.defines = [ 'PACKAGE="' + I18N_PACKAGE + '"' ] if sys.platform != 'darwin' and bld.env['build_target'] != 'mingw': testobj.linkflags = ['-lrt'] - + def shutdown(): autowaf.shutdown()