mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-25 10:18:34 -06:00
Merge topic 'ibmi-aix-exports' into release-3.17
420e91c951 AIX: Activate symbol export/import IBM i (OS400)
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4611
This commit is contained in:
@@ -238,8 +238,11 @@ cmTarget::cmTarget(std::string const& name, cmStateEnums::TargetType type,
|
||||
!impl->Makefile->GetSafeDefinition("CMAKE_IMPORT_LIBRARY_SUFFIX").empty();
|
||||
|
||||
// Check whether we are targeting AIX.
|
||||
impl->IsAIX =
|
||||
(impl->Makefile->GetSafeDefinition("CMAKE_SYSTEM_NAME") == "AIX");
|
||||
{
|
||||
std::string const& systemName =
|
||||
impl->Makefile->GetSafeDefinition("CMAKE_SYSTEM_NAME");
|
||||
impl->IsAIX = (systemName == "AIX" || systemName == "OS400");
|
||||
}
|
||||
|
||||
// Check whether we are targeting an Android platform.
|
||||
impl->IsAndroid =
|
||||
|
||||
Reference in New Issue
Block a user