summaryrefslogtreecommitdiffstats
path: root/Utilities
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2005-06-30 15:33:48 (GMT)
committerKen Martin <ken.martin@kitware.com>2005-06-30 15:33:48 (GMT)
commitcfda73f86ab0e4eb4f73ceaa48f53225b4054214 (patch)
tree39c3fc74d92c86ff99fa2180e79b8a27fe903421 /Utilities
parent6048659e66e9d3055c7ff1f40f77d9f5c925af63 (diff)
downloadCMake-cfda73f86ab0e4eb4f73ceaa48f53225b4054214.zip
CMake-cfda73f86ab0e4eb4f73ceaa48f53225b4054214.tar.gz
CMake-cfda73f86ab0e4eb4f73ceaa48f53225b4054214.tar.bz2
ENH: hard coded for VS 71 nmake for now
Diffstat (limited to 'Utilities')
-rw-r--r--Utilities/Release/Release.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Utilities/Release/Release.cmake b/Utilities/Release/Release.cmake
index b1acd68..7f7ca86 100644
--- a/Utilities/Release/Release.cmake
+++ b/Utilities/Release/Release.cmake
@@ -4,7 +4,7 @@
# 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(CMAKE_GENERATOR MATCHES "^Visual Studio 7 .NET 2003$")
+IF(WIN32)
STRING(REGEX REPLACE "\\\\" "/" SYSTEMROOT "$ENV{SYSTEMROOT}")
FOREACH(lib
"${SYSTEMROOT}/system32/msvcp71.dll"
@@ -15,7 +15,7 @@ IF(CMAKE_GENERATOR MATCHES "^Visual Studio 7 .NET 2003$")
${CMake_INSTALL_SYSTEM_RUNTIME_LIBS} ${lib})
ENDIF(EXISTS ${lib})
ENDFOREACH(lib)
-ENDIF(CMAKE_GENERATOR MATCHES "^Visual Studio 7 .NET 2003$")
+ENDIF(WIN32)
# Include system runtime libraries in the installation if any are
# specified by CMake_INSTALL_SYSTEM_RUNTIME_LIBS.