mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Work around check_lib not finding iconv.
This commit is contained in:
@ -1,6 +1,5 @@
|
||||
set(LIBS core
|
||||
${LZO}
|
||||
iconv
|
||||
discio
|
||||
bdisasm
|
||||
inputcommon
|
||||
@ -9,6 +8,11 @@ set(LIBS core
|
||||
z
|
||||
sfml-network
|
||||
${GTK2_LIBRARIES})
|
||||
|
||||
if(NOT ICONV)
|
||||
set(LIBS ${LIBS} iconv)
|
||||
endif()
|
||||
|
||||
if(NOT ANDROID)
|
||||
if(USE_X11)
|
||||
set(LIBS ${LIBS} ${X11_LIBRARIES}
|
||||
|
Reference in New Issue
Block a user