bd37af74267c1b01964e7bc6fb31e0fe4ea65f83
[ardour.git] / libs / surfaces / wscript
1 #!/usr/bin/env python
2 import autowaf
3
4 # Version of this package (even if built as a child)
5 LIBSURFACES_VERSION = '4.1.0'
6
7 # Library version (UNIX style major, minor, micro)
8 # major increment <=> incompatible changes
9 # minor increment <=> compatible changes (additions)
10 # micro increment <=> no interface changes
11 LIBSURFACES_LIB_VERSION = '4.1.0'
12
13 # Variables for 'waf dist'
14 APPNAME = 'libsurfaces'
15 VERSION = LIBSURFACES_VERSION
16
17 # Mandatory variables
18 srcdir = '.'
19 blddir = 'build'
20
21 def set_options(opt):
22         autowaf.set_options(opt)
23
24 def configure(conf):
25         autowaf.configure(conf)
26
27 def build(bld):
28         bld.add_subdirs('control_protocol')
29         bld.add_subdirs('generic_midi')
30
31 def shutdown():
32         autowaf.shutdown()
33