summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Make UpdateCVS test robust to 1s file time resBrad King2009-04-081-0/+7
| | | | | | | CVS clients recognize file modifications only if a file's timestamp is newer than its CVS/Entries line. This fixes intermittent failure of the test on filesystems with low timestamp resolution by delaying before creating a local modification.
* STYLE: Nightly Date StampBrad King2009-04-081-1/+1
|
* BUG: Fix issue #8682. Use CPACK_NSIS_DISPLAY_NAME in appropriate places ↵David Cole2009-04-071-6/+6
| | | | rather than CPACK_PACKAGE_INSTALL_DIRECTORY. Clean separation of these two variables (which have the same value by default) allows an easy workaround for issue #7881, too.
* BUG: Fix invalid array access discovered during investigation of issue #7832.David Cole2009-04-071-1/+1
|
* STYLE: Nightly Date StampBrad King2009-04-071-1/+1
|
* BUG: Fix parsing of linux 2.6 /proc/meminfo formatBrad King2009-04-061-47/+23
| | | | | | Previously KWSys SystemInformation parsed this file assuming a strict order and set of fields, but the order is not reliable. This generalizes the implementation to support any order and extra fields.
* ENH: Test transitive link to subdir-imported libBrad King2009-04-066-62/+97
| | | | | This tests linking to an imported target that is not visible but is a transitive dependency of a target that is visible. See issue #8843.
* BUG: Lookup transitive link deps in depender scopeBrad King2009-04-062-14/+26
| | | | | | | The transitive link dependencies of a linked target must be followed in its own scope, not in the scope of the original target that depends on it. This is necessary since imported targets do not have global scope. See issue #8843.
* BUG: comment out faulty seekp which make kwsys::*stringstream fails on ↵Mathieu Malaterre2009-04-061-3/+1
| | | | platform with no std::*stringstream implementation
* STYLE: Nightly Date StampBrad King2009-04-061-1/+1
|
* ENH: hopefully seekp is the call making kwsys::stringstream behaves oddly on ↵Mathieu Malaterre2009-04-051-0/+3
| | | | sunos
* STYLE: Nightly Date StampBrad King2009-04-051-1/+1
|
* STYLE: Nightly Date StampBrad King2009-04-041-1/+1
|
* BUG: Fix issue #8759 - add support for setting dmg volume name and ↵David Cole2009-04-031-2/+78
| | | | compression type by CPack variables. Also add custom .DS_Store and background image support. Thanks to Mike Arthur for the patches.
* BUG: Fix documentation deficiency noted in issue #7885. Thanks to Philip ↵David Cole2009-04-031-4/+18
| | | | Lowman for the gist of the patch.
* STYLE: Nightly Date StampBrad King2009-04-031-1/+1
|
* ENH: trying to reproduce issue on sunosMathieu Malaterre2009-04-021-0/+10
|
* STYLE: Nightly Date StampBrad King2009-04-021-1/+1
|
* ENH: Clarify VERBATIM option documentationBrad King2009-04-012-11/+12
| | | | | | | | The previous wording of the VERBATIM option documentation in the add_custom_command and add_custom_target commands was confusing. It could be interpreted as the opposite of what the option means (no escaping instead of escaping). This clarifies the documentation to explicitly state that it escapes.
* STYLE: Nightly Date StampBrad King2009-04-011-2/+2
|
* BUG: Fix issue #8804. Add vtk-5.4 lib path to the FindVTK.cmake module.David Cole2009-03-311-0/+1
|
* ENH: use 0 not FALSEBill Hoffman2009-03-311-1/+1
|
* ENH: add submit via cp modeBill Hoffman2009-03-312-3/+82
|
* STYLE: White space only change to see if continuous is working on new ↵David Cole2009-03-311-1/+0
| | | | dashboard machine...
* STYLE: White space only change to see if continuous is working on new ↵David Cole2009-03-311-0/+1
| | | | dashboard machine...
* ENH: use a newer cmakeBill Hoffman2009-03-311-1/+1
|
* BUG: Fix AddExternalProject config command idBrad King2009-03-311-10/+6
| | | | | | This fixes the get_configure_command_id function to not mistake CONFIGURE_COMMAND values that run "cmake -P" or "cmake -E" for a CMake project configuration. These values just help run scripts.
* STYLE: Nightly Date StampBrad King2009-03-311-1/+1
|
* BUG: Fix inconsistency with lowercase drive letters on Windows.Clinton Stimpson2009-03-301-2/+6
|
* ENH: Simpler AddExternalProject install stepBrad King2009-03-301-21/+8
| | | | This simplifies the implementation with add_external_project_step.
* ENH: Simpler AddExternalProject build stepBrad King2009-03-301-21/+8
| | | | This simplifies the implementation with add_external_project_step.
* ENH: Simpler AddExternalProject configure stepBrad King2009-03-301-41/+24
| | | | This simplifies the implementation with add_external_project_step.
* ENH: Simpler AddExternalProject patch stepBrad King2009-03-301-18/+7
| | | | This simplifies the implementation with add_external_project_step.
* ENH: Simpler AddExternalProject update stepBrad King2009-03-301-79/+26
| | | | This simplifies the implementation with add_external_project_step.
* ENH: Simpler AddExternalProject download stepBrad King2009-03-301-148/+65
| | | | This simplifies the implementation with add_external_project_step.
* ENH: Generalize AddExternalProject step creationBrad King2009-03-302-1/+90
| | | | | | This creates function 'add_external_project_step' to centralize creation of external project steps. Users may call it to add custom steps to external project builds.
* ENH: Factor argument parsing in AddExternalProjectBrad King2009-03-301-42/+49
| | | | | | The add_external_project function parses its arguments and puts them in properties of the target it creates. This factors out implementation of the behavior for use by other functions in the module.
* ENH: Teach AddExternalProject a 'complete' stepBrad King2009-03-301-8/+15
| | | | | This separates creation of the project completion sentinel file from the 'install' step to allow more steps to be added in between later.
* ENH: Add version info to about dialog, including Qt version.Clinton Stimpson2009-03-301-1/+7
|
* COMP: missing string.h header for strlen.Mathieu Malaterre2009-03-301-1/+3
|
* ENH: Document scope of add_custom_command outputsBrad King2009-03-302-4/+10
| | | | | | This explicitly states the scope of add_custom_command rules in the documentation of add_custom_command and add_custom_target. See issue #8815.
* ENH: remote debugging of sunosMathieu Malaterre2009-03-301-2/+13
|
* STYLE: Nightly Date StampBrad King2009-03-301-1/+1
|
* STYLE: Nightly Date StampBrad King2009-03-291-1/+1
|
* STYLE: fix line lenghtBill Hoffman2009-03-281-2/+4
|
* ENH: change qt to 4.5Bill Hoffman2009-03-282-2/+3
|
* STYLE: Nightly Date StampBrad King2009-03-281-1/+1
|
* ENH: mark the two variables as advancedAlexander Neundorf2009-03-271-3/+1
| | | | | | -remove unnecessary deault search dirs Alex
* BUG: fix for #8686 add some more compiler flagsBill Hoffman2009-03-271-0/+11
|
* ENH: LIBPATH is not required for cl to workBill Hoffman2009-03-271-2/+1
|