David Robillard
0a61e3893d
git-svn-id: svn://localhost/ardour2/branches/3.0@4695 d708f5d6-7413-0410-9779-e7cbd77b26cf
34 lines
703 B
Python
34 lines
703 B
Python
#!/usr/bin/env python
|
|
import autowaf
|
|
|
|
# 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):
|
|
bld.add_subdirs('control_protocol')
|
|
bld.add_subdirs('generic_midi')
|
|
|
|
def shutdown():
|
|
autowaf.shutdown()
|
|
|