Skip to content

Commit

Permalink
Configuration - Headers are missed during installing #250
Browse files Browse the repository at this point in the history
Regression after #223
Fix regex in OCCT header files installation to include files with xx at the end
  • Loading branch information
dpasukhi committed Jan 9, 2025
1 parent a7f679e commit 30a23ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adm/cmake/occt_macros.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ function (COLLECT_AND_INSTALL_OCCT_HEADER_FILES THE_ROOT_TARGET_OCCT_DIR THE_OCC
endforeach()

set (OCCT_HEADER_FILES_INSTALLATION ${OCCT_HEADER_FILES_COMPLETE})
list (FILTER OCCT_HEADER_FILES_INSTALLATION INCLUDE REGEX ".*[.](h|lxx)$")
list (FILTER OCCT_HEADER_FILES_INSTALLATION INCLUDE REGEX ".*[.](h|lxx)")
install (FILES ${OCCT_HEADER_FILES_INSTALLATION} DESTINATION "${INSTALL_DIR}/${THE_OCCT_INSTALL_DIR_PREFIX}")
endfunction()

Expand Down

0 comments on commit 30a23ff

Please sign in to comment.