I&#39;m having an issue with the FindSDL.cmake module included with CMake 2.6.0 RC9 (testing on Windows)<br><br>For some reason immediately after it &quot;finds&quot; or you help it find the SDL, if you configure again, SDL_FOUND gets changed from TRUE to FALSE.&nbsp; I believe this is being caused by SDL_LIBRARY_TEMP being set to empty (and cache internal).<br>
<br>Reproducer:<br><br><br>PROJECT(foo)<br>FIND_PACKAGE(SDL)<br>IF(SDL_FOUND)<br>&nbsp;&nbsp;&nbsp; MESSAGE(&quot;SDL was found!&quot;)<br>ELSE()<br>&nbsp;&nbsp;&nbsp; MESSAGE(&quot;SDL NOT found!&quot;)<br>ENDIF()<br><br>-- <br>Philip Lowman