summaryrefslogtreecommitdiffstats
path: root/Utilities
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-08-17 13:35:44 (GMT)
committerBrad King <brad.king@kitware.com>2006-08-17 13:35:44 (GMT)
commit6461767e366e67571155a1c31c96d9e3797a38be (patch)
treef1c45f1780f89f21477b0ba22dd2ed03ed0703b7 /Utilities
parent94108262c1deb1ad9e626a99807f22a33aeb7e98 (diff)
downloadCMake-6461767e366e67571155a1c31c96d9e3797a38be.zip
CMake-6461767e366e67571155a1c31c96d9e3797a38be.tar.gz
CMake-6461767e366e67571155a1c31c96d9e3797a38be.tar.bz2
BUG: Removed code that is now in Modules/InstallRequiredSystemLibraries.cmake.
Diffstat (limited to 'Utilities')
-rw-r--r--Utilities/Release/Release.cmake27
1 files changed, 0 insertions, 27 deletions
diff --git a/Utilities/Release/Release.cmake b/Utilities/Release/Release.cmake
index c242724..81b6eb3 100644
--- a/Utilities/Release/Release.cmake
+++ b/Utilities/Release/Release.cmake
@@ -1,33 +1,6 @@
#########################################################################
# Setup release scripts.
-# 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(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)
-
-# 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)
-
IF(WIN32)
FIND_PROGRAM(NSIS_MAKENSIS NAMES makensis
PATHS [HKEY_LOCAL_MACHINE\\SOFTWARE\\NSIS]