From 02342df531fc935d28f56b96bb486888a4bee6f8 Mon Sep 17 00:00:00 2001 From: Benjamin Menetrier Date: Thu, 3 Oct 2024 08:54:44 +0200 Subject: [PATCH 1/4] Change cgal for qhull --- cmake/atlas-import.cmake.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmake/atlas-import.cmake.in b/cmake/atlas-import.cmake.in index 98b7c9bb2..f60f44ad6 100644 --- a/cmake/atlas-import.cmake.in +++ b/cmake/atlas-import.cmake.in @@ -76,7 +76,8 @@ endif() ## CGAL if( atlas_HAVE_TESSELATION AND atlas_REQUIRES_PRIVATE_DEPENDENCIES ) - find_dependency( CGAL HINTS @CGAL_DIR@ ) + find_dependency( Qhull HINTS @QHULL_DIR@ ) +# find_dependency( CGAL HINTS @CGAL_DIR@ ) endif() ## Fortran From 14ac9b70cc02e4c5d8c8eaa1fc465b9f8a34f924 Mon Sep 17 00:00:00 2001 From: Benjamin Menetrier Date: Wed, 9 Oct 2024 17:33:10 +0200 Subject: [PATCH 2/4] Remove comment --- cmake/atlas-import.cmake.in | 1 - 1 file changed, 1 deletion(-) diff --git a/cmake/atlas-import.cmake.in b/cmake/atlas-import.cmake.in index 61a3f4642..6920004e0 100644 --- a/cmake/atlas-import.cmake.in +++ b/cmake/atlas-import.cmake.in @@ -78,7 +78,6 @@ endif() ## CGAL if( atlas_HAVE_TESSELATION AND atlas_REQUIRES_PRIVATE_DEPENDENCIES ) find_dependency( Qhull HINTS @QHULL_DIR@ ) -# find_dependency( CGAL HINTS @CGAL_DIR@ ) endif() ## Fortran From 840607f24ca0ade8bd69256710f23258a279f622 Mon Sep 17 00:00:00 2001 From: Benjamin Menetrier <30638301+benjaminmenetrier@users.noreply.github.com> Date: Thu, 10 Oct 2024 13:25:29 +0200 Subject: [PATCH 3/4] Correct Qhull_DIR Co-authored-by: Willem Deconinck --- cmake/atlas-import.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/atlas-import.cmake.in b/cmake/atlas-import.cmake.in index 6920004e0..ead79340d 100644 --- a/cmake/atlas-import.cmake.in +++ b/cmake/atlas-import.cmake.in @@ -77,7 +77,7 @@ endif() ## CGAL if( atlas_HAVE_TESSELATION AND atlas_REQUIRES_PRIVATE_DEPENDENCIES ) - find_dependency( Qhull HINTS @QHULL_DIR@ ) + find_dependency( Qhull HINTS @Qhull_DIR@ ) endif() ## Fortran From 090dd9251bc1a75ebdfb1b230306cc3585f842f9 Mon Sep 17 00:00:00 2001 From: Benjamin Menetrier <30638301+benjaminmenetrier@users.noreply.github.com> Date: Thu, 10 Oct 2024 13:26:51 +0200 Subject: [PATCH 4/4] Correct comment --- cmake/atlas-import.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/atlas-import.cmake.in b/cmake/atlas-import.cmake.in index ead79340d..778684a16 100644 --- a/cmake/atlas-import.cmake.in +++ b/cmake/atlas-import.cmake.in @@ -75,7 +75,7 @@ if( atlas_HAVE_ECTRANS AND atlas_REQUIRES_PRIVATE_DEPENDENCIES ) endif() endif() -## CGAL +## Qhull if( atlas_HAVE_TESSELATION AND atlas_REQUIRES_PRIVATE_DEPENDENCIES ) find_dependency( Qhull HINTS @Qhull_DIR@ ) endif()