[CMake] Increasing the size of STDOUT saved for test output in the dashboard?

2008-11-14 Thread Bartlett, Roscoe A
Hello, Does anyone know how to get Cdash to increase the amount of data it will stored for STDOUT for passing tests in the dashboard? Currently it is only storing 1024 bytes and I want that increased by a lot. I then want to thin out the data from the database later but I want to see

[CMake] Does CMake/CPack not support creating a source-only tarball

2008-11-18 Thread Bartlett, Roscoe A
Hello, According to the CMake bashing website: http://www.remlab.net/op/cmake.shtml CMake/Cpack does not support creating a source-only tarball distribution for a collection of software. Is there some way to create a source-only tarball distribution with CMake/Cpack that can selectively

Re: [CMake] Does CMake/CPack not support creating a source-only tarball

2008-11-18 Thread Bartlett, Roscoe A
Tim, -Original Message- From: Shead, Timothy Sent: Tuesday, November 18, 2008 12:10 PM To: Bartlett, Roscoe A Cc: cmake@cmake.org Subject: Re: [CMake] Does CMake/CPack not support creating a source-only tarball Bartlett, Roscoe A wrote: Hello, According to the CMake bashing

Re: [CMake] Does CMake/CPack not support creating a source-only tarball

2008-11-18 Thread Bartlett, Roscoe A
, Timothy Sent: Tuesday, November 18, 2008 1:46 PM To: Bartlett, Roscoe A Cc: cmake@cmake.org Subject: Re: [CMake] Does CMake/CPack not support creating a source-only tarball Bartlett, Roscoe A wrote: By default, CPack supports source tarball generation with make source_package

Re: [CMake] Does CMake/CPack not support creating a source-only tarball

2008-11-18 Thread Bartlett, Roscoe A
Bingo! -Original Message- From: Shead, Timothy Sent: Tuesday, November 18, 2008 2:50 PM To: Bartlett, Roscoe A Cc: cmake@cmake.org Subject: Re: [CMake] Does CMake/CPack not support creating a source-only tarball Bartlett, Roscoe A wrote: Thanks, that did the trick. Note

[CMake] Return values from CMake functions?

2008-11-20 Thread Bartlett, Roscoe A
Hello, Has anyone thought about the possibility of adding return values from CMake functions? This would be a very useful language feature that the Trilinos CMake files would use everywhere. Here is an example use case. One problem with CMake is that it has very loose checking. For

Re: [CMake] Return values from CMake functions?

