Ver Fonte

ENH: change name

Bill Hoffman há 18 anos atrás
pai
commit
bb82b48715
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      Modules/InstallRequiredSystemLibraries.cmake

+ 2 - 2
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)