We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b4cd23 commit b9cb30bCopy full SHA for b9cb30b
CMakeLists.txt
@@ -365,6 +365,11 @@ if(UNIX AND NOT APPLE)
365
endif()
366
367
368
+# FreeBSD does not search in /usr/local/lib, but at least Freetype is installed there :(
369
+if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
370
+ SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -L/usr/local/lib")
371
+endif()
372
+
373
if(APPLE)
374
# In theory it would be cleaner to let CMake detect the right dependencies. In practice, this means that if a OSX user has
375
# unix-style installs of Vorbis/Ogg/OpenAL/etc. they will be picked up over our frameworks. This is blocking when I make releases :
0 commit comments