Re: [CMake] install cmake on centos5

2007-06-26 Thread Jean-Christophe Roux
Eric, Matthew, Thank your for your advice. I found an rpm package at http://atrpms.net/dist/el5/cmake/ that did the trick Regards - Original Message From: Matthew Smith <[EMAIL PROTECTED]> To: Jean-Christophe Roux <[EMAIL PROTECTED]> Cc: cmake@cmake.org Sent: Tuesday, Jun

[CMake] install cmake on centos5

2007-06-26 Thread Jean-Christophe Roux
Hello, I need to install CMake on Centos5. yum install cmake returning nothing, I dowloaded Linux i386cmake-2.4.6-Linux-i386.sh This created a folder cmake-2.4.6-Linux-i386 with a bin, a doc, a man and a share folder. No README file with instructions. What should I do? I copied bin/cmake to /u

Re: [CMake] use of wildcard

2007-02-06 Thread Jean-Christophe Roux
Thank you very much! - Original Message From: Kevin Tucker <[EMAIL PROTECTED]> To: Jean-Christophe Roux <[EMAIL PROTECTED]>; cmake@cmake.org Sent: Tuesday, February 6, 2007 7:06:01 PM Subject: RE: [CMake] use of wildcard Found this d

[CMake] use of wildcard

2007-02-06 Thread Jean-Christophe Roux
Hello, How do I capture every file of a folder in one command? For instance, instead of set(SOURCE_FILES a.cpp b.cpp ... zzz.cpp) I'd like to write something like: set(SOURCE_FILES dir1/* dir2/*.cpp) that would save a lot of typing and maintenance. Thanks for any clue