CMake: Fix cannot find -lX11 (#552)
Temporary measure to fix a breakage on FreeBSD. See #551 for more details.
This commit is contained in:
parent
8f4fa5006b
commit
f89afaa335
@ -53,6 +53,11 @@ if(${PLATFORM} MATCHES "Desktop")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Ugly crutch. Temporary workaround for #551
|
||||
if("${CMAKE_SYSTEM_NAME}" MATCHES "(Free|Net|Open)BSD")
|
||||
link_directories("/usr/local/lib")
|
||||
endif()
|
||||
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL Linux)
|
||||
set(LINUX TRUE)
|
||||
set(LIBS_PRIVATE dl ${LIBS_PRIVATE})
|
||||
|
Loading…
Reference in New Issue
Block a user