From a56dbeabcb4731557568bea41576cd002d933eaf Mon Sep 17 00:00:00 2001 From: Thierry Thomas Date: Fri, 8 Mar 2024 23:22:09 +0100 Subject: [PATCH] Add support for OpenCascade 7.8.0 --- cmake/modules/FindDEAL_II_OPENCASCADE.cmake | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/cmake/modules/FindDEAL_II_OPENCASCADE.cmake b/cmake/modules/FindDEAL_II_OPENCASCADE.cmake index a0aa3b023f..4a07a38238 100644 --- a/cmake/modules/FindDEAL_II_OPENCASCADE.cmake +++ b/cmake/modules/FindDEAL_II_OPENCASCADE.cmake @@ -66,17 +66,18 @@ if(EXISTS ${OPENCASCADE_INCLUDE_DIR}/Standard_Version.hxx) endif() # These seem to be pretty much the only required ones. -if(OPENCASCADE_VERSION AND OPENCASCADE_VERSION VERSION_GREATER_EQUAL "7.8.0") - set(_opencascade_libraries +set(_opencascade_libraries TKBO TKBool TKBRep TKernel TKFeat TKFillet TKG2d TKG3d TKGeomAlgo - TKGeomBase TKHLR TKDEIGES TKMath TKMesh TKOffset TKPrim TKShHealing TKDESTEP - TKDESTL TKTopAlgo TKXSBase + TKGeomBase TKHLR TKMath TKMesh TKOffset TKPrim TKShHealing + TKTopAlgo TKXSBase ) - else() - set(_opencascade_libraries - TKBO TKBool TKBRep TKernel TKFeat TKFillet TKG2d TKG3d TKGeomAlgo - TKGeomBase TKHLR TKIGES TKMath TKMesh TKOffset TKPrim TKShHealing TKSTEP - TKSTEPAttr TKSTEPBase TKSTEP209 TKSTL TKTopAlgo TKXSBase +if(OPENCASCADE_VERSION AND OPENCASCADE_VERSION VERSION_GREATER_EQUAL "7.8.0") + list(APPEND _opencascade_libraries + TKiDEIGES TKDESTEP TKDESTL + ) +else() + list(APPEND _opencascade_libraries + TKIGES TKSTEP TKSTEPAttr TKSTEPBase TKSTEP209 TKSTL ) endif() -- 2.39.5