Resolve duplicate symbol 'cocoa_open_uri' on OSX builds.
cocoa_open_uri.mm was being added to the source list twice and also compiling twice. This patch enusres it is only added once.
This commit is contained in:
parent
23f738c699
commit
71c26e2820
@ -128,12 +128,13 @@ def build(bld):
|
||||
obj.uselib = 'GLIBMM SIGCPP XML UUID SNDFILE GIOMM'
|
||||
if sys.platform == 'darwin':
|
||||
TaskGen.task_gen.mappings['.mm'] = TaskGen.task_gen.mappings['.cc']
|
||||
obj.source += [ 'cocoa_open_uri.mm' ]
|
||||
if 'cocoa_open_uri.mm' not in obj.source:
|
||||
obj.source += [ 'cocoa_open_uri.mm' ]
|
||||
obj.uselib += ' OSX'
|
||||
obj.vnum = LIBPBD_LIB_VERSION
|
||||
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3')
|
||||
obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"']
|
||||
|
||||
|
||||
if bld.env['build_target'] == 'x86_64':
|
||||
obj.defines += [ 'USE_X86_64_ASM' ]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user