summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Features: Record cxx_variable_templates for GNU 5.0.Stephen Kelly2015-01-011-0/+7
|
* Merge topic 'copyright-year'Brad King2015-01-011-1/+1
|\ | | | | | | | | f881c6ba Copyright.txt: Update year range to end in 2015
| * Copyright.txt: Update year range to end in 2015Brad King2015-01-011-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 'sunpro-Fortran-preprocess'Brad King2014-12-241-1/+1
|\ | | | | | | | | be1109d8 Oracle/Sun: Fix Fortran preprocessor rule generation
| * Oracle/Sun: Fix Fortran preprocessor rule generationBrad King2014-12-231-1/+1
| | | | | | | | | | | | | | | | | | The SunPro Fortran compiler uses "-F" instead of "-E" to request preprocessing. The output does not go to stdout so use "-o" to specify the output file. This fixes the guess originally made by commit b6b37e30 (Makefile: Add assembly and preprocessed targets for Fortran, 2014-11-05).
* | 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-246-2/+25
|\ \ | | | | | | | | | | | | | | | 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)
| * | Tests: Test using objects from a language enabled in a subdirectory (#15325)Brad King2014-12-235-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | Add a test case that enables CXX in the top level and C in a subdirectory. Create an executable in the top level that uses C objects compiled in the subdirectory. Strictly speaking this is not defined behavior for all language combinations, but happens to work in this case. Test this behavior since projects might try to use it.
| * | 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 branch 'release'Brad King2014-12-230-0/+0
|\ \ \
| * \ \ Merge branch 'ninja-fix-crash-on-error' into releaseBrad King2014-12-231-1/+4
| |\ \ \ | | | |/ | | |/|
| * | | Merge branch 'CPackComponent-docs-fix' into releaseBrad King2014-12-221-2/+2
| |\ \ \
| * \ \ \ Merge branch 'backport-suncc-fixes' into releaseBrad King2014-12-221-2/+3
| |\ \ \ \
* | \ \ \ \ Merge topic 'doc-octothorpe-escaping'Brad King2014-12-231-0/+22
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8d70a914 Help: Add 3.1 release note about '#' escaping in Makefiles (#15322)
| * | | | | | Help: Add 3.1 release note about '#' escaping in Makefiles (#15322)Brad King2014-12-231-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The change in commit v3.1.0-rc1~174^2 (Makefile: Handle '#' in COMPILE_OPTIONS, 2014-08-12) was not compatible with code that tries to workaround the original bug. Unfortunately there is no good way to fix the bug in a compatible way. Add a release note to call attention to the change.
* | | | | | | 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
| |/ / / / /
* | | | | | 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 'CPackComponent-docs-fix'Brad King2014-12-231-2/+2
|\ \ \ \ \ \ \ | | |_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | 64016393 Help: Small fixes in CPackComponent documentation
| * | | | | | Help: Small fixes in CPackComponent documentationDaniele E. Domenichelli2014-12-221-2/+2
| | |/ / / / | |/| | | |
* | | | | | Merge topic 'AppleClang-5.1-features'Brad King2014-12-238-7/+121
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bb83cdaa Help: Add notes for topic 'AppleClang-5.1-features' bd6b42c1 Features: Record for AppleClang 5.1 b341799e Tests: Fix RunCMake.CompileFeatures test NonValidTarget2 case
| * | | | | | Help: Add notes for topic 'AppleClang-5.1-features'Brad King2014-12-231-0/+5
| | | | | | |
| * | | | | | Features: Record for AppleClang 5.1Stephen Kelly2014-12-226-7/+114
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Apple's Clang 5.1 already supports most of the C and C++ features CMake enumerates.
| * | | | | | Tests: Fix RunCMake.CompileFeatures test NonValidTarget2 caseBrad King2014-12-221-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mark the generated source file with the GENERATED property explicitly since it is not marked automatically as the output of any custom command. Mark both the 0 and 1 variants so it works no matter the outcome of the generator expression.
* | | | | | | 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.
* | | | | | | | | Merge topic 'add-FindGSL'Brad King2014-12-238-0/+296
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1b28e3b2 FindGSL: Add module to find the GNU Scientific Library
| * | | | | | | | | FindGSL: Add module to find the GNU Scientific LibraryKelly Thompson2014-12-178-0/+296
| | | | | | | | | |
* | | | | | | | | | CMake Nightly Date StampKitware Robot2014-12-231-1/+1
| |_|_|_|_|/ / / / |/| | | | | | | |
* | | | | | | | | Merge topic 'backport-suncc-fixes'Brad King2014-12-220-0/+0
|\ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | 107dcac3 Fix compilation with the Oracle / Sun compiler (#15318)
| * | | | | | | | Fix compilation with the Oracle / Sun compiler (#15318)Chuck Atkins2014-12-181-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | One piece of code has some ambiguous type deduction that seems to resolve correctly for most compilers but not for the Oracle compiler. Make it more explicit.
* | | | | | | | | 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.