summaryrefslogtreecommitdiffhomepage
path: root/src/external/glfw/CMake/modules/FindOSMesa.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'src/external/glfw/CMake/modules/FindOSMesa.cmake')
-rw-r--r--src/external/glfw/CMake/modules/FindOSMesa.cmake18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/external/glfw/CMake/modules/FindOSMesa.cmake b/src/external/glfw/CMake/modules/FindOSMesa.cmake
new file mode 100644
index 00000000..3194bd91
--- /dev/null
+++ b/src/external/glfw/CMake/modules/FindOSMesa.cmake
@@ -0,0 +1,18 @@
+# Try to find OSMesa on a Unix system
+#
+# This will define:
+#
+# OSMESA_LIBRARIES - Link these to use OSMesa
+# OSMESA_INCLUDE_DIR - Include directory for OSMesa
+#
+# Copyright (c) 2014 Brandon Schaefer <[email protected]>
+
+if (NOT WIN32)
+
+ find_package (PkgConfig)
+ pkg_check_modules (PKG_OSMESA QUIET osmesa)
+
+ set (OSMESA_INCLUDE_DIR ${PKG_OSMESA_INCLUDE_DIRS})
+ set (OSMESA_LIBRARIES ${PKG_OSMESA_LIBRARIES})
+
+endif ()