Re: [CMake] Visual Studio project layout

2010-12-21 Thread Diablo 666
> Search for property SOLUTION_FOLDER, introduced in 2.8.3. Thanks a lot, that was exactly what I was looking for! (It seems actually, that the property is called FOLDER now) ___ Powered by www.kitware.com V

Re: [CMake] Visual Studio project layout

2010-12-14 Thread David Cole
Actually, it's just "FOLDER". http://cmake.org/cmake/help/cmake-2-8-docs.html#prop_tgt:FOLDER Set the target property FOLDER on the targets that you want to put in folders. Then activate it by setting the global property USE_FOLDERS to ON. http://cmake.org/cmake/help/cmake-2-8-docs.html#pro

Re: [CMake] Visual Studio project layout

2010-12-14 Thread Rolf Eike Beer
> I'm trying to reduce the number of toplevel projects in my CMake > generated Visual Studio solution. The idea is to group some targets in > solution paths. The layout should look like this: > > Solution > - Target 1 > - Foo >     + Target 2 >     + Target 3 > - Target 4 > ... > > Is there a w

[CMake] Visual Studio project layout

2010-12-14 Thread Diablo 666
Hi all, I'm trying to reduce the number of toplevel projects in my CMake generated Visual Studio solution. The idea is to group some targets in solution paths. The layout should look like this: Solution - Target 1 - Foo + Target 2 + Target 3 - Target 4 ... Is there a way to achieve this wit