diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-11-09 17:18:06 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-11-09 17:18:06 (GMT) |
commit | bb82b4871583f61766028e340e0e088616c62db7 (patch) | |
tree | 9b48baa324b0bfcb101d896b9374275dee1c67d1 /Modules/InstallRequiredSystemLibraries.cmake | |
parent | f9322d188bf8f441a2511ae060bd2a56439deec7 (diff) | |
download | CMake-bb82b4871583f61766028e340e0e088616c62db7.zip CMake-bb82b4871583f61766028e340e0e088616c62db7.tar.gz CMake-bb82b4871583f61766028e340e0e088616c62db7.tar.bz2 |
ENH: change name
Diffstat (limited to 'Modules/InstallRequiredSystemLibraries.cmake')
-rw-r--r-- | Modules/InstallRequiredSystemLibraries.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/InstallRequiredSystemLibraries.cmake b/Modules/InstallRequiredSystemLibraries.cmake index ceac50c..dcc6107 100644 --- a/Modules/InstallRequiredSystemLibraries.cmake +++ b/Modules/InstallRequiredSystemLibraries.cmake @@ -122,13 +122,13 @@ 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(NOT CMAKE_SKIP_INSTALL_RULES) + IF(NOT CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP) IF(WIN32) INSTALL_PROGRAMS(/bin ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS}) ELSE(WIN32) INSTALL_PROGRAMS(/lib ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS}) ENDIF(WIN32) - ENDIF(NOT CMAKE_SKIP_INSTALL_RULES) + ENDIF(NOT CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP) ENDIF(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS) |