I'm trying to find all folders matching the pattern "blitz-[0-9].[0-9]" so it would match blitz-0.3, blitz-2.4, etc. within the folders C:\ and C:\Program Files. Starting to code this I put this in an otherwise empty .cmake file:
<br><br>FILE(GLOB BLITZ_TMP &quot;C:/&quot; &quot;blitz-[0-9].[0-9]&quot;)<br>MESSAGE(${BLITZ_TMP})<br><br>Then I included it from the CMakeLists.txt for my project. CMake crashes on the first line (i.e. commenting out the second doesn&#39;t prevent the crash), running 
v2.4 under Vista saying, &quot;CMakeSetup MFC application has stopped working&quot;.<br><br>What am I doing wrong?<br>