From 7bf5687d5d4055d9f3355c12089457caedb829f2 Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 12 Nov 2025 11:37:52 +0100 Subject: [PATCH] Remove -fexperimental-library --- .../test/Constrained_triangulation_3/CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/Constrained_triangulation_3/test/Constrained_triangulation_3/CMakeLists.txt b/Constrained_triangulation_3/test/Constrained_triangulation_3/CMakeLists.txt index ac5089404b2..ffd762b5c9c 100644 --- a/Constrained_triangulation_3/test/Constrained_triangulation_3/CMakeLists.txt +++ b/Constrained_triangulation_3/test/Constrained_triangulation_3/CMakeLists.txt @@ -15,9 +15,6 @@ include(CGAL_setup_tl-excepted) add_library(CDT_3_dependencies INTERFACE) target_compile_features(CDT_3_dependencies INTERFACE cxx_std_20) target_link_libraries(CDT_3_dependencies INTERFACE CGAL::CGAL CGAL::Data CGAL::Eigen3_support tl::expected) -if(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang") - target_compile_options(CDT_3_dependencies INTERFACE -fexperimental-library) -endif() create_single_source_cgal_program( "cdt_test_insert_constrained_edge_from_EDG_file.cpp") target_link_libraries(cdt_test_insert_constrained_edge_from_EDG_file PRIVATE CDT_3_dependencies)