diff options
author | Brad King <brad.king@kitware.com> | 2014-06-10 13:17:39 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-06-10 13:17:39 (GMT) |
commit | 2944bf164edf0e7a896bd47f5b8659c6469f6693 (patch) | |
tree | e762d942b780540690620178e5364c11103c2dd4 /Source | |
parent | f1b91a8af6216c86c04a074b9d30ba8268ddd77b (diff) | |
parent | 42f74df6d4ffca8f6f08dfe191e441173be0f270 (diff) | |
download | CMake-2944bf164edf0e7a896bd47f5b8659c6469f6693.zip CMake-2944bf164edf0e7a896bd47f5b8659c6469f6693.tar.gz CMake-2944bf164edf0e7a896bd47f5b8659c6469f6693.tar.bz2 |
Merge topic 'android-platform'
42f74df6 Add basic Android platform module
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmTarget.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 058e661..01edde9 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -4320,6 +4320,7 @@ void cmTarget::GetLibraryNames(std::string& name, const char* version = this->GetProperty("VERSION"); const char* soversion = this->GetProperty("SOVERSION"); if(!this->HasSOName(config) || + this->Makefile->IsOn("CMAKE_PLATFORM_NO_VERSIONED_SONAME") || this->IsFrameworkOnApple()) { // Versioning is supported only for shared libraries and modules, |