summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* BUG: fix cpu info stringBill Hoffman2008-12-041-1/+1
|
* BUG: make sure list is not size 0 before sortBill Hoffman2008-12-041-2/+4
|
* ENH: allow startup command to be optionalBill Hoffman2008-12-041-27/+22
|
* BUG: fix for bug #8216Bill Hoffman2008-12-041-7/+6
|
* STYLE: Nightly Date StampBrad King2008-12-041-1/+1
|
* ENH: fix curses on haikuBill Hoffman2008-12-032-6/+22
|
* BUG: fix for rc and vs6Bill Hoffman2008-12-035-25/+66
|
* BUG: #7904 add rpm package dependBill Hoffman2008-12-031-3/+19
|
* STYLE: Nightly Date StampBrad King2008-12-031-1/+1
|
* ENH: disable ftp check because it is no longer active on publicBill Hoffman2008-12-021-1/+2
|
* STYLE: Nightly Date StampBrad King2008-12-021-1/+1
|
* BUG: Do not require CMAKE_AR in the MSYS Makefiles generator when enabling ↵David Cole2008-12-011-1/+4
| | | | language "NONE".
* STYLE: Nightly Date StampBrad King2008-12-011-2/+2
|
* STYLE: Nightly Date StampBrad King2008-11-301-1/+1
|
* STYLE: Nightly Date StampBrad King2008-11-291-1/+1
|
* STYLE: Fix line length style violation.David Cole2008-11-281-1/+2
|
* STYLE: Nightly Date StampBrad King2008-11-281-1/+1
|
* STYLE: Nightly Date StampBrad King2008-11-271-1/+1
|
* ENH: fix warning on HPUXBill Hoffman2008-11-261-1/+4
|
* COMP: Using the proper type for local variables can eliminate compiler warnings.David Cole2008-11-261-1/+1
|
* ENH: Implement feature request from issue 7885. Allow setting environment ↵David Cole2008-11-2610-9/+163
| | | | variables on a per-test basis for ctest using set_test_properties ENVIRONMENT.
* STYLE: Nightly Date StampBrad King2008-11-261-1/+1
|
* BUG: Revert 1.138.Clinton Stimpson2008-11-251-14/+23
|
* BUG: Do not map install_name of imported targetsBrad King2008-11-251-1/+8
| | | | | | | | | | | | When we install a target on Mac, we generate a call to install_name_tool to fix install_name entries in the target for shared libraries it links. This change makes the step ignore entries for imported targets since their install_name will not change and cmTarget cannot produce a mapping for them. This fixes the error GetLibraryNamesInternal called on imported target: kdelibs seen by kde folks.
* BUG: the return value of scanf should not be ignoredAmitha Perera2008-11-251-1/+5
|
* STYLE: Nightly Date StampBrad King2008-11-251-1/+1
|
* STYLE: Nightly Date StampBrad King2008-11-241-1/+1
|
* ENH: make it submit to cdashBill Hoffman2008-11-241-3/+7
|
* ENH: add more debug stuff to CTestCTest2 so I can figure out redwallBill Hoffman2008-11-234-1/+24
|
* STYLE: Nightly Date StampBrad King2008-11-231-1/+1
|
* STYLE: Nightly Date StampBrad King2008-11-221-1/+1
|
* ENH: make ctest more verbose so that we can see failure on redwallBill Hoffman2008-11-211-1/+1
|
* BUG: fix issue with -D and cache forceBill Hoffman2008-11-213-4/+11
|
* ENH: make this test pass if new curl is onBill Hoffman2008-11-213-3/+3
|
* BUG: fix for 8123 documentation issueBill Hoffman2008-11-211-1/+4
|
* STYLE: Nightly Date StampBrad King2008-11-211-1/+1
|
* ENH: only link in curl directories that exist, this will help with vs6 nmakeBill Hoffman2008-11-203-9/+18
|
* STYLE: Nightly Date StampBrad King2008-11-201-1/+1
|
* ENH: make it work if new curl is onBill Hoffman2008-11-193-12/+9
|
* STYLE: Nightly Date StampBrad King2008-11-191-1/+1
|
* ENH: make it work if new curl is onBill Hoffman2008-11-183-3/+15
|
* ENH: add gfortran-4Bill Hoffman2008-11-181-1/+1
|
* STYLE: Nightly Date StampBrad King2008-11-181-1/+1
|
* STYLE: Nightly Date StampBrad King2008-11-171-1/+1
|
* STYLE: Nightly Date StampBrad King2008-11-161-1/+1
|
* STYLE: Nightly Date StampBrad King2008-11-151-1/+1
|
* BUG: fix for #8089, fix rebuild with fortran and -DBill Hoffman2008-11-141-1/+27
|
* STYLE: Nightly Date StampBrad King2008-11-141-1/+1
|
* BUG: Because of Windows registry madness, we could not find the ↵David Cole2008-11-131-7/+17
| | | | redistributables directory on Win64 builds... Add a search directory based on devenv (CMAKE_MAKE_PROGRAM) location so we can find it despite the madness.
* BUG: the modules shipped with cmake don't needAlexander Neundorf2008-11-131-2/+1
| | | | | | | | | CMAKE_MINIMUM_REQUIRED(VERSION), because the cmake they are shipped with is always ok. Additionally, if a Find-module does CMAKE_MINIMUM_REQUIRED(), it changes the policies as they may be set up by the project. So this shouldn't be done in a Find-module (or surrounded by policy-push/pop commands) Alex