summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* CMake Nightly Date StampKitware Robot2015-01-021-1/+1
|
* CMake Nightly Date StampKitware Robot2015-01-011-1/+1
|
* CMake Nightly Date StampKitware Robot2014-12-311-1/+1
|
* CMake Nightly Date StampKitware Robot2014-12-301-1/+1
|
* CMake Nightly Date StampKitware Robot2014-12-291-1/+1
|
* CMake Nightly Date StampKitware Robot2014-12-281-1/+1
|
* CMake Nightly Date StampKitware Robot2014-12-271-1/+1
|
* CMake Nightly Date StampKitware Robot2014-12-261-1/+1
|
* CMake Nightly Date StampKitware Robot2014-12-251-1/+1
|
* Merge topic 'minor-warning-fixes'Brad King2014-12-242-10/+10
|\ | | | | | | | | | | 098fc4a8 cmCMakeMinimumRequired: Use unsigned int for version numbers 1a9ba381 cmParseDelphiCoverage: Remove superfluous semicolons after methods
| * cmCMakeMinimumRequired: Use unsigned int for version numbersChristoph GrĂ¼ninger2014-12-231-8/+8
| |
| * cmParseDelphiCoverage: Remove superfluous semicolons after methodsChristoph GrĂ¼ninger2014-12-231-2/+2
| |
* | Merge topic 'ninja-fix-subdir-objlib-languages'Brad King2014-12-241-2/+15
|\ \ | | | | | | | | | | | | | | | 07fc7b75 Tests: Test using objects from a language enabled in a subdirectory (#15325) fdbfcfdf Ninja: Generate rules only for languages compiled in a target (#15325)
| * | Ninja: Generate rules only for languages compiled in a target (#15325)Brad King2014-12-231-2/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactoring in commit v3.1.0-rc1~688^2~2 (cmTarget: Compute languages from object libraries on demand, 2014-03-18) taught cmTarget::GetLanguages to (correctly) include the languages of object library sources. Previously this was done only in cmTarget::ComputeLinkImplementationLanguages to choose the linker language. The Ninja generator writes out generic build rules for each language compiled within a target using the rule variables defined in the directory of the target. This only needs to be done for languages actually compiled within the current target. Switch from using the cmTarget::GetLanguages method to get the list of languages over to using cmTarget::GetSourceFiles directly so we do not get the languages in object libraries. Strictly speaking this should make no difference because it is not safe to use objects from a language not enabled in the directory containing a target or else the link information for the language may not be considered. However, in cases when no link information happens to be needed for a language it was possible in CMake 3.0 and below to enable a language only in a subdirectory providing an object library, and then use the objects from a containing directory. The above change teaches the Ninja generator to continue working in this case.
* | | Merge topic 'cpack-PackageMaker-package-size'Brad King2014-12-241-0/+1
|\ \ \ | | | | | | | | | | | | | | | | 42ed76bc cpack: Fix installed size computation with PackageMaker generator
| * | | cpack: Fix installed size computation with PackageMaker generatorCalin Cascaval2014-12-221-0/+1
| | | | | | | | | | | | | | | | | | | | Use the CPACK_PACKAGING_INSTALL_PREFIX when looking for files in a component. Otherwise we report all packages having size 1.
* | | | CMake Nightly Date StampKitware Robot2014-12-241-1/+1
| |_|/ |/| |
* | | Merge topic 'ninja-fix-crash-on-error'Brad King2014-12-231-1/+4
|\ \ \ | | |/ | |/| | | | | | | 9a13fcbf Ninja: Do not crash when CMAKE_<LANG>_COMPILE_OBJECT is empty (#15325)
| * | Ninja: Do not crash when CMAKE_<LANG>_COMPILE_OBJECT is empty (#15325)Brad King2014-12-221-1/+4
| | |
| * | CMake 3.1.0v3.1.0Brad King2014-12-151-1/+1
| | |
| * | CMake 3.1.0-rc3v3.1.0-rc3Brad King2014-12-081-1/+1
| | |
| * | Merge branch 'vs-phone-store-deployment-location' into releaseBrad King2014-12-031-0/+15
| |\ \
| * \ \ Merge branch 'vs-hlsl-settings' into releaseBrad King2014-12-031-1/+26
| |\ \ \
| * \ \ \ Merge branch 'fix-wince-unicode-entry-point' into releaseBrad King2014-12-031-2/+16
| |\ \ \ \
| * \ \ \ \ Merge branch 'link-no-empty-response-files' into releaseBrad King2014-12-011-1/+1
| |\ \ \ \ \
| * \ \ \ \ \ Merge branch 'target-sources-error-conditions' into releaseBrad King2014-12-013-3/+44
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge branch 'fix-transitive-OBJECT_SOURCES-context' into releaseBrad King2014-12-011-34/+40
| |\ \ \ \ \ \ \
| * \ \ \ \ \ \ \ Merge branch 'fix-source-case-matching' into releaseBrad King2014-11-261-1/+2
| |\ \ \ \ \ \ \ \
* | \ \ \ \ \ \ \ \ Merge topic 'base64-constref'Brad King2014-12-231-1/+1
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 82fbf490 cmCTestTestHandler: take reference to temporary string instead of doing a copy
| * | | | | | | | | | cmCTestTestHandler: take reference to temporary string instead of doing a copyRolf Eike Beer2014-12-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will increase the lifetime of the temporary until the end of the function.
* | | | | | | | | | | Merge topic 'cleanup-ExpandListArgument-usage'Brad King2014-12-235-67/+11
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e2a489c7 Remove some temporary vectors for ExpandListArgument. 0f99feec cmGeneratorExpression: Remove unused header. 722f1a71 CTest: Expand a string directly into a container.
| * | | | | | | | | | | Remove some temporary vectors for ExpandListArgument.Stephen Kelly2014-12-183-60/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Expand directly into the target when possible.
| * | | | | | | | | | | cmGeneratorExpression: Remove unused header.Stephen Kelly2014-12-181-2/+0
| | | | | | | | | | | |
| * | | | | | | | | | | CTest: Expand a string directly into a container.Stephen Kelly2014-12-181-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change the follow-up loop to use a const_iterator to log the content.
* | | | | | | | | | | | Merge topic 'ctest-coverage-extra-line-error'Brad King2014-12-231-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9c4984b4 ctest_coverage: Fix error message to report the file name
| * | | | | | | | | | | | ctest_coverage: Fix error message to report the file nameVladislav Vinogradov2014-12-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Print file name instead of line content for "Looks like there are more lines in the file:" error message.
* | | | | | | | | | | | | CMake Nightly Date StampKitware Robot2014-12-231-1/+1
| |_|/ / / / / / / / / / |/| | | | | | | | | | |
* | | | | | | | | | | | Merge topic 'macho-parser'Brad King2014-12-225-22/+493
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | c294a115 Mach-O: Use Mach-O parser to extract install names instead of otool. e42da307 Mach-O: Add Mach-O parser for OS X and iOS.
| * | | | | | | | | | | Mach-O: Use Mach-O parser to extract install names instead of otool.Clinton Stimpson2014-12-221-22/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This has much better performance than calling "otool" or "xcrun -r otool" to extract install names for rpath support. Fixes bug #15178.
| * | | | | | | | | | | Mach-O: Add Mach-O parser for OS X and iOS.Clinton Stimpson2014-12-224-0/+481
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This parser also supports fat binaries which archive multiple Mach-O binaries.
* | | | | | | | | | | CMake Nightly Date StampKitware Robot2014-12-221-1/+1
| |_|_|_|_|_|_|_|_|/ |/| | | | | | | | |
* | | | | | | | | | CMake Nightly Date StampKitware Robot2014-12-211-1/+1
| | | | | | | | | |
* | | | | | | | | | CMake Nightly Date StampKitware Robot2014-12-201-1/+1
| | | | | | | | | |
* | | | | | | | | | Merge topic 'update-kwsys'Brad King2014-12-191-0/+16
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2e9acb6d Merge branch 'upstream-kwsys' into update-kwsys 1f7de543 KWSys 2014-12-18 (87c65319)
| * | | | | | | | | | Merge branch 'upstream-kwsys' into update-kwsysBrad King2014-12-181-0/+16
| |/ / / / / / / / /
* | | | | | | | | | Merge topic 'osx-cfbundle-tweaks'Brad King2014-12-192-10/+3
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b189c599 Tests: Run CFBundleTest only with valid configuration 3a605693 Xcode: Call IsCFBundleOnApple to decide if bundle is being built 207b7af0 cmTarget: Use GetCFBundleDirectory within GetFullNameInternal
| * | | | | | | | | | Xcode: Call IsCFBundleOnApple to decide if bundle is being builtGregor Jasny2014-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Narrow down the decision if a CFBundle is built to one place. This is a preparation patch to add another target property which, if set, will imply BUNDLE. Having only one function which will have to look at both properties helps to keep code clean. Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
| * | | | | | | | | | cmTarget: Use GetCFBundleDirectory within GetFullNameInternalGregor Jasny2014-12-171-9/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace duplicated code by call to GetCFBundleDirectory. Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
* | | | | | | | | | | Merge topic 'install-EXPORT-absolute-prefix'Brad King2014-12-192-41/+20
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | dd089e08 install: Allow absolute EXPORT destination with relative targets (#15258)
| * | | | | | | | | | | install: Allow absolute EXPORT destination with relative targets (#15258)Brad King2014-12-152-41/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When install(EXPORT) is given an absolute destination we cannot compute the install prefix relative to the installed export file location. Previously we disallowed installation of targets in such exports with a relative destination, but did not enforce this for target property values besides the location of the main target file. This could lead to broken installations when the EXPORT is installed to an absolute path but usage requirements are specified relative to the install prefix. Since an EXPORT installed to an absolute destination cannot be relocated we can just hard-code the value of CMAKE_INSTALL_PREFIX as the base for relative paths. This will allow absolute install(EXPORT) destinations to work with relative destinations for targets and usage requirements. Extend the ExportImport test with a case covering this behavior.