]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Windows compatibility.
authorrnv <rnv@opencascade.com>
Sat, 20 Feb 2016 16:12:49 +0000 (19:12 +0300)
committerrnv <rnv@opencascade.com>
Sat, 20 Feb 2016 16:12:49 +0000 (19:12 +0300)
salome_adm/cmake_files/SalomeMacros.cmake

index 34f85786d2d062f94631dfcefe31e824c1774635..a67f4d5e0f1791ed09c13d449b7a9543984a1544 100644 (file)
@@ -944,7 +944,11 @@ MACRO(SALOME_CONFIGURE_PREPARE)
   FOREACH(_prereq IN LISTS _tmp_prereq)
     IF(${_prereq}_DIR)
       SET(_PREREQ_LIST "${_PREREQ_LIST} ${_prereq}")
-      SET(_PREREQ_DIR_LIST "${_PREREQ_DIR_LIST} \"${${_prereq}_DIR}\"")
+      SET(CURR_DIR ${${_prereq}_DIR})
+      IF(WIN32)
+        STRING(REGEX REPLACE "\\\\" "/" CURR_DIR ${CURR_DIR}) 
+      ENDIF()
+      SET(_PREREQ_DIR_LIST "${_PREREQ_DIR_LIST} \"${CURR_DIR}\"")
       SALOME_APPEND_LIST_OF_LIST(_PREREQ_COMPO_LIST Salome${_prereq}_COMPONENTS)
     ENDIF()
   ENDFOREACH()