I've noticed an inconsistency in CMake's generation.. For example I go through the following sequence:

cd \Project
mkdir Debug
cd Debug

Then I either:

cmake -G "Visual Studio 9 2008" -DCMAKE_BUILD_TYPE=Debug ..\CMakeLists.txt

It will generate, and then place the project files in \Project.


But if I use:

cmake -G "Visual Studio 9 2008" -DCMAKE_BUILD_TYPE=Debug ..

It will generate, and then place the project files in \Project\Debug


Why are these different?
Are the differences expected behavior?
I'm a bit confused..

Thanks!
_______________________________________________
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

Reply via email to