2008-11-20 Thread Bartlett, Roscoe A
Ken, -Original Message- From: Ken Martin [mailto:[EMAIL PROTECTED] Sent: Thursday, November 20, 2008 11:08 AM To: Bartlett, Roscoe A; cmake@cmake.org Subject: RE: [CMake] Return values from CMake functions? While not super sexy, you can do what you are looking for with a minor

[CMake] Preserving library order in target_link_libraries(...) command

2008-11-26 Thread Bartlett, Roscoe A
Hello, Does CMake guarantee that the order of the libraries passed into target_link_libraries(...) is preserved on the actual link line? For example, If I have: target_link_libraries(sometarget lib1 lib2 lib3 ...) does CMake guarantee that the link line will have the ordering: g++

[CMake] How do you determine what compiler is being used?

2008-12-03 Thread Bartlett, Roscoe A
Hello, How can determine what general type of compiler is being used? For example, how can we determine if our project is being configured to use the Sun CC compiler? In C++ code I can just check for the define __sun but how can I get this info in my CMakeLists.txt file? I could use

Re: [CMake] How do you determine what compiler is being used?

2008-12-03 Thread Bartlett, Roscoe A
like to have it to add to its sources? - Ross -Original Message- From: Eric Noulard [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 03, 2008 4:06 PM To: Bartlett, Roscoe A Cc: cmake@cmake.org; Pawlowski, Roger P Subject: Re: [CMake] How do you determine what compiler

[CMake] Getting a list of the defined CMake cache variables along with properties and documentation?

2008-12-03 Thread Bartlett, Roscoe A
Hello, Is there a way in a CMakeLists.txt file to get a list of all of the defined CMake cache variables, get their properties, and their documentation? I would like to have this so that I can build more general documentation for our CMake project. I could of course just parse the

[CMake] How does ctest impose CVS checkout time?

2008-12-04 Thread Bartlett, Roscoe A
Hello, Does anyone know how CTest is able to set the CVS checkout time (with the -D option I would guess) when I am the one that provides the CVS checkout command in my Ctest script file by setting CTEST_CVS_CHECKOUT or CTEST_CVS_COMMAND? Is the CVS checkout followed by some sort of 'cvs

[CMake] Pre-chekout configure vs. post-checkout configure

2008-12-04 Thread Bartlett, Roscoe A
Hello, One of my nightly tests just failed last night because it tried to do a configure using outdated CMake files after I had enabled new options that caused it to fail. I need to understand how to make the nightly testing scripts more robust. Perhaps using extended Ctest scripting is the

Re: [CMake] How do you determine what compiler is being used?

2008-12-05 Thread Bartlett, Roscoe A
[mailto:[EMAIL PROTECTED] Sent: Friday, December 05, 2008 12:27 PM To: Philip Lowman Cc: [EMAIL PROTECTED]; Bartlett, Roscoe A; cmake@cmake.org; Pawlowski, Roger P Subject: Re: [CMake] How do you determine what compiler is being used? Philip Lowman wrote: CMAKE_C_COMPILER_ID

[CMake] Setting initial CMake cache in extended Ctest scripting

2008-12-17 Thread Bartlett, Roscoe A
Hello, How do I set the initial cache when using extended Ctest scripting? I tried setting the variable CTEST_INITIAL_CACHE but it seems to be getting ignored. I just set: SET(CTEST_CMAKE_GENERATOR Unix Makefiles) along with CTEST_INITIAL_CACHE and I expected the CTEST_COFNIGURE(...)

[CMake] Passing in different CMake options with initial configure step with CTest

2008-12-17 Thread Bartlett, Roscoe A
Hello, Is there a way to get Ctest, in standard dashboard client mode, to use a different set of options for the cmake configure than for the later real configure after the update? My Ctest scripts will be much more robust if I could do this. Thanks, - Ross

Re: [CMake] Setting initial CMake cache in extended Ctest scripting

2008-12-17 Thread Bartlett, Roscoe A
3:27 PM To: Bartlett, Roscoe A Cc: cmake@cmake.org Subject: Re: [CMake] Setting initial CMake cache in extended Ctest scripting Bartlett, Roscoe A wrote: Hello, How do I set the initial cache when using extended Ctest scripting? I tried setting the variable CTEST_INITIAL_CACHE

Re: [CMake] Setting initial CMake cache in extended Ctest scripting

2008-12-18 Thread Bartlett, Roscoe A
, - Ross -Original Message- From: Bill Hoffman [mailto:bill.hoff...@kitware.com] Sent: Wednesday, December 17, 2008 3:27 PM To: Bartlett, Roscoe A Cc: cmake@cmake.org Subject: Re: [CMake] Setting initial CMake cache in extended Ctest scripting Bartlett, Roscoe A wrote

[CMake] History and ideas behind FindMPI.cmake?

2009-01-12 Thread Bartlett, Roscoe A
Hello, What is the origin of the current FindMPI.cmake module? I am not very happy with this module and I don't even fully understand why is was written the way that it is. Specific issues that I have are: 1) It does not really take advantage of MPI compiler wrappers like it should. The

Re: [CMake] History and ideas behind FindMPI.cmake?

2009-01-14 Thread Bartlett, Roscoe A
Michael, You make good points. I will look into the Module you list below. Thanks, - Ross -Original Message- From: Michael Wild [mailto:them...@gmail.com] Sent: Wednesday, January 14, 2009 2:43 AM To: Bartlett, Roscoe A Cc: cmake@cmake.org Subject: Re: [CMake] History

[CMake] How to append arbitrary linker options?

2009-01-30 Thread Bartlett, Roscoe A
Hello, I would like to be able to append arbitrary linker options to the end of my link lines on Unix/Linux systems. However, the options set in the CMAKE_EXE_LINKER_FLAGS variable are listed *before* all of the libraries that CMake knows about. I need to be able to append a bunch of nasty

Re: [CMake] How to append arbitrary linker options?

2009-02-01 Thread Bartlett, Roscoe A
To: Bartlett, Roscoe A Cc: cmake@cmake.org; Perschbacher, Brent M Subject: Re: [CMake] How to append arbitrary linker options? On Fri, Jan 30, 2009 at 12:56 PM, Bartlett, Roscoe A raba...@sandia.govmailto:raba...@sandia.gov wrote: Hello, I would like to be able to append arbitrary linker options

Re: [CMake] How to append arbitrary linker options?

2009-02-01 Thread Bartlett, Roscoe A
. Thanks, - Ross -Original Message- From: Brad King [mailto:brad.k...@kitware.com] Sent: Friday, January 30, 2009 12:43 PM To: Bartlett, Roscoe A Cc: cmake@cmake.org; Perschbacher, Brent M Subject: Re: [CMake] How to append arbitrary linker options? Bartlett, Roscoe A wrote

[CMake] Cdash errors

2009-02-06 Thread Bartlett, Roscoe A
Hello, Our Cdash dashboard is not working and at the top of the HTML page that gets generated it says: Table 'b2g' is marked as crashed and should be repaired Do anyone know what this means and how to repair the table? I Goggled this and only found this email:

Re: [CMake] Cdash errors

2009-02-06 Thread Bartlett, Roscoe A
Hoffman [mailto:bill.hoff...@kitware.com] Sent: Friday, February 06, 2009 2:33 PM To: Bartlett, Roscoe A Cc: cmake@cmake.org; Willenbring, James M; Perschbacher, Brent M Subject: Re: [CMake] Cdash errors Bartlett, Roscoe A wrote: Hello, Our Cdash dashboard is not working and at the top

[CMake] Setting MemoryCheckCommand in extended Ctest scripts

2009-02-21 Thread Bartlett, Roscoe A
Hello, I am trying to get memory checking to work in an extended Ctest script that calls ctest_memcheck(...). However, when I do I get the error message: SetCTestConfiguration:BuildDirectory:/home/rabartl/PROJECTS/dashboards/Trilinos.base/SERIAL_DEBUG/BUILD

[CMake] Memory checking MPI programs with valgrind?

2009-02-26 Thread Bartlett, Roscoe A
Hello, Does anyone know how to get CMake/CTest to do memory testing with MPI programs using valgrind? The problem is that by default valgrind just tests the mpiexec/mpirun driver program and not your user program. I think there are some options you can pass to valgrind to get it to do this

Re: [CMake] Memory checking MPI programs with valgrind?

2009-02-26 Thread Bartlett, Roscoe A
-Original Message- From: Eric Noulard [mailto:eric.noul...@gmail.com] Sent: Thursday, February 26, 2009 9:29 AM To: Bartlett, Roscoe A Cc: cmake@cmake.org; Willenbring, James M; Perschbacher, Brent M Subject: Re: [CMake] Memory checking MPI programs with valgrind? 2009/2/26

[CMake] CMake shared libraries, install, and rpath

2009-03-18 Thread Bartlett, Roscoe A
Hello, How can we get CMake to deal with installed shared libraries and set the rpath correctly in a portable way? The issue is that we have is that we need to enable client applications to link to installed Trilinos shared libraries and provide for them, in an automatic way, the right link

[CMake] CMake, XCode, and Fortran support?

2009-03-24 Thread Bartlett, Roscoe A
Hello, Does anyone know if the XCode generator for CMake support Fortran as a compiler? We have a Trilinos developer that tried to use CMake to generate an XCode project but it does not know how to handle the Fortran files. Thanks, - Ross

[CMake] Getting the compiler version?

2009-04-14 Thread Bartlett, Roscoe A
Hello, Is there some way portable to get the compiler version in CMake so that I can print it out in the configure output? This is important for our portability testing system based on Cmake/Ctest/Cdash. Thanks, - Ross ___ Powered by

Re: [CMake] Getting the compiler version?

2009-04-14 Thread Bartlett, Roscoe A
- From: Mike Jackson [mailto:mike.jack...@bluequartz.net] Sent: Tuesday, April 14, 2009 8:28 AM To: Bartlett, Roscoe A Cc: cmake@cmake.org; Perschbacher, Brent M Subject: Re: [CMake] Getting the compiler version? Not really a portable way but there are usually compiler specific ways which

Re: [CMake] FW: Cmake on Sun?

2009-04-16 Thread Bartlett, Roscoe A
platforms you're thinking of? Are they aleady represented on the CMake dashboard or is there some porting work in our future? :-) HTH, David On Tue, Feb 3, 2009 at 3:39 PM, Bartlett, Roscoe A raba...@sandia.govmailto:raba...@sandia.gov wrote: Hello, An associate of mine tried to build

[CMake] CMakePackageConfigHelpers.cmake support Sematic Versioning?

2014-12-08 Thread Bartlett, Roscoe A.
Hello CMake Developers, Any chance a Semantic Versioning option can be added to the standard CMake module CMakePackageConfigHelpers.cmake that implements the Semantic Versioning described at: http://semver.org/ This is the best defined standard for versioning I have ever seen. It makes a

[CMake] Flushing CMake STDOUT to avoid jumbled output?

2015-04-14 Thread Bartlett, Roscoe A.
Hello CMake people, Is there a way to make CMake flush STDOUT (written two with MESSAGE() command) so that we don't get jumbled output? This is a problem since I have tests that grep output generated by CMake and it cases tests to fail like shown at:

Re: [CMake] [EXTERNAL] Re: Get ctest -S script to pull from git branch other than 'master'?

2016-06-08 Thread Bartlett, Roscoe A
for the Advanced Simulation of Light Water Reactors (CASL) Physics Integration Infrastructure Lead From: xavier.besse...@gmail.com [mailto:xavier.besse...@gmail.com] On Behalf Of Xavier Besseron Sent: Wednesday, June 08, 2016 10:45 AM To: cmake@cmake.org Cc: Bartlett, Roscoe A Subject: [EXTERNAL] Re

[CMake] Get ctest -S script to pull from git branch other than 'master'?

2016-06-07 Thread Bartlett, Roscoe A
Hello, Is there a built-in way to get a ctest -S script to checkout and pull from a git branch other than 'master'? I can't seem to find a way to so this and there is no mention of branches at all in the official documentation: