diff options
author | Hyper Nova Sun <hypernovasun@icloud.com> | 2022-04-08 20:22:08 (GMT) |
---|---|---|
committer | Hyper Nova Sun <hypernovasun@icloud.com> | 2022-04-11 21:10:29 (GMT) |
commit | 41ba35a42b177db14358390e50857eb2554a3873 (patch) | |
tree | 0f758fe4a2a5cb67a0f7c82b0521027b129da41b /Source/cmExportBuildFileGenerator.cxx | |
parent | 7fc248bde34c529c6f1312a56c7e82303238b9c1 (diff) | |
download | CMake-41ba35a42b177db14358390e50857eb2554a3873.zip CMake-41ba35a42b177db14358390e50857eb2554a3873.tar.gz CMake-41ba35a42b177db14358390e50857eb2554a3873.tar.bz2 |
cmTarget: Add `HasKnownObjectFileLocation()` shorthand
Allow `cmGlobalGenerator`s to decide `HasKnownObjectFileLocation()` per given
`cmTarget`
- `cmGlobalGenerator::HasKnownObjectFileLocation()` now takes an optional `cmGeneratorTarget`
- `cmTarget::HasKnownObjectFileLocation()` added as a shorthand
Diffstat (limited to 'Source/cmExportBuildFileGenerator.cxx')
-rw-r--r-- | Source/cmExportBuildFileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExportBuildFileGenerator.cxx b/Source/cmExportBuildFileGenerator.cxx index a47f1e5..c7e1f3c 100644 --- a/Source/cmExportBuildFileGenerator.cxx +++ b/Source/cmExportBuildFileGenerator.cxx @@ -195,7 +195,7 @@ cmStateEnums::TargetType cmExportBuildFileGenerator::GetExportTargetType( // to support transitive usage requirements on other targets that // use the object library. if (targetType == cmStateEnums::OBJECT_LIBRARY && - !this->LG->GetGlobalGenerator()->HasKnownObjectFileLocation(nullptr)) { + !target->Target->HasKnownObjectFileLocation(nullptr)) { targetType = cmStateEnums::INTERFACE_LIBRARY; } return targetType; |