1# - Find GLM
2# Find the GLM libraries
3#
4#  This module defines the following variables:
5#     GLM_FOUND       - 1 if GLM_INCLUDE_DIR is found, 0 otherwise
6#     GLM_INCLUDE_DIR - where to find glm/glm.hpp
7#
8
9find_path( GLM_INCLUDE_DIR
10           NAMES glm/glm.hpp
11           PATH_SUFFIXES /usr/include /include
12           DOC "The GLM include directory" )
13
14if( GLM_INCLUDE_DIR )
15    set( GLM_FOUND 1 )
16else()
17    set( GLM_FOUND 0 )
18endif()
19
20mark_as_advanced( GLM_INCLUDE_DIR )
21