From 31a6670e43dbeafab44ed3863d6172f68da408bc Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 6 Feb 2008 14:06:50 -0500 Subject: BUG: Do not create versioned executable names on Xcode where they are not supported. --- Source/cmTarget.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 4f7c391..6cb8d93 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -2475,7 +2475,7 @@ void cmTarget::GetExecutableNamesInternal(std::string& name, #else // Check for executable version properties. const char* version = this->GetProperty("VERSION"); - if(type != cmTarget::EXECUTABLE) + if(type != cmTarget::EXECUTABLE || this->Makefile->IsOn("XCODE")) { version = 0; } -- cgit v0.12