David Robillard
3ae378a17c
git-svn-id: svn://localhost/ardour2/branches/3.0@4991 d708f5d6-7413-0410-9779-e7cbd77b26cf
47 lines
1.0 KiB
Python
47 lines
1.0 KiB
Python
#!/usr/bin/env python
|
|
import autowaf
|
|
import os
|
|
|
|
# Version of this package (even if built as a child)
|
|
LIBSURFACES_VERSION = '4.1.0'
|
|
|
|
# Library version (UNIX style major, minor, micro)
|
|
# major increment <=> incompatible changes
|
|
# minor increment <=> compatible changes (additions)
|
|
# micro increment <=> no interface changes
|
|
LIBSURFACES_LIB_VERSION = '4.1.0'
|
|
|
|
# Variables for 'waf dist'
|
|
APPNAME = 'libsurfaces'
|
|
VERSION = LIBSURFACES_VERSION
|
|
|
|
# Mandatory variables
|
|
srcdir = '.'
|
|
blddir = 'build'
|
|
|
|
def set_options(opt):
|
|
autowaf.set_options(opt)
|
|
|
|
def configure(conf):
|
|
autowaf.configure(conf)
|
|
|
|
def build(bld):
|
|
obj = bld.new_task_gen('cxx', 'shlib')
|
|
obj.source = '''
|
|
osc.cc
|
|
osc_controllable.cc
|
|
interface.cc
|
|
'''
|
|
obj.export_incdirs = ['./osc']
|
|
obj.cxxflags = '-DPACKAGE="ardour_cp"'
|
|
obj.includes = ['.', './osc']
|
|
obj.name = 'libsurfaces'
|
|
obj.target = 'surfaces'
|
|
obj.uselib_local = 'libardour'
|
|
obj.vnum = LIBSURFACES_LIB_VERSION
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
|
|
|
|
def shutdown():
|
|
autowaf.shutdown()
|
|
|