1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-04-02 22:05:43 +02:00

More portable libdl handling

This commit is contained in:
Dmitry Marakasov 2015-04-09 13:19:44 +03:00
parent eab0b1e674
commit 093ad29ae1

View File

@ -105,12 +105,9 @@ if(NOT WIN32)
if(HAVE_RT_LIB) if(HAVE_RT_LIB)
set(SYSTEM_LIBS ${SYSTEM_LIBS} rt) set(SYSTEM_LIBS ${SYSTEM_LIBS} rt)
endif() endif()
endif()
CHECK_LIBRARY_EXISTS(dl dlopen "" HAVE_DL_LIB) set(SYSTEM_LIBS ${SYSTEM_LIBS} ${CMAKE_DL_LIBS})
if(HAVE_DL_LIB)
set(SYSTEM_LIBS ${SYSTEM_LIBS} dl)
endif()
endif()
set(FFmpeg_FIND_COMPONENTS AVFORMAT SWSCALE) set(FFmpeg_FIND_COMPONENTS AVFORMAT SWSCALE)
find_package(Boost 1.48.0 COMPONENTS filesystem locale program_options system thread REQUIRED) find_package(Boost 1.48.0 COMPONENTS filesystem locale program_options system thread REQUIRED)