summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* KWSys Nightly Date StampKWSys Robot2010-03-261-1/+1
|
* it's CMAKE_COMPILER_IS_GNUCC, not CMAKE_COMPILER_IS_GNUGCCAlex Neundorf2010-03-251-1/+1
| | | | | | Patch from Brad Hards <bradh AT frogmouth DOT net> Alex
* KWSys Nightly Date StampKWSys Robot2010-03-251-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-241-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-231-1/+1
|
* Teach CMake how to work with G95 on mingw.Bill Hoffman2010-03-231-0/+1
|
* ENH: Adding symbol for cray compute linux to DynamicLoader.cxxPat Marion2010-03-221-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-221-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-211-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-201-1/+1
|
* Better detection of stop_time being passed.Zach Mullen2010-03-193-4/+7
|
* KWSys Nightly Date StampKWSys Robot2010-03-191-1/+1
|
* Fix StopTime to also account for localtime being a day ahead of gmtimeZach Mullen2010-03-182-8/+10
|
* Fix for StopTime for cases when gmtime is a day ahead of localtimeZach Mullen2010-03-183-9/+32
|
* More debugging of StopTime testZach Mullen2010-03-183-3/+18
|
* KWSys: Enable process tree killing on kFreeBSDBrad King2010-03-181-1/+2
| | | | | | Teach kwsysProcessKill to identify processes on this platform using the "ps" command just as on Linux. Patch from Modestas Vainius <modax@debian.org>. See issue #10432.
* KWSys Nightly Date StampKWSys Robot2010-03-181-1/+1
|
* Include relative path in generated qrc and uic files. Fixes #10413.Clinton Stimpson2010-03-171-2/+2
|
* Change to use FindX11.cmake. Should fix #9929.Clinton Stimpson2010-03-172-54/+26
|
* Add support for libXi.Clinton Stimpson2010-03-171-0/+10
|
* Output times during StopTime test for debuggingZach Mullen2010-03-171-0/+4
|
* Test using std::minZach Mullen2010-03-171-2/+2
|
* Replace min() call with its literal definitionZach Mullen2010-03-171-1/+2
|
* ENH: Hook in GetPrerequisites to override item typeMichael Wild2010-03-171-0/+11
| | | | | | The hook is called gp_resolved_file_type_override. Signed-off-by: Michael Wild <themiwi@users.sourceforge.net>
* Move get_date call closer to ctest_test for more predictable results.Zach Mullen2010-03-171-3/+4
|
* Add the --stop-time argumentZach Mullen2010-03-1713-6/+422
| | | | Unit test and script hook for STOP_TIME
* ENH: Clarify a doc string. Fixes #10358.Clinton Stimpson2010-03-171-1/+3
|
* ENH: Modify how OpenGL is searched for, that is, use FindOpenGL.cmake.Clinton Stimpson2010-03-171-17/+5
|
* KWSys Nightly Date StampKWSys Robot2010-03-171-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-161-1/+1
|
* Support multiple arguments in CC,CXX,FC valuesBrad King2010-03-151-0/+1
| | | | | | | | | Teach compiler identification to support values such as export CC='gcc -g -O2' by separating the arguments on spaces. We already do this for the values of CFLAGS, CXXFLAGS, and FFLAGS.
* Default to gcc as the compiler.Bill Hoffman2010-03-151-2/+2
| | | | | | The compiler id is checked for C++ and C, if there is not one of those available, then just default to gcc. This makes it work with Fortran, or None projects.
* Change to UTC for dashboard time.Bill Hoffman2010-03-151-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-151-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-141-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-131-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-121-1/+1
|
* Add errorlevel checking after each custom command in a sequence.David Cole2010-03-111-1/+9
| | | | | | | This makes the behavior of the build with the Visual Studio generators equivalent to the behavior of makefile based builds. After an error in a custom command sequence, the build stops and reports an error rather than executing the remaining commands in the sequence.
* Add a new registry key to check for the location of MPICH2.David Partyka2010-03-111-0/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-111-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-101-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-091-1/+1
|
* BUG #9419: Added wxWidgets_EXCLUDE_COMMON_LIBRARIES option.Miguel A. Figueroa-Villanueva2010-03-071-2/+10
| | | | | | | | | | This allows the user not to link to the common libraries, which are regularly required. The user must specify all libraries that he does want to link in the find_package line (png tiff jpeg zlib regex expat). --HG-- extra : rebase_source : df29f96c957600629a34a1c5fafb8b3d6f274e22
* Fix Qt with OpenGL on the Mac.Bill Hoffman2010-03-101-1/+15
|
* Add CMAKE_TESTS_CDASH_SERVER variable and CTestSubmitLargeOutput test.David Cole2010-03-0810-12/+175
| | | | | | | | | | | | | | | | | | | | | | | | | | | | If defined and non-empty, the value of CMAKE_TESTS_CDASH_SERVER should point to a CDash server willing to accept submissions for a project named PublicDashboard. On machines that also run a CDash dashboard, set this variable to "http://localhost/CDash-trunk-Testing" so that the CMake tests that submit dashboards do not have to send those submissions over the wire. The CTestSubmitLargeOutput test runs a dashboard that has a test that produces very large amount of output on stdout/stderr. Since we do not even want to attempt to send such large output over the wire, this test is off by default unless the CMAKE_TESTS_CDASH_SERVER server is localhost. This test is expected to cause a submission failure when sent to CDash. It passes if the submit results contain error output. It fails if the submit succeeds. CMAKE_TESTS_CDASH_SERVER: CDash server used by CMake/Tests. If not defined or "", this variable defaults to the server at http://www.cdash.org/CDash. If set explicitly to "NOTFOUND", curl tests and ctest tests that use the network are skipped. If set to something starting with "http://localhost/", the CDash is expected to be an instance of CDash used for CDash testing, pointing to a cdash4simpletest database. In these cases, the CDash dashboards should be run first.
* Add .git .bzr and .hg to the list of default CPack ignore directories.Bill Hoffman2010-03-081-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-081-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-071-1/+1
|
* KWSys Nightly Date StampKWSys Robot2010-03-061-1/+1
|
* Fix upload to work with git branch name master.Bill Hoffman2010-03-051-2/+5
|