summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* STYLE: Nightly Date StampBrad King2008-10-111-1/+1
|
* BUG: Fix for issue #5193. Base result of FindMFC.cmake mostly on a ↵David Cole2008-10-101-12/+40
| | | | TRY_COMPILE result. Gives accurate answer about whether MFC is available.
* BUG: Fix issue #7800. Enable CPack to find the NSIS installer on Windows 2000.David Cole2008-10-101-7/+11
|
* ENH: Improve generated documentation formattingBrad King2008-10-1010-27/+163
| | | | | | | | | | | | Applying patch provided in issue #7797. Fixes to man-pages: - Character '-' must be espaced as '\-' - Surround preformatted text with '.nf' and '.fi' to adjust filling - Give every page a NAME section for indexing by mandb - Pass the man page filename without extension to .TH in its header Also added a title to the HTML header.
* BUG: Fix help type for filenames with many dotsBrad King2008-10-101-1/+1
| | | | | The help page type should be determined using only the extension after the last dot. See issue #7797.
* STYLE: Fix typo in GetFilenameLastExtension docsBrad King2008-10-101-1/+1
| | | | See issue #7797.
* BUG: fix for 5071, report error if output file can not be openedBill Hoffman2008-10-101-0/+7
|
* BUG: fix for 3778, better docs for -EBill Hoffman2008-10-101-1/+5
|
* ENH: play it safe and restore the value of LC_MESSAGESBill Hoffman2008-10-101-1/+17
|
* ENH: make sure LC_MESSAGES is en_EN so that we can parse the output of svn ↵Bill Hoffman2008-10-101-0/+8
| | | | and cvs
* STYLE: Fix line-too-longBrad King2008-10-101-1/+2
|
* STYLE: Nightly Date StampBrad King2008-10-101-1/+1
|
* BUG: Avoid boost versions less than requiredBrad King2008-10-091-14/+31
| | | | | | Construction of a list of candidate versions used to produce search paths now discards versions less than requested by the user. See issue #7783.
* ENH: Fix optional use of relative paths.Brad King2008-10-097-55/+164
| | | | | | | These changes refactor cmLocalGenerator methods Convert and ConvertToOutputForExisting to support references inside the build tree using relative paths. After this commit, all tests pass with Makefile generators when relative paths are enabled by default. See issue #7779.
* ENH: Simplify makefile ref to interactive editorBrad King2008-10-091-3/+3
| | | | | | The CMAKE_EDIT_COMMAND make variable need not be constructed with ConvertToOutputForExisting. The CMAKE_COMMAND variable works fine without it.
* ENH: Simplify framework -F flag generationBrad King2008-10-092-4/+8
| | | | | This removes an unnecessary use of ConvertToOutputForExisting which is needed only on Windows to consider short-pathing.
* BUG: Pass definitions to rc with MakefilesBrad King2008-10-091-1/+1
| | | | | | The build rule to run the resource compiler on Windows with a Makefiles generator should include the placeholder to add the definition flags. See issue #7769.
* BUG: Finish fix to old DEFINITIONS propertyBrad King2008-10-091-0/+2
| | | | | | | The cmMakefile::DefineFlagsOrig ivar was created to help preserve the old DEFINITIONS property behavior now that definitions are moved from DefineFlags to the COMPILE_DEFINITIONS directory property. This fixes propagation of the original value into subdirectories.
* BUG: fix for 5218 Error message pattern match for VS8Bill Hoffman2008-10-091-1/+2
|
* BUG: fix for 4026, display a message if ccmake has errorsBill Hoffman2008-10-091-4/+5
|
* ENH: Put custom target sources in Xcode projectsBrad King2008-10-092-24/+62
| | | | | Source files in custom targets are now placed in the Xcode project for convenient editing. See issue #5848.
* ENH: Allow custom sources in custom targetsBrad King2008-10-093-5/+26
| | | | | | | This adds a SOURCES option to ADD_CUSTOM_TARGET, enabling users to specify extra sources for inclusion in the target. Such sources may not build, but will show up in the IDE project files for convenient editing. See issue #5848.
* ENH: Return utility target after creationBrad King2008-10-092-12/+14
| | | | | | After creating a utility target with AddUtilityCommand, return a pointer to the cmTarget instance so the caller may further modify the target as needed.
* STYLE: Nightly Date StampBrad King2008-10-091-1/+1
|
* STYLE: lowercase ctest_test() in the documentationAlexander Neundorf2008-10-081-1/+1
| | | | Alex
* BUG: Fix issue #7533. Revise fix for issue #7058 to use pragma comment libs ↵David Cole2008-10-082-13/+25
| | | | in the source file rather than using TARGET_LINK_LIBRARIES in CMakeLists.txt because of the complex ifdef logic used in correct copies of comdef.h.
* 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
|