summaryrefslogtreecommitdiffstats
path: root/Modules/CPack.cmake
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-01 18:15:44 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-01 18:15:44 (GMT)
commit4077d6d80cb446f5c4e3c8739ae05375c6e62540 (patch)
tree522884603c3414e87154929ffee3c23eb870dcee /Modules/CPack.cmake
parentff50bb9f77199a14735a6a4778f667ecf153c7af (diff)
downloadCMake-4077d6d80cb446f5c4e3c8739ae05375c6e62540.zip
CMake-4077d6d80cb446f5c4e3c8739ae05375c6e62540.tar.gz
CMake-4077d6d80cb446f5c4e3c8739ae05375c6e62540.tar.bz2
ENH: Install system libraries only if project requires them
Diffstat (limited to 'Modules/CPack.cmake')
-rw-r--r--Modules/CPack.cmake30
1 files changed, 0 insertions, 30 deletions
diff --git a/Modules/CPack.cmake b/Modules/CPack.cmake
index 41113d3..26b3c65 100644
--- a/Modules/CPack.cmake
+++ b/Modules/CPack.cmake
@@ -65,36 +65,6 @@ ENDIF(NOT CPACK_GENERATOR)
# Set some other variables
SET(CPACK_BINARY_DIR "${CMAKE_BINARY_DIR}")
-# Hack for Visual Studio support
-# Search for system runtime libraries based on the platform. This is
-# not complete because it is used only for the release process by the
-# developers.
-IF(NOT CPACK_DISABLE_EXTRA_MSVC_LIBRARIES)
- IF(MSVC)
- STRING(REGEX REPLACE "\\\\" "/" SYSTEMROOT "$ENV{SYSTEMROOT}")
- FOREACH(lib
- "${SYSTEMROOT}/system32/mfc71.dll"
- "${SYSTEMROOT}/system32/msvcp71.dll"
- "${SYSTEMROOT}/system32/msvcr71.dll"
- )
- IF(EXISTS ${lib})
- SET(CMake_INSTALL_SYSTEM_RUNTIME_LIBS
- ${CMake_INSTALL_SYSTEM_RUNTIME_LIBS} ${lib})
- ENDIF(EXISTS ${lib})
- ENDFOREACH(lib)
- ENDIF(MSVC)
-ENDIF(NOT CPACK_DISABLE_EXTRA_MSVC_LIBRARIES)
-
-# Include system runtime libraries in the installation if any are
-# specified by CMake_INSTALL_SYSTEM_RUNTIME_LIBS.
-IF(CMake_INSTALL_SYSTEM_RUNTIME_LIBS)
- IF(WIN32)
- INSTALL_PROGRAMS(/bin ${CMake_INSTALL_SYSTEM_RUNTIME_LIBS})
- ELSE(WIN32)
- INSTALL_PROGRAMS(/lib ${CMake_INSTALL_SYSTEM_RUNTIME_LIBS})
- ENDIF(WIN32)
-ENDIF(CMake_INSTALL_SYSTEM_RUNTIME_LIBS)
-
SET(_CPACK_UNUSED_VARIABLES_)
GET_CMAKE_PROPERTY(res VARIABLES)
FOREACH(var ${res})