Skip to content

Commit

Permalink
Merge pull request #317 from camio/find_quietly
Browse files Browse the repository at this point in the history
Don't show status message in 'FindGLM' if 'QUIET' option is set. #317
  • Loading branch information
Groovounet committed Mar 15, 2015
2 parents a8203ac + 5ac7522 commit 7cd4a53
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion util/FindGLM.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,7 @@ FIND_PACKAGE_HANDLE_STANDARD_ARGS(GLM DEFAULT_MSG
IF(GLM_FOUND)
SET(GLM_INCLUDE_DIRS "${GLM_INCLUDE_DIR}")

MESSAGE(STATUS "GLM_INCLUDE_DIR = ${GLM_INCLUDE_DIR}")
IF(NOT GLM_FIND_QUIETLY)
MESSAGE(STATUS "GLM_INCLUDE_DIR = ${GLM_INCLUDE_DIR}")
ENDIF(NOT GLM_FIND_QUIETLY)
ENDIF(GLM_FOUND)

0 comments on commit 7cd4a53

Please sign in to comment.