summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Keep target information in final link lineBrad King2008-09-152-5/+8
| | | | | | | In cmComputeLinkInformation items in the final link line returned by GetItems now contain a pointer to their corresponding cmTarget if they were produced by a target. This makes available the set of all targets linked.
* ENH: Use improved target dependencies for XcodeBrad King2008-09-151-62/+4
| | | | | | | In cmGlobalGenerator we use cmComputeTargetDepends to construct a safe, non-circular set of inter-target dependencies. This change enables use of the results by the Xcode generator. It also removes a lot of old code and another use of the old-style linking logic. See issue #7652.
* STYLE: Nightly Date StampBrad King2008-09-151-1/+1
|
* STYLE: Nightly Date StampBrad King2008-09-141-1/+1
|
* STYLE: Nightly Date StampBrad King2008-09-131-1/+1
|
* STYLE: Nightly Date StampBrad King2008-09-121-1/+1
|
* BUG: make sure flag is found even with extra spaces at the startBill Hoffman2008-09-111-1/+1
|
* ENH: Improve FILE GLOB_RECURSE handling of symlinks with a new CMake policy. ↵David Cole2008-09-116-11/+89
| | | | CMP0009 establishes NEW default behavior of not recursing through symlinks. OLD default behavior or explicit FOLLOW_SYMLINKS argument to FILE GLOB_RECURSE will still recurse through symlinks.
* ENH: add installed size to deb packageBill Hoffman2008-09-111-0/+11
|
* STYLE: Nightly Date StampBrad King2008-09-111-1/+1
|
* ENH: Add version comparison to if() commandBrad King2008-09-102-0/+53
| | | | | | Provide VERSION_LESS, VERSION_EQUAL, and VERSION_GREATER operators in the if() command. This simplifies component-wise comparison of version numbers in the form "major[.minor[.patch[.tweak]]]".
* ENH: Improve find_package version numberingBrad King2008-09-102-88/+65
| | | | | | | | Make the number of version components specified explicitly available. Set variables for unspecified version components to "0" instead of leaving them unset. This simplifies version number handling for find- and config-modules. Also support a fourth "tweak" version component since some packages use them.
* STYLE: Nightly Date StampBrad King2008-09-101-1/+1
|
* BUG: fix for bug 7292, svn parsing flagged errors or conflicts for switched ↵Bill Hoffman2008-09-091-1/+1
| | | | or locked files
* BUG: fix empty /D option for vs6, fix for 7580Bill Hoffman2008-09-091-1/+8
|
* BUG: 0007569 add ability to do -R/-E in ctest_test commandBill Hoffman2008-09-092-3/+22
|
* STYLE: Nightly Date StampBrad King2008-09-091-1/+1
|
* BUG: fix for 7624, vs7 flag table missing /MAPBill Hoffman2008-09-081-1/+2
|
* ENH: Improve message for bad find_package callBrad King2008-09-081-10/+3
| | | | | | Use the new-style error reporting mechanism to provide more context information for a find_package call with a bad package name. When the package is not required, issue a warning instead of an error.
* STYLE: Nightly Date StampBrad King2008-09-081-1/+1
|
* COMP: fix compile warning/error (non-void function returning void)Alexander Neundorf2008-09-072-2/+2
| | | | Alex
* STYLE: Nightly Date StampBrad King2008-09-071-1/+1
|
* ENH: provide the xxx_FIND_QUIETLY, xxx_FIND_REQUIRED and xxx_FIND_VERSION_ ↵Alexander Neundorf2008-09-062-57/+66
| | | | | | | | | variables also in Config mode, so the xxxConfig.cmake files can e.g. test the QUIETLY parameter and print something or not Alex
* STYLE: Nightly Date StampBrad King2008-09-061-1/+1
|
* BUG: Fix issue #7046 - make sure extensionless headers and resource files ↵David Cole2008-09-051-17/+31
| | | | work with the Xcode generator. Also fix incorrect mappings in the lastKnownFileType code. Add some extensionless files to the Framework test.
* STYLE: Nightly Date StampBrad King2008-09-051-1/+1
|
* ENH: Allow a custom list of debug configurationsBrad King2008-09-049-45/+127
| | | | | | Create a DEBUG_CONFIGURATIONS global property as a way for projects to specify which configuration names are considered to be 'debug' configurations.
* BUG: fix extra close that killed cmake when being debuggedBill Hoffman2008-09-041-15/+7
|
* BUG: Fix typo in get_property documentationBrad King2008-09-041-1/+1
| | | | Add some missing whitespace to fix formatting of the documentation.
* BUG: Fix unsetting of global propertiesBrad King2008-09-041-4/+0
| | | | | | | | | The set_property command unsets a property if it is given no value. In the case of GLOBAL properties, the cmake::SetProperty method would replace a NULL value with "NOTFOUND". Instead it should be left as NULL so that the property is unset as expected. Once it is unset the get_cmake_property command will still report NOTFOUND while the get_property command will return the empty string as documented.
* BUG: Make CTest honor user-specified configBrad King2008-09-041-2/+8
| | | | | | When the -C or --build-config option is used to specify the configuration to be tested by CTest, do not override it with the configuration in which CTest is built.
* STYLE: Nightly Date StampBrad King2008-09-041-1/+1
|
* BUG: fix for 7519 extra closing > in fortran projectsBill Hoffman2008-09-031-1/+1
|
* STYLE: Nightly Date StampBrad King2008-09-031-1/+1
|
* BUG: Fix issue #3648 - make sure CMake reruns if a Bundle application's ↵David Cole2008-09-021-0/+2
| | | | directory is removed or if it's Info.plist file disappears since those elements are put in place at CMake configure time.
* ENH: Create Info.plist files in OS X FrameworksBrad King2008-09-026-3/+91
| | | | | | | A Mac OS X Framework should provide a Resources/Info.plist file containing meta-data about the framework. This change generates a default Info.plist for frameworks and provides an interface for users to customize it.
* ENH: Simplify string attributes in Xcode generatorBrad King2008-09-023-40/+36
| | | | | | | This change cleans up the implementation of cmXCodeObject to avoid un-escaping and re-escaping string values. There is no need to store the string in escaped form. It can be escaped once when it is printed out to the generated project file.
* STYLE: Nightly Date StampBrad King2008-09-021-1/+1
|
* STYLE: Nightly Date StampBrad King2008-09-011-2/+2
|
* STYLE: Nightly Date StampBrad King2008-08-311-1/+1
|
* STYLE: Nightly Date StampBrad King2008-08-301-1/+1
|
* BUG: Link flags should still be chainedBrad King2008-08-291-4/+1
| | | | | | | The recent fix to avoid including flags in dependency inferral also dropped them from chaining of dependencies through targets. This fix restores chaining of flags through known dependency lists while still leaving them out of inferred dependency lists.
* STYLE: Nightly Date StampBrad King2008-08-291-1/+1
|
* BUG: A -framework Foo is also a libBrad King2008-08-291-1/+2
|
* BUG: Fix previous fix.Brad King2008-08-291-1/+1
|
* BUG: When recognizing flags on link lines, we must still treat -l as a library.Brad King2008-08-291-1/+1
|
* STYLE: Nightly Date StampBrad King2008-08-281-1/+1
|
* COMP: Do not use private typedef from outside class.Brad King2008-08-271-1/+1
|
* ENH: New link line item ordering algorithmBrad King2008-08-272-153/+241
| | | | | | | | | This change introduces a new algorithm for link line construction. The order it computes always begins with the exact link line specified by the user. Dependencies of items specified by the user are tracked, and those that are not already satisified by the line are appended to it at the end with minimal repeats. This restores the behavior of CMake 2.4 and below while still fixing some of its bugs. See issue #7546.
* BUG: Do not infer dependencies of link flagsBrad King2008-08-272-5/+14
| | | | | | | In cmComputeLinkDepends link items that look like flags (starting in '-') should not be included in dependency inferral. They are not libraries and therefore have no dependencies. They should just be passed through to the final link line unchanged. See issue #7546.