summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* cmGeneratorTarget: Adopt Fortran module directory generationTobias Hunger2016-06-175-46/+43
| | | | | | | | | Move code to create/get the fortran module directory from the cmCommonTargetGenerator to cmGeneratorTarget. Rename the ComputeFortranModuleDirectory method to CreateFortranModuleDirectory as this method *creates* the directory if it is missing.
* Refactor Makefile/Ninja tool working directory storageBrad King2016-06-178-16/+23
| | | | | Move cmCommonTargetGenerator::WorkingDirectory to cmLocalCommonGenerator and add an access method.
* Merge topic 'xcode-mig-support'Brad King2016-06-173-22/+69
|\ | | | | | | | | | | | | | | | | | | 8be00e44 Help: Add release note about XCODE_FILE_ATTRIBUTES source file property 27eb657d Xcode: Add support for mig files 811f6c82 Xcode: Add XCODE_FILE_ATTRIBUTES source file property ef494edf Xcode: Don't emit empty settings blocks. 82ebbf68 Xcode: Add function to conditionally add Xcode Attributes 025edea0 Xcode: Add const qualifiers
| * Xcode: Add support for mig filesJames Touton2016-06-171-0/+2
| |
| * Xcode: Add XCODE_FILE_ATTRIBUTES source file propertyJames Touton2016-06-171-0/+14
| | | | | | | | This adds values to the ATTRIBUTES list in PBXBuildFile settings.
| * Xcode: Don't emit empty settings blocks.James Touton2016-06-171-6/+7
| |
| * Xcode: Add function to conditionally add Xcode AttributesGregor Jasny2016-06-172-0/+25
| |
| * Xcode: Add const qualifiersJames Touton2016-06-171-16/+21
| |
* | Merge topic 'link_what_you_use'Brad King2016-06-175-6/+79
|\ \ | | | | | | | | | | | | | | | a0902efa Help: Add notes for topic 'link_what_you_use' 96242f80 Add options to run `ldd -u -r` as a "link-what-you-use" tool
| * | Add options to run `ldd -u -r` as a "link-what-you-use" toolBill Hoffman2016-06-175-6/+79
| | | | | | | | | | | | | | | | | | | | | Create a LINK_WHAT_YOU_USE target property and corresponding CMAKE_LINK_WHAT_YOU_USE variable to enable this behavior. Extend link commands by running `ldd -u -r` to detect shared libraries that are linked but not needed.
* | | Merge topic 'CodeBlocks-generated-sources'Brad King2016-06-171-2/+4
|\ \ \ | | | | | | | | | | | | | | | | afd6cc6b CodeBlocks: Show generated files in non-utility targets
| * | | CodeBlocks: Show generated files in non-utility targetsEnrico Bedau2016-06-161-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since 2.6.3 the UTILITY target may have source files. A defect was filed that these files are now visible in the source tree. A fix later removed all generated files from the source tree, regardless of the target type. You can't even include them by using the SOURCES option. This fix adds generated files again, except for the UTILITY target which cluttered the source tree. Fixes #14272.
* | | | Merge topic 'CodeBlocks-include-order'Brad King2016-06-171-7/+11
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 76b462ea cmExtraCodeBlocksGenerator: Do not shuffle include directories
| * | | | cmExtraCodeBlocksGenerator: Do not shuffle include directoriesTobias Hunger2016-06-171-7/+11
| | | | | | | | | | | | | | | | | | | | | | | | | Report include directories in a sensible order. Do not shuffle them when trying to make them unique.
* | | | | CMake Nightly Date StampKitware Robot2016-06-171-1/+1
| | | | |
* | | | | Merge topic 'cmOutputConverter-stringstream'Brad King2016-06-162-192/+39
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | d645b03e cmOutputConverter: implement Shell__GetArgument using ostringstream
| * | | | | cmOutputConverter: implement Shell__GetArgument using ostringstreamDaniel Pfeifer2016-06-152-192/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes the need to calculate the resulting string length beforehand.
* | | | | | Merge topic 'cleanup-streams'Brad King2016-06-1627-69/+69
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ed5fa48d cmXMLWriter: use ifstream from KWSys 24ab29b8 Prefer istringstream and ostringstream over stringstream. ab8b77dd Remove redundant arguments from fstream constructors eb79fa72 Access std::ios_base with std::ios
| * | | | | | cmXMLWriter: use ifstream from KWSysDaniel Pfeifer2016-06-141-2/+2
| | | | | | |
| * | | | | | Prefer istringstream and ostringstream over stringstream.Daniel Pfeifer2016-06-1417-55/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Use istringsream for parsing, ostringstream for generation.
| * | | | | | Remove redundant arguments from fstream constructorsDaniel Pfeifer2016-06-146-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't pass the default value of the openmode parameter explicitly.
| * | | | | | Access std::ios_base with std::iosDaniel Pfeifer2016-06-143-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Just because it is shorter.
* | | | | | | Merge topic 'iwyu-preparation'Brad King2016-06-166-84/+163
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1c2c6297 cmTargetLinkLibraryType: Extract from cmStandardIncludes.h ffdc0a8e cmTypeMacro: Extract from cmStandardIncludes.h e4eb88e2 cmCustomCommandLines: Extract from cmStandardIncludes.h 535ec2bf cmDocumentationEntry: Extract from cmStandardIncludes c3819aca cmConfigure.h: Establish as 'include first' file
| * | | | | | | cmTargetLinkLibraryType: Extract from cmStandardIncludes.hDaniel Pfeifer2016-06-162-7/+23
| | | | | | | |
| * | | | | | | cmTypeMacro: Extract from cmStandardIncludes.hDaniel Pfeifer2016-06-162-22/+38
| | | | | | | |
| * | | | | | | cmCustomCommandLines: Extract from cmStandardIncludes.hDaniel Pfeifer2016-06-162-18/+39
| | | | | | | |
| * | | | | | | cmDocumentationEntry: Extract from cmStandardIncludesDaniel Pfeifer2016-06-132-25/+46
| | | | | | | |
| * | | | | | | cmConfigure.h: Establish as 'include first' fileDaniel Pfeifer2016-06-132-12/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At the moment, cmStandardIncludes.h needs to be included before any standard includes because it disables some warnings that are caused by the standard library of some compilers. Move this responsibility to the cmConfigure.h file. Also add include guards to cmConfigure.h to make sure the file can be included multiple times.
* | | | | | | | Merge topic 'clean-up-cmMakefile-IssueMessage'Brad King2016-06-162-6/+7
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5bbcf758 cmIfCommand: Don't rely on NestedError logic to issue messages 262ce91e cmMakefile: Extract invoke result variables
| * | | | | | | | cmIfCommand: Don't rely on NestedError logic to issue messagesStephen Kelly2016-06-131-3/+3
| | | | | | | | |
| * | | | | | | | cmMakefile: Extract invoke result variablesStephen Kelly2016-06-131-3/+4
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Make it more clear what is happening here.
* | | | | | | | Merge topic 'clean-up-Parser'Brad King2016-06-163-82/+86
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 905e738f Parser: Out-of-line conditional code to cmMakefile 0a9094cd Parser: Issue file open error messages through dedicated API
| * | | | | | | | Parser: Out-of-line conditional code to cmMakefileStephen Kelly2016-06-133-76/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simplify parser API.
| * | | | | | | | Parser: Issue file open error messages through dedicated APIStephen Kelly2016-06-131-6/+9
| |/ / / / / / /
* | | | | | | | Merge topic 'find_package-duplicate-search-paths'Brad King2016-06-162-8/+26
|\ \ \ \ \ \ \ \ | |_|_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 919db25c cmFindPackageCommand: remove duplicate paths from error message ebf18df5 cmFindPackageCommand: use iterators to loop over configurations
| * | | | | | | cmFindPackageCommand: remove duplicate paths from error messageBen Boeckel2016-06-132-1/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #15252.
| * | | | | | | cmFindPackageCommand: use iterators to loop over configurationsBen Boeckel2016-06-131-8/+9
| | | | | | | |
* | | | | | | | CMake Nightly Date StampKitware Robot2016-06-161-1/+1
| |_|_|/ / / / |/| | | | | |
* | | | | | | CMake Nightly Date StampKitware Robot2016-06-151-1/+1
| |_|/ / / / |/| | | | |
* | | | | | CMake Nightly Date StampKitware Robot2016-06-141-1/+1
| |/ / / / |/| | | |
* | | | | Merge topic 'expose-cache-properties'Brad King2016-06-137-4/+35
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 63c0e92c cmState: Expose list of properties of values in the cache 6eee2463 cmCacheEntry: Retrieve all properties of cache entries 120899c6 cmPropertyList: Add a way to retrieve all properties 7066218e cmake: Kill cmake::CacheManager and its getter
| * | | | | cmState: Expose list of properties of values in the cacheTobias Hunger2016-06-102-0/+9
| | | | | |
| * | | | | cmCacheEntry: Retrieve all properties of cache entriesTobias Hunger2016-06-102-0/+12
| | | | | |
| * | | | | cmPropertyList: Add a way to retrieve all propertiesTobias Hunger2016-06-102-0/+14
| | | | | |
| * | | | | cmake: Kill cmake::CacheManager and its getterTobias Hunger2016-06-101-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This member variable is never initialized and has apparently moved to cmState.
* | | | | | Merge topic 'fix-cmake-ISP-violation'Brad King2016-06-135-18/+24
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 23f87e81 cmake: Remove force from IssueMessage API 54c65d5f cmake: Extract DisplayMessage API.
| * | | | | | cmake: Remove force from IssueMessage APIStephen Kelly2016-06-125-19/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The force parameter is ugly and makes the method harder to reason about (issues the message ... but maybe it doesn't ... but then again you can force it). It is a violation of https://en.wikipedia.org/wiki/Interface_segregation_principle and is the kind of thing described in a recent blog here: http://code.joejag.com/2016/anti-if-the-missing-patterns.html "Any time you see this you actually have two methods bundled into one. That boolean represents an opportunity to name a concept in your code."
| * | | | | | cmake: Extract DisplayMessage API.Stephen Kelly2016-06-122-0/+9
| | |_|_|_|/ | |/| | | |
* | | | | | Merge topic 'avoid-cmMakefile-IssueMessage-after-configure'Brad King2016-06-135-21/+49
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ea5324cd cmMakefile: Port messages for compile features to cmake df8c3130 cmGlobalGenerator: Don't use cmMakefile::IssueMessage after configure 946d1e50 cmMakefile: Avoid IssueMessage after configure is finished 096c7754 cmLocalGenerator: Store Backtrace for the directory
| * | | | | | cmMakefile: Port messages for compile features to cmakeStephen Kelly2016-06-122-12/+33
| | | | | | |