From e6af4467165f1ccd6d5c02b6d58380e99ae3a359 Mon Sep 17 00:00:00 2001 From: Will Usher Date: Sun, 16 Feb 2020 14:38:27 -0800 Subject: [PATCH] fix manual glm_DIR mention --- manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual.md b/manual.md index 0efd82c6..a7f6956f 100644 --- a/manual.md +++ b/manual.md @@ -277,7 +277,7 @@ GLM does not depend on external libraries or headers such as ``, [` 1.5. Finding GLM with CMake -GLM packages a `glmConfig.cmake` and `glmConfig-version.cmake` in the root of the repository and the release archives. To find GLM with CMake you can pass `-Dglm_DIR=` when running CMake. You can then either add `${GLM_INCLUDE_DIRS}` to your target's include directories, or link against the imported `glm::glm` target. +GLM packages a `glmConfig.cmake` and `glmConfig-version.cmake` in the root of the repository and the release archives. To find GLM with CMake you can pass `-Dglm_DIR=/cmake/glm/` when running CMake. You can then either add `${GLM_INCLUDE_DIRS}` to your target's include directories, or link against the imported `glm::glm` target. ---