On Thu, May 28, 2009 at 09:45:41AM -0600, Benne, Kyle wrote: > Is anyone using msbuild to run their nightly builds with Visual Studio > solutions generated by CMake? I can't get the tests to run or the > results uploaded using the command line tool. It works fine if I > build the Nightly or Experimental targets from within the IDE. > Perhaps I am using the wrong approach? I have tried variations of the > command line "msbuild my_project.sln /target:Experimental".
We saw problems with msbuild because of issues with absolute vs relative paths. IIRC msbuild wanted to prepend "C:/" to every path, even though those paths already started with "C:/". Not sure if this is what's tripping you, but it's something to check. tyler _______________________________________________ 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
