This allows building against the same version of GLM across all targets and not deal with API changes of newer GLM versions which introduce regressions. Long term we want to migrate away from GLM and stick to a minimal self-written subset.
6 lines
199 B
CMake
6 lines
199 B
CMake
set(GLM_VERSION "@GLM_VERSION@")
|
|
set(GLM_INCLUDE_DIRS "@CMAKE_CURRENT_SOURCE_DIR@")
|
|
|
|
if (NOT CMAKE_VERSION VERSION_LESS "3.0")
|
|
include("${CMAKE_CURRENT_LIST_DIR}/glmTargets.cmake")
|
|
endif()
|