2009-02-25 16:48:32 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import autowaf
|
|
|
|
|
|
|
|
# Version of this package (even if built as a child)
|
2009-02-26 19:27:14 -05:00
|
|
|
LIBSURFACES_VERSION = '4.1.0'
|
2009-02-25 16:48:32 -05:00
|
|
|
|
|
|
|
# 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):
|
2009-02-26 19:27:14 -05:00
|
|
|
bld.add_subdirs('control_protocol')
|
|
|
|
bld.add_subdirs('generic_midi')
|
2009-05-04 18:10:15 -04:00
|
|
|
|
2009-02-25 16:48:32 -05:00
|
|
|
def shutdown():
|
|
|
|
autowaf.shutdown()
|
|
|
|
|