mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-10 03:44:26 +00:00
Merge pull request #4673 from Orphis/cmake_checklib
cmake: Only use include directories on actual paths in check_lib
This commit is contained in:
commit
e7b9d0caa7
@ -26,10 +26,14 @@ macro(check_lib var pc lib)
|
|||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(${var}_FOUND)
|
if(${var}_FOUND)
|
||||||
include_directories(${${var}_INCLUDE_DIRS})
|
if(${var}_INCLUDE_DIRS)
|
||||||
|
include_directories(${${var}_INCLUDE_DIRS})
|
||||||
|
endif()
|
||||||
# Make sure include directories for headers found using find_path below
|
# Make sure include directories for headers found using find_path below
|
||||||
# are re-added when reconfiguring
|
# are re-added when reconfiguring
|
||||||
include_directories(${${var}_INCLUDE})
|
if(${var}_INCLUDE)
|
||||||
|
include_directories(${${var}_INCLUDE})
|
||||||
|
endif()
|
||||||
_internal_message("${lib} found")
|
_internal_message("${lib} found")
|
||||||
else()
|
else()
|
||||||
find_library(${var} ${lib})
|
find_library(${var} ${lib})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user