summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* 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: 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
|
* STYLE: Nightly Date StampBrad King2009-03-281-1/+1
|
* 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
|
* STYLE: Nightly Date StampBrad King2009-03-271-1/+1
|
* BUG: Don't return checkable flag for item when in the middle of ↵Clinton Stimpson2009-03-261-0/+1
| | | | configure/generate.
* STYLE: Nightly Date StampBrad King2009-03-261-1/+1
|
* BUG: Fix CMAKE_CURRENT_LIST_FILE in macrosBrad King2009-03-251-5/+1
| | | | | | | | | | | | | | | | | | | | | The value of CMAKE_CURRENT_LIST_FILE is supposed to be the list file currently being executed. Before macros were introduced this was always the context of the argument referencing the variable. Our original implementation of macros replaced the context of command arguments inside the macro with that of the arguments of the calling context. This worked recursively, but only worked when macros had at least one argument. Furthermore, it caused parsing errors of the arguments to report the wrong location (calling context instead of line with error). The commit "Improve context for errors in macros" fixed the latter bug by keeping the lexical context of command arguments in macros. It broke evaluation of CMAKE_CURRENT_LIST_FILE because the calling context was no longer preserved in the argument referencing the variable. However, since our list file processing now maintains the proper value of CMAKE_CURRENT_LIST_FILE with dynamic scope we no longer need the context of the argument and can just evaluate the variable normally.
* STYLE: Nightly Date StampBrad King2009-03-251-1/+1
|
* STYLE: Nightly Date StampBrad King2009-03-241-1/+1
|
* ENH: Support preprocessor def values in VS6Brad King2009-03-234-8/+8
| | | | | | | | | The add_definitions() command and COMPILE_DEFINITIONS dir/tgt/src properties support preprocessor definitions with values. Previously values were not supported in the VS6 generator even though the native tool supports them. It is only values with spaces that VS6 does not support. This enables support and instead complains only for values with spaces. See issue #8779.
* STYLE: Nightly Date StampBrad King2009-03-231-1/+1
|
* STYLE: Nightly Date StampBrad King2009-03-221-1/+1
|
* STYLE: Nightly Date StampBrad King2009-03-211-1/+1
|
* BUG: Fix return value of ctest_updateBrad King2009-03-202-4/+4
| | | | | | | The CTest version control refactoring broke the value returned for the ctest_update command's RETURN_VALUE argument. The value is supposed to be the number of files updated, but the refactoring accidentally made it the number of locally modified files after the update.
* STYLE: Nightly Date StampBrad King2009-03-201-1/+1
|
* COMP:Fixed warnings with gcc 4.3.2.Francois Bertel2009-03-202-45/+94
|
* COMP:Try to fix error on HP.Francois Bertel2009-03-191-1/+1
|
* ENH: Mention CMAKE_* variables in RPATH propertiesBrad King2009-03-191-4/+13
| | | | | | The RPATH target properties are initialized by CMAKE_<prop> variables at target creation time. This notes the feature in the property documentation. It is already noted in the variable documentation.
* COMP:try to fix error on qnx-V3.3.5-gcc_ntox86.Francois Bertel2009-03-191-1/+1
|
* COMP:Fixed warnings.Francois Bertel2009-03-191-4/+4
|