mirror of https://github.com/PCSX2/pcsx2.git
41 lines
1.1 KiB
CMake
41 lines
1.1 KiB
CMake
include(FindPkgConfig OPTIONAL)
|
|
|
|
macro(_internal_message msg)
|
|
message("${msg}")
|
|
endmacro()
|
|
|
|
macro(check_lib var lib)
|
|
set(_arg_list ${ARGN})
|
|
|
|
if(PKG_CONFIG_FOUND AND NOT ${var}_FOUND)
|
|
string(TOLOWER ${lib} lower_lib)
|
|
pkg_search_module(${var} QUIET ${lower_lib})
|
|
endif()
|
|
|
|
if(${var}_FOUND)
|
|
include_directories(${${var}_INCLUDE_DIRS})
|
|
# Make sure include directories for headers found using find_path below
|
|
# are re-added when reconfiguring
|
|
include_directories(${${var}_INCLUDE})
|
|
_internal_message("-- ${lib} found")
|
|
else()
|
|
find_library(${var}_LIBRARIES ${lib})
|
|
if(_arg_list)
|
|
find_path(${var}_INCLUDE ${_arg_list})
|
|
else()
|
|
set(${var}_INCLUDE FALSE)
|
|
endif()
|
|
if(${var}_LIBRARIES AND ${var}_INCLUDE)
|
|
include_directories(${${var}_INCLUDE})
|
|
_internal_message("-- ${lib} found")
|
|
set(${var}_FOUND 1 CACHE INTERNAL "")
|
|
elseif(${var}_LIBRARIES)
|
|
_internal_message("-- ${lib} not found (miss include)")
|
|
elseif(${var}_INCLUDE)
|
|
_internal_message("-- ${lib} not found (miss lib)")
|
|
else()
|
|
_internal_message("-- ${lib} not found")
|
|
endif()
|
|
endif()
|
|
endmacro()
|