Re: [CMake] Single line crashes cmake

2007-11-11 Thread Bill Hoffman
Joseph Garvin wrote: What version of cmake are you running? Running from the cmd prompt I got the same crash with no error output. If there's a newer version available, where can I get it? I'm running 2.4 - patch 7. Also, I get the crash even if the file is just this without the message part:

Re: [CMake] Single line crashes cmake

2007-11-11 Thread Brandon Van Every
On Nov 11, 2007 3:07 PM, Joseph Garvin <[EMAIL PROTECTED]> wrote: > What version of cmake are you running? Running from the cmd prompt I got the > same crash with no error output. If there's a newer version available, where > can I get it? I'm running 2.4 - patch 7. Also, I get the crash even if th

Re: [CMake] Single line crashes cmake

2007-11-11 Thread Joseph Garvin
What version of cmake are you running? Running from the cmd prompt I got the same crash with no error output. If there's a newer version available, where can I get it? I'm running 2.4 - patch 7. Also, I get the crash even if the file is just this without the message part: FILE(GLOB BLITZ_TMP "C:/"

Re: [CMake] Single line crashes cmake

2007-11-05 Thread Brandon Van Every
On Nov 5, 2007 4:36 PM, Joseph Garvin <[EMAIL PROTECTED]> wrote: > 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 fi

[CMake] Single line crashes cmake

2007-11-05 Thread Joseph Garvin
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: FILE(GLOB BLITZ_TMP "C:/" "blitz-[0-9].[0-9]") MESSAGE(${BLITZ_TMP})