MARK_AS_ADVANCED(glFont2_LIBRARIES)
MARK_AS_ADVANCED(glFont2_INCLUDE_DIRS)

_________________________________________________________
Mike Jackson                  [email protected]
BlueQuartz Software                    www.bluequartz.net
Principal Software Engineer                  Dayton, Ohio

Robert Dailey wrote:
First of all, I've created a find module called FindglFont2.cmake. Below are
the contents:
find_path( glFont2_INCLUDE_DIRS glfont2.h )
find_library( glFont2_LIBRARIES NAMES glfont2 )

set( glFont2_FOUND FALSE )
if( glFont2_LIBRARIES AND glFont2_INCLUDE_DIRS )
  set( glFont2_FOUND TRUE )
endif()

When the library and header files are found, the two variables above
(glFont2_INCLUDE_DIRS and glFont2_LIBRARIES) are stored in the public
section of the cache. Is there any way to force these to be stored via
"INTERNAL"? This way they do not show up in the "Simple View" in the
cmake-gui.

Thanks.



_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to