mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
Fix a bug in the Common CMakeLists file
We were overwriting the LIBS variable. Effectively dropping libiconv from the libs.
This commit is contained in:
@ -42,7 +42,7 @@ else()
|
|||||||
Logging/ConsoleListenerNix.cpp)
|
Logging/ConsoleListenerNix.cpp)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(LIBS enet)
|
list(APPEND LIBS enet)
|
||||||
if(_M_ARM_64)
|
if(_M_ARM_64)
|
||||||
set(SRCS ${SRCS}
|
set(SRCS ${SRCS}
|
||||||
Arm64Emitter.cpp
|
Arm64Emitter.cpp
|
||||||
@ -60,13 +60,13 @@ else()
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(LIBS "${CMAKE_THREAD_LIBS_INIT}" ${VTUNE_LIBRARIES})
|
list(APPEND LIBS "${CMAKE_THREAD_LIBS_INIT}" ${VTUNE_LIBRARIES})
|
||||||
if(NOT APPLE AND NOT ANDROID)
|
if(NOT APPLE AND NOT ANDROID)
|
||||||
set(LIBS ${LIBS} rt)
|
list(APPEND LIBS rt)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# OpenGL Interface
|
# OpenGL Interface
|
||||||
set(SRCS ${SRCS}
|
set(SRCS ${SRCS}
|
||||||
GL/GLUtil.cpp
|
GL/GLUtil.cpp
|
||||||
GL/GLExtensions/GLExtensions.cpp
|
GL/GLExtensions/GLExtensions.cpp
|
||||||
GL/GLInterface/GLInterface.cpp)
|
GL/GLInterface/GLInterface.cpp)
|
||||||
|
Reference in New Issue
Block a user