summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* cmGeneratorTarget: Port ExpandLinkItems away from cmTarget.Stephen Kelly2015-10-102-6/+7
|
* cmGeneratorTarget: Port GetImportLinkInterface away from cmTarget.Stephen Kelly2015-10-102-6/+7
|
* cmGeneratorTarget: Port ComputeLinkImplementationLibraries away from cmTarget.Stephen Kelly2015-10-102-5/+5
|
* cmGeneratorTarget: Port handleSystemIncludesDep away from cmTarget.Stephen Kelly2015-10-101-4/+4
|
* cmGeneratorTarget: Port GetLinkImplementationLibrariesInternal.Stephen Kelly2015-10-102-7/+7
|
* cmGeneratorTarget: Port ComputeLinkInterface away from cmTarget.Stephen Kelly2015-10-102-4/+5
|
* cmGeneratorTarget: Port ComputeLinkInterfaceLibraries away from cmTarget.Stephen Kelly2015-10-102-8/+9
|
* cmGeneratorTarget: Port GetLinkInterface away from cmTarget.Stephen Kelly2015-10-105-13/+13
|
* cmGeneratorTarget: Port cmTargetCollectLinkLanguages away from cmTarget.Stephen Kelly2015-10-101-4/+4
|
* cmGeneratorTarget: Port GetLinkInterfaceLibraries away from cmTarget.Stephen Kelly2015-10-103-7/+10
|
* cmGeneratorTarget: Port processILibs away from cmTarget.Stephen Kelly2015-10-101-3/+3
|
* cmComputeLinkDepends: Port some API to cmGeneratorTarget.Stephen Kelly2015-10-104-39/+31
|
* cmGeneratorTarget: Move IsImportedSharedLibWithoutSOName from cmTarget.Stephen Kelly2015-10-105-19/+19
|
* cmGeneratorTarget: Move GetOutputTargetType from cmTarget.Stephen Kelly2015-10-104-61/+61
|
* cmGeneratorTarget: Move HasMacOSXRpathInstallNameDir from cmTarget.Stephen Kelly2015-10-106-124/+128
|
* cmGeneratorTarget: Move HaveInstallTreeRPATH from cmTarget.Stephen Kelly2015-10-085-12/+12
|
* cmGeneratorTarget: Move ComputePDBOutputDir from cmTarget.Stephen Kelly2015-10-084-67/+66
|
* cmGeneratorTarget: Move IsNullImpliedByLinkLibraries from cmTarget.Stephen Kelly2015-10-084-12/+13
|
* cmGeneratorTarget: Move output info from cmTarget.Stephen Kelly2015-10-084-176/+175
|
* cmGeneratorTarget: Move UsesDefaultOutputDir from cmTarget.Stephen Kelly2015-10-085-13/+13
|
* cmGeneratorTarget: Move GetPDBDirectory from cmTarget.Stephen Kelly2015-10-0811-26/+30
|
* cmGeneratorTarget: Move GetDirectory from cmTarget.Stephen Kelly2015-10-0815-68/+76
|
* cmTarget: Make OutputInfo definition public.Stephen Kelly2015-10-082-11/+9
|
* cmGeneratorTarget: Move link implementation from cmTarget.Stephen Kelly2015-10-086-212/+200
|
* cmTarget: Split storage of link implementation from backtraces.Stephen Kelly2015-10-082-30/+15
|
* cmGeneratorTarget: Issue messages through the local generator.Stephen Kelly2015-10-081-6/+7
|
* cmLocalGenerator: Add cmake instance accessor.Stephen Kelly2015-10-082-0/+7
|
* Merge topic 'cmGeneratorTarget-sources'Brad King2015-10-0822-459/+401
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | af71c7b4 cmTarget: Remove Compute method. dce6581b cmGeneratorTarget: Move computed sources from cmTarget. 7b6dc0fe cmGeneratorTarget: Inline GetSourceFiles from cmTarget. 33f87bb1 cmGeneratorTarget: Move AddInterfaceEntries method. da1b0449 cmTarget: Remove a conditional for generate-time source addition. fe113f0f cmTarget: Split storage of sources from genexes. 776ff8eb cmTarget: Add Compute API for sources. 64f73150 cmTarget: Add API for generate-time source addition. c38e30f6 cmGeneratorTarget: Add methods for generate-time source addition. 5d3776a7 Access sources through cmGeneratorTarget. 7ce0991a GHS: Port API to cmGeneratorTarget. 156bd2c9 Xcode: Port away from unnecessary CMP0049 compatibility. 01e666c7 cmTarget: Join strings conditionally. bf28b787 cmGeneratorTarget: Rename internal member. 9d653f9c cmFLTKWrapUI: Remove CMake 2.2 compat code.
| * cmTarget: Remove Compute method.Stephen Kelly2015-10-077-13/+0
| |
| * cmGeneratorTarget: Move computed sources from cmTarget.Stephen Kelly2015-10-074-313/+249
| |
| * cmGeneratorTarget: Inline GetSourceFiles from cmTarget.Stephen Kelly2015-10-073-49/+49
| |
| * cmGeneratorTarget: Move AddInterfaceEntries method.Stephen Kelly2015-10-071-28/+27
| | | | | | | | It will be needed here in a follow-up commit.
| * cmTarget: Remove a conditional for generate-time source addition.Stephen Kelly2015-10-071-13/+6
| | | | | | | | It is not really necessary.
| * cmTarget: Split storage of sources from genexes.Stephen Kelly2015-10-071-39/+50
| |
| * cmTarget: Add Compute API for sources.Stephen Kelly2015-10-077-0/+13
| | | | | | | | | | This method is a refactoring artifact. It will be removed in a follow-up.
| * cmTarget: Add API for generate-time source addition.Stephen Kelly2015-10-073-1/+7
| | | | | | | | | | This method is a refactoring artifact. It will be removed in a follow-up.
| * cmGeneratorTarget: Add methods for generate-time source addition.Stephen Kelly2015-10-077-13/+35
| |
| * Access sources through cmGeneratorTarget.Stephen Kelly2015-10-0712-16/+27
| |
| * GHS: Port API to cmGeneratorTarget.Stephen Kelly2015-10-073-9/+12
| |
| * Xcode: Port away from unnecessary CMP0049 compatibility.Stephen Kelly2015-10-061-2/+2
| | | | | | | | The input does not need the conversion.
| * cmTarget: Join strings conditionally.Stephen Kelly2015-10-061-2/+2
| |
| * cmGeneratorTarget: Rename internal member.Stephen Kelly2015-10-062-4/+4
| | | | | | | | Leave the old name available for another use.
| * cmFLTKWrapUI: Remove CMake 2.2 compat code.Stephen Kelly2015-10-061-39/+0
| | | | | | | | CMake 3.0 dropped CMake <= 2.4 compatibility.
* | Merge topic 'refactor-current-dir-initialization'Brad King2015-10-0810-62/+59
|\ \ | | | | | | | | | | | | | | | | | | | | | 28749903 cmState: Internalize the initialization of a snapshot from its parent. 6c02f62f Remove now-unused directory setters. 360e4e1d Set the current dirs on the snapshot before creating the cmMakefile. f716460e cmMakefile: Move invokation to initialize snapshot.
| * | cmState: Internalize the initialization of a snapshot from its parent.Stephen Kelly2015-10-073-4/+5
| | |
| * | Remove now-unused directory setters.Stephen Kelly2015-10-072-17/+0
| | |
| * | Set the current dirs on the snapshot before creating the cmMakefile.Stephen Kelly2015-10-077-44/+56
| | | | | | | | | | | | | | | | | | The cmMakefile should get a fully prepared snapshot and not clobber its definitions. It should eventually be able to process list files from any starting-point snapshot, though that is some refactoring away still.
| * | cmMakefile: Move invokation to initialize snapshot.Stephen Kelly2015-10-061-2/+3
| |/
* | Merge topic 'cpack-nsis-bitmap'Brad King2015-10-081-0/+22
|\ \ | | | | | | | | | | | | 3758af12 CPackNSIS: Add options to set the bitmap for NSIS installer left side
| * | CPackNSIS: Add options to set the bitmap for NSIS installer left sideColin Tracey2015-10-061-0/+22
| | | | | | | | | | | | | | | set MUI_WELCOMEFINISHPAGE_BITMAP set MUI_UNWELCOMEFINISHPAGE_BITMAP