David Robillard
214a31bb98
* Install ardour3_ui_default.conf to system config dir * Set -DDATA_DIR etc. defines to proper absolute paths * Set default MIDI control port name to "control" (it was "control" some places, "default" other, so the generic MIDI control surface didn't work. The real problem here is probably that the name is hardcoded in the surface code, ick) * Install surfaces to correct system directory * Generate and install ardour_system.rc User POV: * Installed versions not run from the source directory discover configuration files and surfaces, and generally work * Building and/or starting a fresh copy of ardour3 with no pre-existing configuration will run an ardour with a single MIDI "control" port, which you can plug a surface into and control MMC and controllers and such (after turning on the generic MIDI surface, which IMO should be loaded by default anyway, especially since it's no longer in a menu) git-svn-id: svn://localhost/ardour2/branches/3.0@5833 d708f5d6-7413-0410-9779-e7cbd77b26cf
42 lines
1020 B
Python
42 lines
1020 B
Python
#!/usr/bin/env python
|
|
import autowaf
|
|
import os
|
|
|
|
# Library version (UNIX style major, minor, micro)
|
|
# major increment <=> incompatible changes
|
|
# minor increment <=> compatible changes (additions)
|
|
# micro increment <=> no interface changes
|
|
LIBARDOUR_OSC_LIB_VERSION = '4.1.0'
|
|
|
|
# Mandatory variables
|
|
srcdir = '.'
|
|
blddir = 'build'
|
|
|
|
def set_options(opt):
|
|
autowaf.set_options(opt)
|
|
|
|
def configure(conf):
|
|
autowaf.configure(conf)
|
|
autowaf.check_pkg(conf, 'liblo', uselib_store='LO', linkflags='-llo')
|
|
|
|
def build(bld):
|
|
obj = bld.new_task_gen('cxx', 'shlib')
|
|
obj.source = '''
|
|
osc.cc
|
|
osc_controllable.cc
|
|
interface.cc
|
|
'''
|
|
obj.export_incdirs = ['.']
|
|
obj.cxxflags = '-DPACKAGE="ardour_cp"'
|
|
obj.includes = ['.', './osc']
|
|
obj.name = 'libardour_osc'
|
|
obj.target = 'osc'
|
|
obj.uselib = ' LO '
|
|
obj.uselib_local = 'libardour libardour_cp'
|
|
obj.vnum = LIBARDOUR_OSC_LIB_VERSION
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3', 'surfaces')
|
|
|
|
def shutdown():
|
|
autowaf.shutdown()
|
|
|