2010-12-13 15:46:07 -05:00
|
|
|
#!/usr/bin/env python
|
2011-09-29 15:17:54 -04:00
|
|
|
from waflib.extras import autowaf as autowaf
|
2011-09-29 15:58:05 -04:00
|
|
|
from waflib import Options
|
2010-12-13 15:46:07 -05:00
|
|
|
import os
|
|
|
|
|
|
|
|
# Version of this package (even if built as a child)
|
2010-12-14 13:13:37 -05:00
|
|
|
TIMECODE_VERSION = '0.0.0'
|
2010-12-13 15:46:07 -05:00
|
|
|
|
|
|
|
# Library version (UNIX style major, minor, micro)
|
|
|
|
# major increment <=> incompatible changes
|
|
|
|
# minor increment <=> compatible changes (additions)
|
|
|
|
# micro increment <=> no interface changes
|
|
|
|
# Version history:
|
|
|
|
# 0.0.0 = 0,0,0
|
2010-12-14 13:13:37 -05:00
|
|
|
TIMECODE_LIB_VERSION = '0.0.0'
|
2010-12-13 15:46:07 -05:00
|
|
|
|
|
|
|
# Variables for 'waf dist'
|
2010-12-14 13:13:37 -05:00
|
|
|
APPNAME = 'timecode'
|
|
|
|
VERSION = TIMECODE_VERSION
|
2010-12-13 15:46:07 -05:00
|
|
|
|
|
|
|
# Mandatory variables
|
2011-09-29 15:17:54 -04:00
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
2010-12-13 15:46:07 -05:00
|
|
|
|
2011-09-29 15:17:54 -04:00
|
|
|
def options(opt):
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.set_options(opt)
|
2010-12-13 15:46:07 -05:00
|
|
|
|
|
|
|
def configure(conf):
|
2011-09-29 15:58:05 -04:00
|
|
|
conf.load('compiler_cxx')
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.configure(conf)
|
2010-12-13 15:46:07 -05:00
|
|
|
|
|
|
|
def build(bld):
|
2011-04-22 18:15:21 -04:00
|
|
|
# Library
|
2011-09-29 15:17:54 -04:00
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.source = [ 'src/time.cc', 'src/bbt_time.cc' ]
|
2011-09-29 15:17:54 -04:00
|
|
|
obj.export_includes = ['.']
|
2011-04-22 18:15:21 -04:00
|
|
|
obj.includes = ['.', './src']
|
|
|
|
obj.name = 'libtimecode'
|
|
|
|
obj.target = 'timecode'
|
|
|
|
obj.vnum = TIMECODE_LIB_VERSION
|
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
|
2010-12-13 15:46:07 -05:00
|
|
|
|
|
|
|
def shutdown():
|
2011-04-22 18:15:21 -04:00
|
|
|
autowaf.shutdown()
|