From 9db4b803c6ea825b8e52a40e966fea09b4c5e7ca Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 7 Mar 2014 12:18:39 -0800 Subject: [PATCH] print out the GLUT include dir from GLUT find module --- cmake/modules/FindGLUT.cmake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmake/modules/FindGLUT.cmake b/cmake/modules/FindGLUT.cmake index 8bdd38abad..6b469bdbcf 100644 --- a/cmake/modules/FindGLUT.cmake +++ b/cmake/modules/FindGLUT.cmake @@ -73,6 +73,8 @@ else () include(FindPackageHandleStandardArgs) find_package_handle_standard_args(GLUT DEFAULT_MSG GLUT_INCLUDE_DIR GLUT_LIBRARIES) + message(${GLUT_INCLUDE_DIR}) + if (GLUT_FOUND) if (NOT GLUT_FIND_QUIETLY) message(STATUS "Found GLUT: ${GLUT_LIBRARIES}")