summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.cxx
diff options
context:
space:
mode:
authorStephan Szabo <stephan.szabo@sony.com>2018-03-08 18:26:56 (GMT)
committerBrad King <brad.king@kitware.com>2018-03-09 13:09:21 (GMT)
commit2dc2a3eb15c331aa2b953d995d304a6befc0aca4 (patch)
treea42fb062123284b06ac76a24edad8a2362ef93b5 /Source/cmGeneratorTarget.cxx
parent9ceafdfd4deec57c3a7f8650b2466da1d0aa0d3f (diff)
downloadCMake-2dc2a3eb15c331aa2b953d995d304a6befc0aca4.zip
CMake-2dc2a3eb15c331aa2b953d995d304a6befc0aca4.tar.gz
CMake-2dc2a3eb15c331aa2b953d995d304a6befc0aca4.tar.bz2
Identify DLL platforms via CMAKE_IMPORT_LIBRARY_SUFFIX
Use `CMAKE_IMPORT_LIBRARY_SUFFIX` to identify platforms that have DLL import libraries rather than memorizing a list of platform names. Fixes: #16801
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r--Source/cmGeneratorTarget.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 8cdba93..b9e2978 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -132,8 +132,8 @@ cmGeneratorTarget::cmGeneratorTarget(cmTarget* t, cmLocalGenerator* lg)
this->SourceEntries, true);
this->DLLPlatform =
- (this->Makefile->IsOn("WIN32") || this->Makefile->IsOn("CYGWIN") ||
- this->Makefile->IsOn("MINGW"));
+ strcmp(this->Makefile->GetSafeDefinition("CMAKE_IMPORT_LIBRARY_SUFFIX"),
+ "") != 0;
this->PolicyMap = t->PolicyMap;
}