> 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 with CMake?
Search for property SOLUTION_FOLDER, introduced in 2.8.3. Eike _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Follow this link to subscribe/unsubscribe: http://www.cmake.org/mailman/listinfo/cmake
