I&#39;m reading the guidelines for find package modules here:<div><a href="http://www.cmake.org/cgi-bin/viewcvs.cgi/Modules/readme.txt?root=CMake&amp;view=markup">http://www.cmake.org/cgi-bin/viewcvs.cgi/Modules/readme.txt?root=CMake&amp;view=markup</a></div>
<div><br></div><div>No where in here do I see any mention of &quot;uppercase&quot; variable names. For example, if my find package is:</div><div><br></div><div>FindFoo.cmake</div><div><br></div><div>My return variables are:</div>
<div><br></div><div>Foo_LIBRARIES</div><div>Foo_INCLUDE_DIRS</div><div>Foo_FOUND</div><div><br></div><div>However, FindPackageHandleStandardArgs.cmake makes the FOUND variable all upper case, like so:</div><div><br></div>
<div>FOO_FOUND</div><div><br></div><div>What am I supposed to do? Uppercase or not? I notice that some pre-packaged find modules (like boost) do not use uppercase names, while others (like OpenGL) do use uppercase.</div>