Make GLFW CMake configure vars advanced

It is standard now in CMake to make the CMake configuration variables
(like those specifying paths to files for a library) are marked as
advanced. Otherwise, the CMake configuration gets overwhelmed by lots of
parameters that are either found automatically or only need to be set
once.
This commit is contained in:
Kenneth Moreland 2016-09-15 09:47:28 -06:00
parent 36be354980
commit b3e1e8f962

@ -99,4 +99,4 @@ find_package_handle_standard_args(GLFW DEFAULT_MSG
GLFW_LIBRARY
)
mark_as_advanced( GLFW_FOUND )
mark_as_advanced( GLFW_INCLUDE_DIR GLFW_LIBRARY )