allow hardour to build even when --exports-hidden is used with waf configure

This commit is contained in:
Paul Davis 2014-03-01 16:17:58 -05:00
parent c626e83a64
commit 952aeea4e9
1 changed files with 2 additions and 0 deletions

View File

@ -35,6 +35,8 @@ def build(bld):
# just the normal executable version of the GTK GUI
obj = bld (features = 'cxx c cxxprogram')
# this program does not do the whole hidden symbols thing
obj.cxxflags = [ '-fvisibility=default' ]
obj.source = hardour_sources
obj.target = 'hardour-' + bld.env['VERSION']
obj.includes = ['.']