CMake: Fix cannot find -lX11 (#552)

Temporary measure to fix a breakage on FreeBSD.
See #551 for more details.
This commit is contained in:
M 2018-05-26 20:56:24 +02:00 committed by Ahmad Fatoum
parent 8f4fa5006b
commit f89afaa335

View File

@ -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})