1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0029266: CMake install does not copy pdb files in Debug mode due to the changes in 0028287

OCCT_INSTALL_BIN_LETTER is used only on Windows (isn't depended on type of generator) because bind/libd/bini/libi folders are not used on Linux (only bin and lib)
This commit is contained in:
apn 2017-11-29 15:46:54 +03:00 committed by bugmaster
parent fcd9a94e76
commit b1f350a2e1
4 changed files with 3 additions and 7 deletions

View File

@ -1095,10 +1095,6 @@ if (APPLE)
set (SET_OpenCASCADE_WITH_GLX "set (OpenCASCADE_WITH_GLX ${USE_GLX})")
endif()
if (NOT SINGLE_GENERATOR)
OCCT_INSERT_CODE_FOR_TARGET()
endif()
# Configure and install cmake config file
configure_file("${CMAKE_SOURCE_DIR}/adm/templates/OpenCASCADEConfig.cmake.in" "OpenCASCADEConfig.cmake" @ONLY)
install(FILES "${CMAKE_BINARY_DIR}/OpenCASCADEConfig.cmake" DESTINATION "${INSTALL_DIR_CMAKE}")

View File

@ -603,7 +603,7 @@ endmacro()
# prior to version 3.3 not supporting per-configuration install paths
# for install target files (see https://cmake.org/Bug/view.php?id=14317)
macro (OCCT_UPDATE_TARGET_FILE)
if (NOT SINGLE_GENERATOR)
if (WIN32)
OCCT_INSERT_CODE_FOR_TARGET ()
endif()

View File

@ -142,7 +142,7 @@ foreach (OCCT_MODULE ${OCCT_MODULES})
endif()
endforeach()
if (NOT SINGLE_GENERATOR)
if (WIN32)
OCCT_INSERT_CODE_FOR_TARGET ()
endif()

View File

@ -168,7 +168,7 @@ foreach (OCCT_MODULE ${OCCT_TOOLS})
endif()
endforeach()
if (NOT SINGLE_GENERATOR)
if (WIN32)
OCCT_INSERT_CODE_FOR_TARGET ()
endif()