summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* Port to cmMakefile::GetGlobalGenerator.Stephen Kelly2015-05-0325-122/+86
|
* cmComputeTargetDepends: Use simpler global generator access.Stephen Kelly2015-05-031-3/+1
|
* cmComputeLinkDepends: Remove unused local generator.Stephen Kelly2015-05-032-5/+1
|
* cmMakefile: Extract an accessor for the global generator.Stephen Kelly2015-05-032-1/+7
| | | | | | Both for convenience, and because cmMakefile should not be the way to get access to the local generator, so that should go away in the future.
* cmMakefile: Use GetCMakeInstance.Stephen Kelly2015-05-031-4/+2
|
* cmMakefile: Simplify GetCMakeInstance implementation.Stephen Kelly2015-05-031-5/+1
| | | | | No callers handle the possibility that it can return null, and that is no longer possible anyway.
* CMake Nightly Date StampKitware Robot2015-05-031-1/+1
|
* CMake Nightly Date StampKitware Robot2015-05-021-1/+1
|
* Merge topic 'refactor-RaiseScope'Brad King2015-05-011-20/+24
|\ | | | | | | | | | | e8ae46e5 cmMakefile: Implement RaiseScope without relying on Parent. 30a021cc cmMakefile: Implement RaiseScope in terms of local Get method.
| * cmMakefile: Implement RaiseScope without relying on Parent.Stephen Kelly2015-04-301-20/+24
| |
| * cmMakefile: Implement RaiseScope in terms of local Get method.Stephen Kelly2015-04-301-1/+1
| | | | | | | | The cmDefinitions::Get will change behavior in follow up commits.
* | Merge topic 'fix-cmState-try_compile-languages'Brad King2015-05-014-2/+9
|\ \ | | | | | | | | | | | | 27343e3b cmGlobalGenerator: Finish storing enabled languages in cmState
| * | cmGlobalGenerator: Finish storing enabled languages in cmStateBrad King2015-04-304-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In commit 74de9a73 (cmGlobalGenerator: Delegate storage of enabled languages to cmState, 2015-04-11) the original LanguageEnabled member of cmGlobalGenerator was left behind by mistake. One use of it in EnableLanguagesFromGenerator (for try_compile) was left, but the member is not populated anymore. Drop the member and teach EnableLanguagesFromGenerator to copy the list of enabled languages from one cmState to the other. Reported-by: Matt McCormick <matt.mccormick@kitware.com>
* | | Merge topic 'cmComputeLinkInformation-minor-cleanup'Brad King2015-05-011-5/+7
|\ \ \ | | | | | | | | | | | | | | | | faede40b cmComputeLinkInformation: Reduce 'if' nesting in AddItem
| * | | cmComputeLinkInformation: Reduce 'if' nesting in AddItemBrad King2015-04-211-5/+7
| | | | | | | | | | | | | | | | | | | | Also add a comment explaining why interface libraries still get a link item.
* | | | CMake Nightly Date StampKitware Robot2015-05-011-1/+1
| |_|/ |/| |
* | | Merge topic 'refactor-cmDefinitions'Brad King2015-04-303-134/+179
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | b48ea26a cmDefinitions: Invert conditional code. 5ccff640 cmDefinitions: Externalize looping for ClosureKeys. f79cd99d cmDefinitions: Implement MakeClosure in terms of reverse iterators. aa4d1ee8 cmDefinitions: Convert MakeClosure into a static method. 60becdc6 cmDefinitions: Implement MakeClosure in terms of a list of ancestors. d858f363 cmDefinitions: Use list of cmDefinitions* to create closure. aaaa65b6 cmMakefile: Remove stack adaptor for the VarStack. f983d891 cmDefinitions: Replace recursion with loop. 24885d4e cmDefinitions: Replace private constructor with MakeClosure. 012a75a0 cmDefinitions: Make ClosureKeys API vector-based. ca9fa77d cmDefinitions: Inline GetClosureKeys implementation. 78e1454e cmDefinitions: Replace ClosureKeys recursion with looping. 818bf727 cmDefinitions: Change LocalKeys to return a vector. 5067ae41 cmDefinitions: Externalize the Set logic. 60200ca5 cmDefinitions: Add an Erase method. b43c162e cmMakefile: Use the Internal class to enclose the VarStack.
| * | | cmDefinitions: Invert conditional code.Stephen Kelly2015-04-291-5/+6
| | | | | | | | | | | | | | | | Return the simple case first.
| * | | cmDefinitions: Externalize looping for ClosureKeys.Stephen Kelly2015-04-293-18/+20
| | | |
| * | | cmDefinitions: Implement MakeClosure in terms of reverse iterators.Stephen Kelly2015-04-293-22/+16
| | | | | | | | | | | | | | | | Iterate directly over the parent content provided by cmMakefile.
| * | | cmDefinitions: Convert MakeClosure into a static method.Stephen Kelly2015-04-293-11/+16
| | | | | | | | | | | | | | | | Accept a range of cmDefinitions*.
| * | | cmDefinitions: Implement MakeClosure in terms of a list of ancestors.Stephen Kelly2015-04-292-13/+17
| | | |
| * | | cmDefinitions: Use list of cmDefinitions* to create closure.Stephen Kelly2015-04-291-3/+11
| | | |
| * | | cmMakefile: Remove stack adaptor for the VarStack.Stephen Kelly2015-04-291-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The purpose of the stack is to allow access only to the top of it. Access to items which are not at the top is needed, so cmDefinitions objects get a Parent pointer. The existence of the Parent pointer is a workaround for the inappropriate use of stack in the first place. Remove it now.
| * | | cmDefinitions: Replace recursion with loop.Stephen Kelly2015-04-291-18/+16
| | | |
| * | | cmDefinitions: Replace private constructor with MakeClosure.Stephen Kelly2015-04-293-20/+10
| | | |
| * | | cmDefinitions: Make ClosureKeys API vector-based.Stephen Kelly2015-04-293-11/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Construct the final list directly in a named return value. Use a single set to track bindings already found. Co-Author: Brad King <brad.king@kitware.com>
| * | | cmDefinitions: Inline GetClosureKeys implementation.Stephen Kelly2015-04-292-11/+1
| | | |
| * | | cmDefinitions: Replace ClosureKeys recursion with looping.Stephen Kelly2015-04-291-14/+14
| | | |
| * | | cmDefinitions: Change LocalKeys to return a vector.Stephen Kelly2015-04-293-9/+10
| | | | | | | | | | | | | | | | This is more efficient and we lose nothing.
| * | | cmDefinitions: Externalize the Set logic.Stephen Kelly2015-04-292-11/+10
| | | |
| * | | cmDefinitions: Add an Erase method.Stephen Kelly2015-04-292-0/+7
| | | |
| * | | cmMakefile: Use the Internal class to enclose the VarStack.Stephen Kelly2015-04-291-46/+95
| | | | | | | | | | | | | | | | Put knowledge of the implementation details in one place.
* | | | Merge topic 'if-IN_LIST'Brad King2015-04-304-1/+44
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | aed6239e if: Implement new IN_LIST operator
| * | | | if: Implement new IN_LIST operatorNils Gladitz2015-04-304-1/+44
| | | | |
* | | | | Merge topic 'revert-CMP0057'Brad King2015-04-303-34/+0
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | 32a2f414 Revert "add_custom_command: Diagnose MAIN_DEPENDENCY limitation."
| * | | | Revert "add_custom_command: Diagnose MAIN_DEPENDENCY limitation."Nils Gladitz2015-04-303-34/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 242c3966 (add_custom_command: Diagnose MAIN_DEPENDENCY limitation, 2015-03-09) and the follow up commit b372a99a (UseSWIG: Do not use MAIN_DEPENDENCY on custom commands, 2015-03-26). I misdiagnosed the underlying issue that prompted creation of policy CMP0057. The actual issue surfaces when a single custom command's MAIN_DEPENDENCY is listed in more than one target; this issue will have to be addressed independently.
* | | | | CMake Nightly Date StampKitware Robot2015-04-301-1/+1
| |/ / / |/| | |
* | | | Merge topic 'clean-up-cmDefinitions'Brad King2015-04-292-30/+11
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a3358fac cmDefinitions: Inline SetInternal method. 23370344 cmDefinitions: Remove unused Set return value. b9f4dd39 cmDefinitions: Remove unused method.
| * | | | cmDefinitions: Inline SetInternal method.Stephen Kelly2015-04-282-16/+9
| | | | |
| * | | | cmDefinitions: Remove unused Set return value.Stephen Kelly2015-04-282-6/+4
| | | | |
| * | | | cmDefinitions: Remove unused method.Stephen Kelly2015-04-282-10/+0
| | | | |
* | | | | Merge topic 'cmState-CurrentDirs'Brad King2015-04-2965-195/+313
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 46f6a5f4 cmState: Store the Current directories. 3a041c59 Introduce cmState::Snapshot. ae6c8a9d cmState: Store the Source and Binary directories. 86f3cd0f cmMakefile: Require the localGenerator in the constructor. a48aebcb cmLocalGenerator: Require a parent in the constructor. e4c78b37 cmMakefile: Inline SetHome* methods into last remaining caller. 410f39a4 cmMakefile: Delegate storage of Home dirs to the cmake class.
| * | | | cmState: Store the Current directories.Stephen Kelly2015-04-284-16/+48
| | | | |
| * | | | Introduce cmState::Snapshot.Stephen Kelly2015-04-284-2/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Create snapshots for buildsystem directories during configure time. This class will be extended in follow up commits to snapshot all values in the cmState.
| * | | | cmState: Store the Source and Binary directories.Stephen Kelly2015-04-284-8/+33
| | | | |
| * | | | cmMakefile: Require the localGenerator in the constructor.Stephen Kelly2015-04-283-52/+38
| | | | | | | | | | | | | | | | | | | | | | | | | Move the contents of cmMakeile::SetLocalGenerator to the Initialize method.
| * | | | cmLocalGenerator: Require a parent in the constructor.Stephen Kelly2015-04-2859-86/+132
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pass the parent though cmGlobalGenerator::CreateLocalGenerator. This will make it easy to initialize state scopes independent of cmMakefile.
| * | | | cmMakefile: Inline SetHome* methods into last remaining caller.Stephen Kelly2015-04-282-32/+17
| | | | |
| * | | | cmMakefile: Delegate storage of Home dirs to the cmake class.Stephen Kelly2015-04-284-21/+19
| | | | | | | | | | | | | | | | | | | | There is no need to duplicate these on every cmMakefile.