|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r50902 - trunk/tools/build/CMake
From: troy_at_[hidden]
Date: 2009-01-30 09:57:35
Author: troy
Date: 2009-01-30 09:57:34 EST (Fri, 30 Jan 2009)
New Revision: 50902
URL: http://svn.boost.org/trac/boost/changeset/50902
Log:
Versioning off by default on unix.
Text files modified:
trunk/tools/build/CMake/BoostCore.cmake | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
Modified: trunk/tools/build/CMake/BoostCore.cmake
==============================================================================
--- trunk/tools/build/CMake/BoostCore.cmake (original)
+++ trunk/tools/build/CMake/BoostCore.cmake 2009-01-30 09:57:34 EST (Fri, 30 Jan 2009)
@@ -449,7 +449,11 @@
# VARIANT_DISPLAY_NAME: The display name that describes this
# variant, e.g., "Debug, static, multi-threaded".
#
-option(BUILD_VERSIONED "Add versioning information to names of built files" ON)
+if (UNIX)
+ option(BUILD_VERSIONED "Add versioning information to names of built files" OFF)
+else(UNIX)
+ option(BUILD_VERSIONED "Add versioning information to names of built files" ON)
+endif(UNIX)
macro(boost_library_variant_target_name)
set(VARIANT_TARGET_NAME "")
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk