first pass at integrating nutempo v1 with new 64 bit superclock/ticks representation

This compiles libtemporal, but nothing more
This commit is contained in:
Paul Davis
2020-07-23 11:21:53 -06:00
parent e0b5b12129
commit a80960468d
7 changed files with 1227 additions and 155 deletions

View File

@@ -24,7 +24,7 @@ APPNAME = 'temporal'
VERSION = TEMPORAL_VERSION
I18N_PACKAGE = 'libtemporal'
temporal_sources = [ 'time.cc', 'bbt_time.cc' ]
temporal_sources = [ 'time.cc', 'bbt_time.cc', 'tempo.cc' ]
def options(opt):
autowaf.set_options(opt)
@@ -50,7 +50,9 @@ def build(bld):
obj.target = 'temporal'
obj.vnum = TEMPORAL_LIB_VERSION
obj.install_path = bld.env['LIBDIR']
obj.defines += [ 'PACKAGE="' + I18N_PACKAGE + '"' ]
obj.defines += [ 'PACKAGE="' + I18N_PACKAGE + '"' ]
obj.uselib = [ 'GLIBMM', 'XML' ]
obj.use = [ 'libpbd' ]
def shutdown():
autowaf.shutdown()