Re: [CMake] use of wildcard

2007-02-06 Thread Radu Serban
Jean-Christophe Roux wrote: 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

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

RE: [CMake] use of wildcard

2007-02-06 Thread Kevin Tucker
t: Tuesday, February 06, 2007 3:35 PM To: cmake@cmake.org Subject: [CMake] use of wildcard 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)

[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