Browse Source

CMake: Fix cannot find -lX11 (#552)

Temporary measure to fix a breakage on FreeBSD.
See #551 for more details.
M 7 years ago
parent
commit
f89afaa335
1 changed files with 5 additions and 0 deletions
  1. 5 0
      cmake/utils.cmake

+ 5 - 0
cmake/utils.cmake

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