13
0

fix a related-to-last-commit problem in build script for OSC support

This would have had the effect of hiding -DPACKAGE="ardour_osc" but since there is no i18n stuff in our OSC support,
it really had no effect.
This commit is contained in:
Paul Davis 2014-03-01 16:58:22 -05:00
parent 560c667ea9
commit 03fd396286

View File

@ -27,10 +27,10 @@ def build(bld):
interface.cc
'''
obj.export_includes = ['.']
obj.defines = [ 'PACKAGE="ardour_osc"' ]
obj.defines = [ 'PACKAGE="ardour_osc"' ]
obj.defines += [ 'ARDOURSURFACE_DLL_EXPORTS' ]
obj.includes = ['.', './osc']
obj.name = 'libardour_osc'
obj.defines = [ 'ARDOURSURFACE_DLL_EXPORTS' ]
obj.target = 'ardour_osc'
obj.uselib = ' LO '
obj.use = 'libardour libardour_cp libpbd'