First of all, I've created a find module called FindglFont2.cmake. Below are the contents:<div><br></div><div><div>find_path( glFont2_INCLUDE_DIRS glfont2.h )</div><div>find_library( glFont2_LIBRARIES NAMES glfont2 )</div>
<div><br></div><div>set( glFont2_FOUND FALSE )</div><div>if( glFont2_LIBRARIES AND glFont2_INCLUDE_DIRS )</div><div> set( glFont2_FOUND TRUE )</div><div>endif()</div><div><br></div><div>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.</div>
<div><br></div><div>Thanks.</div></div>