mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Waf: build control surfaces.
git-svn-id: svn://localhost/ardour2/branches/3.0@4695 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
58febcbacb
commit
0a61e3893d
9 changed files with 348 additions and 27 deletions
38
libs/surfaces/control_protocol/wscript
Normal file
38
libs/surfaces/control_protocol/wscript
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
#!/usr/bin/env python
|
||||
import autowaf
|
||||
|
||||
# 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'
|
||||
|
||||
# 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 = '''
|
||||
basic_ui.cc
|
||||
control_protocol.cc
|
||||
smpte.cc
|
||||
'''
|
||||
obj.export_incdirs = ['.']
|
||||
obj.cxxflags = '-DPACKAGE=\\\"ardour_cp\\\"'
|
||||
obj.includes = ['.']
|
||||
obj.name = 'libsurfaces'
|
||||
obj.target = 'surfaces'
|
||||
obj.uselib_local = 'libardour'
|
||||
obj.vnum = LIBSURFACES_LIB_VERSION
|
||||
obj.install_path = ''
|
||||
|
||||
def shutdown():
|
||||
autowaf.shutdown()
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue