summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Remove implicit NO_MODULE when recursingBrad King2008-10-082-23/+15
| | | | | | | | | Recently we taught find_package that the NO_MODULE option is implied when it is recursively invoked in a find-module. This behavior may be confusing because two identical calls may enter different modes depending on context. It also disallows the possibility that one find-module defers to another find-module by changing CMAKE_MODULE_PATH and recursively invoking find_package. This change reverts the feature.
* STYLE: Nightly Date StampBrad King2008-10-081-1/+1
|
* ENH: add missing property definitionsBill Hoffman2008-10-071-0/+26
|
* BUG: fix for 4524, add support for target properties to set vs source code ↵Bill Hoffman2008-10-072-3/+32
| | | | control information
* ENH: Fix #7784. Fix link of glib when needed.Clinton Stimpson2008-10-071-6/+7
|
* STYLE: Nightly Date StampBrad King2008-10-071-1/+1
|
* BUG: Fix convenience rule working directoryBrad King2008-10-061-3/+3
| | | | | | | We generate convenience rules to build object files, preprocessed outputs, and assembly outputs of source files individually with make rules. This removes a redundant working directory change when more than one target builds the same source file.
* STYLE: Nightly Date StampBrad King2008-10-061-1/+1
|
* STYLE: Nightly Date StampBrad King2008-10-051-1/+1
|
* STYLE: Nightly Date StampBrad King2008-10-041-1/+1
|
* ENH: Add UNSUITABLE result to package version testBrad King2008-10-033-7/+26
| | | | | | | Package version test files may now declare that they are unsuitable for use with the project testing them. This is important when the version being tested does not provide a compatible ABI with the project target environment.
* ENH: Help recursive find_package calls in modulesBrad King2008-10-036-3/+54
| | | | | | | These changes teach find_package to behave nicely when invoked recursively inside a find-module for the same package. The module will never be recursively loaded again. Version arguments are automatically forwarded.
* ENH: Warn and ignore EXACT without versionBrad King2008-10-031-0/+8
| | | | | If the find_package command is invoked with the EXACT option but without a version, warn and ignore the option.
* BUG: Fix config test for target install rulesBrad King2008-10-032-55/+37
| | | | | | | | | | | | In single-configuration generators a target installation rule should apply to all configurations for which the INSTALL command was specified. The configuration in which the target is built does not matter. In multi-configuration generators each installation rule must be associated with a particular build configuration to install the proper file. The set of configurations for which rules are generated is the intersection of the build configurations and those for which the INSTALL command was specified.
* ENH: undo bad checkinBill Hoffman2008-10-031-9/+0
|
* STYLE: Nightly Date StampBrad King2008-10-031-1/+1
|
* STYLE: add documentation for the "TYPE" target propertyAlexander Neundorf2008-10-021-0/+7
| | | | Alex
* BUG: 7763 fix, OPTIMIZATION was not set right. Also fix for BUG 7764, put ↵Bill Hoffman2008-10-021-16/+14
| | | | XCODE_ATTRIBUTES_ last
* BUG: fix for 5705, link in standard libs for mingwBill Hoffman2008-10-021-0/+2
|
* STYLE: fix line length issuesBill Hoffman2008-10-024-16/+32
|
* STYLE: Nightly Date StampBrad King2008-10-021-1/+1
|
* BUG: fix for 6280, -E time was not sending back return valueBill Hoffman2008-10-011-3/+3
|
* ENH: find perl with FindPerl not find_program, bug: 6243Bill Hoffman2008-10-011-1/+2
|
* BUG: fix for 7451Bill Hoffman2008-10-011-0/+12
|
* BUG: fix for bug 4772, enable_language should now work on linux with correct ↵Bill Hoffman2008-10-012-2/+14
| | | | flags
* ENH: add new sgi release scriptsBill Hoffman2008-10-012-0/+28
|
* BUG: undo fix for 7292 because a switched file should show up as an odd ↵Bill Hoffman2008-10-011-1/+1
| | | | thing on the dashbaord
* STYLE: fix hidden variable warningBill Hoffman2008-10-011-2/+2
|
* BUG: fix for 7738, allow for spaces in the package target path to ↵Bill Hoffman2008-10-012-15/+25
| | | | CPackConfig files
* STYLE: fix line length stuff for KWStyleBill Hoffman2008-10-0115-63/+112
|
* STYLE: Nightly Date StampBrad King2008-10-011-2/+2
|
* STYLE: Nightly Date StampBrad King2008-09-301-1/+1
|
* ENH: fix syntax errorBill Hoffman2008-09-291-1/+1
|
* ENH: check in ability to build with new curl -f -DCMAKE_USE_NEW_CURL is setBill Hoffman2008-09-297-7/+20
|
* STYLE: Nightly Date StampBrad King2008-09-291-1/+1
|
* STYLE: Nightly Date StampBrad King2008-09-281-1/+1
|
* COMP: Avoid incompatible pointer warningBrad King2008-09-271-0/+3
| | | | | | In SharedForward, the call to execvp warned on MinGW because the signature declared in process.h has an extra const. We use an explicit cast to convert the pointer type.
* STYLE: Nightly Date StampBrad King2008-09-271-1/+1
|
* BUG: fix for 7746Bill Hoffman2008-09-271-0/+1
|
* ENH: fix suffix stuffBill Hoffman2008-09-261-5/+9
|
* ENH: generate curlbuild.hBill Hoffman2008-09-264-24/+159
|
* ENH: Add test for KWSys SharedForwardBrad King2008-09-262-0/+45
| | | | | This tests the basic capability of running another executable from the build tree.
* BUG: Fix SharedForward with spaces on windowsBrad King2008-09-261-1/+168
| | | | | The windows execvp function does not re-escape arguments correctly. Instead we generate the escape sequences before calling it.
* BUG: Fix SharedForward in-tree detectionBrad King2008-09-261-1/+33
| | | | | | | To detect when the launcher is running from the build tree we now test if the directory containing it is the same as the build-tree directory using an inode test instead of string comparison. This makes it more robust on case-insensitive filesystems and other quirky situations.
* COMP: Avoid 64-to-32-bit integer conversion warningBrad King2008-09-261-2/+2
| | | | | In SharedForward we are only dealing with command-line-length strings so we need not worry about integer overflow.
* STYLE: Nightly Date StampBrad King2008-09-261-1/+1
|
* BUG: fix for 7704Bill Hoffman2008-09-251-0/+6
|
* BUG: fix for bug 7733, document that debug try compile may break the buildBill Hoffman2008-09-251-1/+5
|
* ENH: Create $CACHE{VAR} syntaxBrad King2008-09-252-1/+30
| | | | | This syntax allows reading of cache entries even when variables of the same name have been defined in the local scope. See issue #7715.
* STYLE: Nightly Date StampBrad King2008-09-251-1/+1
|