updated GLFW
This commit is contained in:
parent
67ae8daef3
commit
80e753378c
374 changed files with 132420 additions and 5 deletions
18
src/deps/glfw-3.3.5/CMake/modules/FindOSMesa.cmake
Normal file
18
src/deps/glfw-3.3.5/CMake/modules/FindOSMesa.cmake
Normal file
|
@ -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 <brandon.schaefer@canonical.com>
|
||||
|
||||
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 ()
|
Loading…
Add table
Add a link
Reference in a new issue