Re: [CMake] Project Folders in Visual Studio

2010-03-15 Thread Surya Kiran Gullapalli
There's a bug already reported for this. You can find the details here Surya ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html

Re: [CMake] Project Folders in Visual Studio

2010-03-15 Thread Aaron_Wright
I have several libraries, each with numerous test programs, and a top level program. Each of these has an individual project in Visual Studio. In addition I have a doxygen and coverage target for each library or test program. And if I want to make a target depend on a file, I need to create a c

[CMake] Fwd: Project Folders in Visual Studio

2010-03-15 Thread John Drescher
On Mon, Mar 15, 2010 at 5:42 PM, Pau Garcia i Quiles wrote: > On Mon, Mar 15, 2010 at 7:49 PM,   wrote: >> I know this has been asked before but I don't think it got an answer. I have >> a situation where I have over 200 projects in Visual Studio with no >> organization. Is there anyway to put the

Re: [CMake] Project Folders in Visual Studio

2010-03-15 Thread Pau Garcia i Quiles
On Mon, Mar 15, 2010 at 7:49 PM, wrote: > I know this has been asked before but I don't think it got an answer. I have > a situation where I have over 200 projects in Visual Studio with no > organization. Is there anyway to put them under folders? It would really > save me some headaches. Thanks.

Re: [CMake] Fwd: Project Folders in Visual Studio

2010-03-15 Thread John Drescher
> for which putting them in solution folders to group them up > was a good idea, I see now. I was not aware of solution folders. Sorry for the noise. John ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.co

[CMake] Fwd: Project Folders in Visual Studio

2010-03-15 Thread J Decker
-- Forwarded message -- From: J Decker Date: Mon, Mar 15, 2010 at 2:15 PM Subject: Re: [CMake] Project Folders in Visual Studio To: aaron_wri...@selinc.com On Mon, Mar 15, 2010 at 11:49 AM,   wrote: > I know this has been asked before but I don't think it got an answer. I have >

Re: [CMake] Project Folders in Visual Studio

2010-03-15 Thread John Drescher
On Mon, Mar 15, 2010 at 2:49 PM, wrote: > I know this has been asked before but I don't think it got an answer. I have > a situation where I have over 200 projects in Visual Studio with no > organization. Is there anyway to put them under folders? It would really > save me some headaches. Thanks.

[CMake] Project Folders in Visual Studio

2010-03-15 Thread Aaron_Wright
I know this has been asked before but I don't think it got an answer. I have a situation where I have over 200 projects in Visual Studio with no organization. Is there anyway to put them under folders? It would really save me some headaches. Thanks. -

Re: [CMake] [PATCH] Support multiple arguments in CC,CXX,FC values

2010-03-15 Thread Alan W. Irwin
On 2010-03-15 09:07-0400 Brad King wrote: Teach compiler identification to support values such as export CC='gcc -g -O2' by separating the arguments on spaces. We already do this for the values of CFLAGS, CXXFLAGS, and FFLAGS. --- Hi Alan, Anyway, this patch should fix it. Please test. I

Re: [CMake] [PATCH] Support multiple arguments in CC,CXX,FC values

2010-03-15 Thread Michael Wild
On 15. Mar, 2010, at 14:59 , Brad King wrote: > Michael Wild wrote: >> On 15. Mar, 2010, at 14:37 , Brad King wrote: >>> using the "PROGRAM/PROGRAM_ARGS" option of get_filename_component() >>> which already accounts for spaces in the path. It uses an algorithm >>> similar to what the Windows com

Re: [CMake] [PATCH] Support multiple arguments in CC,CXX,FC values

2010-03-15 Thread Brad King
Michael Wild wrote: > On 15. Mar, 2010, at 14:37 , Brad King wrote: >> using the "PROGRAM/PROGRAM_ARGS" option of get_filename_component() >> which already accounts for spaces in the path. It uses an algorithm >> similar to what the Windows command prompt does. It works backwards >> from the end

Re: [CMake] [PATCH] Support multiple arguments in CC,CXX,FC values

2010-03-15 Thread Michael Wild
On 15. Mar, 2010, at 14:37 , Brad King wrote: > Michael Wild wrote: >> Won't that fail for compiler-installations with spaces in the path >> (admittedly a bad idea, but on Windows probably not that unlikely)? > > By the time the new code is reached we've already split the arguments > from the co

Re: [CMake] [PATCH] Support multiple arguments in CC,CXX,FC values

2010-03-15 Thread Brad King
Michael Wild wrote: > Won't that fail for compiler-installations with spaces in the path > (admittedly a bad idea, but on Windows probably not that unlikely)? By the time the new code is reached we've already split the arguments from the compiler itself. This is done in CMakeDetermineCCompiler.cm

Re: [CMake] [PATCH] Support multiple arguments in CC,CXX,FC values

2010-03-15 Thread Michael Wild
On 15. Mar, 2010, at 14:07 , Brad King wrote: > Anyway, this patch should fix it. Please test. > > Thanks, > -Brad > > > Modules/CMakeDetermineCompilerId.cmake |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/Modules/CMakeDetermineCompilerId.cmake > b/Modules/CMak

[CMake] [PATCH] Support multiple arguments in CC,CXX,FC values

2010-03-15 Thread Brad King
Teach compiler identification to support values such as export CC='gcc -g -O2' by separating the arguments on spaces. We already do this for the values of CFLAGS, CXXFLAGS, and FFLAGS. --- Hi Alan, The standard way to do the "set and forget" approach with environment variables is export C