Re: [CMake] How set "Build Name" in CTest/CDash?

2010-06-21 Thread Convey, Christian J CIV NUWC NWPT
> The new-fashioned way is to set CTEST_BUILD_NAME in your > ctest -S script prior to ctest_configure, ctest_build and > ctest_submit... > set(CTEST_BUILD_NAME "myBuildName") Can I also do this in my CMakeLists.txt file? I guess I'm unclear on whether or not there aer some things that can *onl

Re: [CMake] How set "Build Name" in CTest/CDash?

2010-06-21 Thread John Drescher
> The old-fashioned way of doing this is to set a BUILDNAME variable in the > cmake cache... > > In your CMakeLists.txt: > set(BUILDNAME "myBuildName" CACHE STRING "build name variable for CDash") > > The new-fashioned way is to set CTEST_BUILD_NAME in your ctest -S script > prior to ctest_configur

Re: [CMake] How set "Build Name" in CTest/CDash?

2010-06-21 Thread David Cole
The old-fashioned way of doing this is to set a BUILDNAME variable in the cmake cache... In your CMakeLists.txt: set(BUILDNAME "myBuildName" CACHE STRING "build name variable for CDash") The new-fashioned way is to set CTEST_BUILD_NAME in your ctest -S script prior to ctest_configure, ctest_build

[CMake] How set "Build Name" in CTest/CDash?

2010-06-21 Thread Convey, Christian J CIV NUWC NWPT
I'm using CTest to submit results to CDash. Can anyone tell me how to specify the text that shows up in CDash's "Build Name" column? The manpage for "ctest" says that I can set the CMAKS_SYSTEM and CMAKE_CXX_COMPILER variables, but I'm concerned that doing so may mess up my build. I have a Li