From f50e904fafb84dc6ce21698cfd53bb330c0aeb20 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Thu, 7 Apr 2005 16:09:13 -0400 Subject: ENH: fix install test with xcode, the xcode generator does not support library versioning yet --- Modules/Platform/Darwin.cmake | 8 +++++--- Source/cmGlobalXCodeGenerator.cxx | 1 + 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Modules/Platform/Darwin.cmake b/Modules/Platform/Darwin.cmake index 8148e30..97d6fec 100644 --- a/Modules/Platform/Darwin.cmake +++ b/Modules/Platform/Darwin.cmake @@ -12,9 +12,11 @@ IF("${CMAKE_BACKWARDS_COMPATIBILITY}" MATCHES "^1\\.[0-6]$") "${CMAKE_SHARED_MODULE_CREATE_C_FLAGS} -flat_namespace -undefined suppress") ENDIF("${CMAKE_BACKWARDS_COMPATIBILITY}" MATCHES "^1\\.[0-6]$") -# Enable shared library versioning. -SET(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-install_name") -SET(CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG "-install_name") +IF(NOT XCODE) +# Enable shar ed library versioning. + SET(CMAKE_SHARED_LIBRARY_SONAME_C_FLAG "-install_name") + SET(CMAKE_SHARED_LIBRARY_SONAME_CXX_FLAG "-install_name") +ENDIF(NOT XCODE) # OSX does not really implement an rpath, but it does allow a path to # be specified in the soname field of a dylib. diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index 6848dd1..0168ebf 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -42,6 +42,7 @@ void cmGlobalXCodeGenerator::EnableLanguage(std::vectorconst& lang, cmMakefile * mf) { + mf->AddDefinition("XCODE","1"); mf->AddDefinition("CMAKE_CFG_INTDIR","."); mf->AddDefinition("CMAKE_GENERATOR_CC", "gcc"); mf->AddDefinition("CMAKE_GENERATOR_CXX", "g++"); -- cgit v0.12