summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* cmGeneratorTarget: Move IsLinkable from cmTarget.Stephen Kelly2015-10-198-19/+20
|
* Xcode: Port internal API to cmGeneratorTarget.Stephen Kelly2015-10-182-16/+19
|
* cmGeneratorTarget: Move GetExportName from cmTarget.Stephen Kelly2015-10-187-32/+32
|
* Export: Port internal API to cmGeneratorTarget.Stephen Kelly2015-10-184-9/+10
|
* Export: Port internal utility to cmGeneratorTarget.Stephen Kelly2015-10-187-27/+28
|
* Export: Port some API to cmGlobalGenerator.Stephen Kelly2015-10-187-16/+13
|
* cmInstallTargetGenerator: Port GetInstallFilename to cmGeneratorTarget.Stephen Kelly2015-10-183-15/+11
|
* Export: Port interface to cmGeneratorTarget.Stephen Kelly2015-10-186-107/+105
|
* cmExportTryCompileFileGenerator: Port to cmGeneratorTarget.Stephen Kelly2015-10-185-20/+48
|
* cmExportSet: Store a cmGeneratorTarget.Stephen Kelly2015-10-188-27/+41
| | | | Set the member at compute time from the stored name.
* cmGlobalGenerator: Compute export() related classes early.Stephen Kelly2015-10-183-5/+3
| | | | Simplify CMP0024 handling.
* cmLocalGenerator: Port PList handling to cmGeneratorTarget.Stephen Kelly2015-10-184-11/+12
|
* cmLocalGenerator: Port policy handling to cmGeneratorTarget.Stephen Kelly2015-10-172-2/+2
|
* cmLocalGenerator: Port some API to cmGeneratorTarget.Stephen Kelly2015-10-1718-107/+119
|
* Use cmGeneratorTarget for property access.Stephen Kelly2015-10-178-70/+81
|
* Use GetName from cmGeneratorTarget.Stephen Kelly2015-10-179-27/+35
|
* Use IsImported from cmGeneratorTarget.Stephen Kelly2015-10-166-17/+17
|
* cmGeneratorTarget: Move ComputeVersionedName from cmTarget.Stephen Kelly2015-10-164-26/+26
|
* cmGeneratorTarget: Move GetTargetVersion from cmTarget.Stephen Kelly2015-10-1611-61/+62
|
* cmGeneratorTarget: Move CheckCMP0004 from cmTarget.Stephen Kelly2015-10-164-64/+65
|
* cmGeneratorTarget: Move ImportInfo from cmTarget.Stephen Kelly2015-10-164-257/+246
|
* cmTarget: Inline the essential part of imported target location.Stephen Kelly2015-10-161-3/+65
|
* cmGeneratorTarget: Move ImportedGetLocation from cmTarget.Stephen Kelly2015-10-165-17/+27
|
* cmGeneratorTarget: Move GetFullNameImported from cmTarget.Stephen Kelly2015-10-164-12/+12
|
* cmGeneratorTarget: Access global state through LocalGenerator.Stephen Kelly2015-10-163-15/+12
|
* cmGeneratorTarget: Port Utility items to cmGeneratorTarget.Stephen Kelly2015-10-161-3/+2
|
* cmGeneratorTarget: Port implementation to cmGeneratorTarget.Stephen Kelly2015-10-161-8/+5
|
* cmGeneratorTarget: Port language computation to cmGeneratorTarget.Stephen Kelly2015-10-161-3/+3
|
* cmGeneratorTarget: Move GetObjectLibrariesCMP0026 from cmTarget.Stephen Kelly2015-10-164-47/+48
|
* cmGeneratorTarget: Port TraceDependencies to cmTarget.Stephen Kelly2015-10-161-12/+17
| | | | | The problem of needing cmTarget is not solved with this, but the removal of the cmTarget member is valuable.
* cmGeneratorTarget: Port object library handling to cmGeneratorTarget.Stephen Kelly2015-10-161-7/+6
|
* cmGeneratorTarget: Port internal class to cmGeneratorTarget.Stephen Kelly2015-10-161-3/+3
|
* Merge topic 'ghs-drop-optgroup'Brad King2015-10-161-3/+3
|\ | | | | | | | | ce7ccafc GHS: Remove extra flag to GHS MULTI compiler (#15771)
| * GHS: Remove extra flag to GHS MULTI compiler (#15771)Geoff Viola2015-10-151-3/+3
| | | | | | | | | | | | Do not produce "{optgroup=GhsCommonOptions}" in the generated .gpj files. The flag was added originally to match an old project file, but it does not seem necessary and is not compatible with all GHS versions.
* | Merge topic 'ExternalProject-fix-git-version'Brad King2015-10-161-1/+2
|\ \ | | | | | | | | | | | | | | | c9e0173e ExternalProject: Always use CMake builtin FindGit (#15791) 4cd52dc5 ExternalProject: Fix Git version report in error message (#15791)
| * | ExternalProject: Always use CMake builtin FindGit (#15791)Brad King2015-10-151-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Unset CMAKE_MODULE_PATH before calling find_package(Git) to ensure we do not get a project-provided FindGit module that may not provide the GIT_VERSION_STRING that we need. We do not need to restore the value explicitly because this occurs inside the _ep_add_download_command function call scope.
| * | ExternalProject: Fix Git version report in error message (#15791)Brad King2015-10-151-1/+1
| | | | | | | | | | | | | | | | | | Refactoring in commit v3.4.0-rc1~77^2~1 (ExternalProject: Use GIT_VERSION_STRING instead of custom method, 2015-09-17) forgot to update the variable name used in an error message.
* | | Merge topic 'genex-consumers-generator-targets'Brad King2015-10-169-83/+78
|\ \ \ | | | | | | | | | | | | | | | | | | | | c4ae1578 Genex: Port some access API to cmGeneratorTarget. 6d27a3db Genex: Port implementation to cmGeneratorTarget.
| * | | Genex: Port some access API to cmGeneratorTarget.Stephen Kelly2015-10-158-40/+39
| | | |
| * | | Genex: Port implementation to cmGeneratorTarget.Stephen Kelly2015-10-153-49/+45
| | | |
* | | | Merge topic 'clean-up-cmTarget'Brad King2015-10-1671-943/+939
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 55474e61 cmState: Move GetTargetTypeName from cmTarget. 38df5c36 Remove now-obsolete casts. 4ee2b267 cmGeneratorTarget: Use enum for GetType. eac15298 cmState: Move TargetType enum from cmTarget. 482b3811 cmTarget: Move link type enum out. 2ee1cb85 cmTarget: Move ImportInfoMap out of internal class. a48bcabd cmTarget: Move backtrace member out of internal class. 6694d993 cmTarget: Remove unneeded constructors. 983c00f8 Generators: Use GetType from the cmGeneratorTarget.
| * | | | cmState: Move GetTargetTypeName from cmTarget.Stephen Kelly2015-10-1411-43/+41
| | | | |
| * | | | Remove now-obsolete casts.Stephen Kelly2015-10-147-11/+9
| | | | |
| * | | | cmGeneratorTarget: Use enum for GetType.Stephen Kelly2015-10-142-2/+2
| | | | |
| * | | | cmState: Move TargetType enum from cmTarget.Stephen Kelly2015-10-1464-818/+823
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Mostly automated: values=( "EXECUTABLE" "STATIC_LIBRARY" "SHARED_LIBRARY" "MODULE_LIBRARY" "OBJECT_LIBRARY" "UTILITY" "GLOBAL_TARGET" "INTERFACE_LIBRARY" "UNKNOWN_LIBRARY" "TargetType") for i in "${values[@]}"; do git grep -l cmTarget::$i | xargs sed -i "s|cmTarget::$i|cmState::$i|g"; done
| * | | | cmTarget: Move link type enum out.Stephen Kelly2015-10-1415-67/+72
| | | | | | | | | | | | | | | | | | | | Remove a reason for generate time code to depend on the cmTarget header/type.
| * | | | cmTarget: Move ImportInfoMap out of internal class.Stephen Kelly2015-10-142-8/+7
| | | | |
| * | | | cmTarget: Move backtrace member out of internal class.Stephen Kelly2015-10-142-5/+4
| | | | |
| * | | | cmTarget: Remove unneeded constructors.Stephen Kelly2015-10-141-15/+0
| | | | | | | | | | | | | | | | | | | | The compiler generated ones are fine here.
| * | | | Generators: Use GetType from the cmGeneratorTarget.Stephen Kelly2015-10-1414-93/+100
| |/ / /