summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* BUG: Avoid infinite loop at directory tree rootBrad King2009-04-211-1/+3
| | | | | | The system tools GetParentDirectory method no longer removes the root path component. This fixes cmSystemTools::FileExistsInParentDirectories to not infinitely loop at when GetParentDirectory stops at the root.
* ENH: Remove obscure method from KWSys SystemToolsBrad King2009-04-214-31/+31
| | | | | This removes SystemTools::FileExistsInParentDirectories from KWSys since it is a special-purpose method that is not generally useful.
* STYLE: Nightly Date StampBrad King2009-04-211-1/+1
|
* BUG: Fix SystemTools::IsSubDirectory on bad inputBrad King2009-04-201-0/+4
| | | | | | | | When SystemTools::GetParentDirectory was fixed to never remove the root path component from a full path we violated an assumption made by IsSubDirectory that eventually GetParentDirectory returns an empty string. This led to an infinite loop if the potential parent directory is empty, so we explicitly avoid that case.
* STYLE: Nightly Date StampBrad King2009-04-201-1/+1
|
* STYLE: fix typos in the docsAlexander Neundorf2009-04-194-8/+8
| | | | Alex
* STYLE: Nightly Date StampBrad King2009-04-191-1/+1
|
* STYLE: Nightly Date StampBrad King2009-04-181-1/+1
|
* ENH: make sure CTEST_CURL_OPTIONS work from script modeBill Hoffman2009-04-171-0/+2
|
* STYLE: Nightly Date StampBrad King2009-04-171-1/+1
|
* BUG: Path lengths in combo box for binary directory was forcing a minimum sizeClinton Stimpson2009-04-161-3/+1
| | | | on the main window. Fixed that.
* STYLE: Nightly Date StampBrad King2009-04-161-1/+1
|
* BUG: Replace brittle GetParentDirectory implBrad King2009-04-151-25/+1
| | | | | | | The previous change to this method broke cases where the input path does not exist. The SystemTools::GetParentDirectory method is redundant with the more robust SystemTools::GetFilenamePath. This replaces its implementation to just call GetFilenamePath.
* COMP: Fix BOOL to bool conversion warningBrad King2009-04-151-3/+3
| | | | | | The cmSystemTools::RenameFile method returns type bool, but its implementation on Windows returns the result of an API function that returns BOOL. This change avoids the compiler warning.
* BUG: SystemTools::GetParentDirectory() will crash if "/" is passed in as ↵Yumin Yuan2009-04-151-1/+7
| | | | argement. Valid check is added to make sure the input argment exists, and if "/" is passed in, empty string will be returned.
* ENH: Create command line api "cmake -E rename"Brad King2009-04-151-0/+16
| | | | | | This extends the "-E" command line mode with a "rename old new" signature. The new command atomically renames a file or directory within a single disk volume.
* ENH: Create file(RENAME) command modeBrad King2009-04-152-0/+48
| | | | | This creates command "file(RENAME <oldname> <newname>)" to rename a file or directory within a single disk volume.
* ENH: Move RenameFile to cmSystemToolsBrad King2009-04-153-53/+55
| | | | | | This moves the cmGeneratedFileStream::RenameFile method implementation into cmSystemTools. It works only within a single filesystem volume, but is atomic when the operating system permits.
* STYLE: Nightly Date StampBrad King2009-04-151-1/+1
|
* ENH: Skip KWSys name maros in case of identityBrad King2009-04-149-235/+264
| | | | | | | | | | | | | All KWSys C symbol names begin with the KWSYS_NAMESPACE defined at configuration time. For ease of editing we write canonical names with the prefix 'kwsys' and use macros to map them to the configured prefix at preprocessing time. In the case of standalone KWSys, the prefix is 'kwsys', so the macros were previously defined to their own names. We now skip defining the macros in the identity case so that the final symbol names are never themselves macros. This will allow the symbols to be further transformed behind the scenes to help linkers in special cases on some platforms.
* STYLE: Nightly Date StampBrad King2009-04-141-1/+1
|
* STYLE: Nightly Date StampBrad King2009-04-131-1/+1
|
* STYLE: Nightly Date StampBrad King2009-04-121-1/+1
|
* ENH: remove warning and improve messageBill Hoffman2009-04-111-6/+1
|
* STYLE: Nightly Date StampBrad King2009-04-111-1/+1
|
* ENH: remove cerr callBill Hoffman2009-04-101-1/+0
|
* ENH: add ability to control ssl cert checkingBill Hoffman2009-04-101-2/+36
|
* STYLE: Nightly Date StampBrad King2009-04-101-1/+1
|
* STYLE: Nightly Date StampBrad King2009-04-091-1/+1
|
* ENH: Allow IMPORTED_IMPLIB w/o IMPORTED_LOCATIONBrad King2009-04-081-23/+68
| | | | | | Linking to a Windows shared library (.dll) requires only its import library (.lib). This teaches CMake to recognize SHARED IMPORTED library targets that set only IMPORTED_IMPLIB and not IMPORTED_LOCATION.
* BUG: Fix imported target config guessBrad King2009-04-081-1/+1
| | | | | | | When an IMPORTED target provides no generic configuration and no match for a desired configuration then we choose any available configuration. This change corrects the choice when the first listed available configuration does not really have a location.
* STYLE: Nightly Date StampBrad King2009-04-081-1/+1
|
* 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.
* 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
|
* ENH: use 0 not FALSEBill Hoffman2009-03-311-1/+1
|
* ENH: add submit via cp modeBill Hoffman2009-03-312-3/+82
|