Re: [CMake] How can I make CTest not do dart-related stuff?

2015-01-30 Thread Robert Dailey
Apparently I have to: include( CTest ) I wasn't doing that. Now it works as you have explained. Thanks! On Fri, Jan 30, 2015 at 2:26 PM, Robert Dailey rcdailey.li...@gmail.com wrote: David, I added a CTestConfig.cmake right next to the root CMakeLists.txt and it's empty except for a

Re: [CMake] How can I make CTest not do dart-related stuff?

2015-01-30 Thread Daniel Schepler
: Friday, January 30, 2015 10:07 AM To: CMake Subject: [CMake] How can I make CTest not do dart-related stuff? I run ctest on my build server *just* to run the test executables and get result XML. I use a separate tool to parse the XML and upload it to an unrelated server (not CDash) I get errors

Re: [CMake] How can I make CTest not do dart-related stuff?

2015-01-30 Thread Robert Dailey
David, I added a CTestConfig.cmake right next to the root CMakeLists.txt and it's empty except for a comment. I get the following output: === [189/189] Linking CXX executable output/bin/Test_UI_String Cannot find file:

Re: [CMake] How can I make CTest not do dart-related stuff?

2015-01-30 Thread David Cole via CMake
Do you have a CTestConfig.cmake file in your source tree? If you do, then ctest will load that instead of looking for the DartConfiguration.tcl file in your build tree... Even if it's empty because you don't submit to a CDash server, the presence of CTestConfig.cmake in your top level source tree

[CMake] How can I make CTest not do dart-related stuff?

2015-01-30 Thread Robert Dailey
I run ctest on my build server *just* to run the test executables and get result XML. I use a separate tool to parse the XML and upload it to an unrelated server (not CDash) I get errors like below: Cannot find file: /sourcerepo/build/DartConfiguration.tcl Can someone explain what CTest is