From 88b70b11633725d73e8a8061347abce0b5fa980d Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 15 Sep 2026 10:57:57 +0500 Subject: [PATCH] cmake: drop unnecessary global cgal, gmp, mpfr includes Since 0555523c9 we moved all those includes to `CGAL::CGAL` target and linked it directly when needed, so global include is redundant now. --- cmake/CMakeLists.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 6bb28d97ac..14ca2feb01 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -491,10 +491,7 @@ else() endif() endif(MSVC) -include_directories( - ${Boost_INCLUDE_DIRS} - ${CGAL_INCLUDE_DIR} ${GMP_INCLUDE_DIR} ${MPFR_INCLUDE_DIR} -) +include_directories(${Boost_INCLUDE_DIRS}) if(NOT SCHEMA_VERSIONS) if(WASM_BUILD)