build script: use own iconv library

fixes #13
This commit is contained in:
alexey.lysiuk 2020-08-18 12:34:31 +03:00
parent 9282653c8f
commit 20cbc532f1

View file

@ -49,6 +49,7 @@ class Target:
'glib-2.0', 'glib-2.0',
'gobject-2.0', 'gobject-2.0',
'intl', 'intl',
'iconv',
'ffi', 'ffi',
'pcre', 'pcre',
@ -62,7 +63,7 @@ class Target:
) )
linker_args = '-framework AudioUnit -framework AudioToolbox -framework Carbon ' \ linker_args = '-framework AudioUnit -framework AudioToolbox -framework Carbon ' \
'-framework CoreAudio -framework CoreMIDI -framework CoreVideo -liconv' '-framework CoreAudio -framework CoreMIDI -framework CoreVideo'
for lib in extra_libs: for lib in extra_libs:
linker_args += f' {builder.lib_path}lib{lib}.a' linker_args += f' {builder.lib_path}lib{lib}.a'