1b877906bSopenharmony_ci# Try to find OSMesa on a Unix system 2b877906bSopenharmony_ci# 3b877906bSopenharmony_ci# This will define: 4b877906bSopenharmony_ci# 5b877906bSopenharmony_ci# OSMESA_LIBRARIES - Link these to use OSMesa 6b877906bSopenharmony_ci# OSMESA_INCLUDE_DIR - Include directory for OSMesa 7b877906bSopenharmony_ci# 8b877906bSopenharmony_ci# Copyright (c) 2014 Brandon Schaefer <brandon.schaefer@canonical.com> 9b877906bSopenharmony_ci 10b877906bSopenharmony_ciif (NOT WIN32) 11b877906bSopenharmony_ci 12b877906bSopenharmony_ci find_package (PkgConfig) 13b877906bSopenharmony_ci pkg_check_modules (PKG_OSMESA QUIET osmesa) 14b877906bSopenharmony_ci 15b877906bSopenharmony_ci set (OSMESA_INCLUDE_DIR ${PKG_OSMESA_INCLUDE_DIRS}) 16b877906bSopenharmony_ci set (OSMESA_LIBRARIES ${PKG_OSMESA_LIBRARIES}) 17b877906bSopenharmony_ci 18b877906bSopenharmony_ciendif () 19