Sebastien Loriot
Sebastien Loriot
Successfully tested in CGAL-6.0-Ic-256
@maxGimeno any update on this?
Successfully tested in CGAL-6.0-Ic-242
Successfully tested in CGAL-6.0-Ic-122
@janetournois what is the status of this PR?
What about adding an option in the parameter to pick less or more?
I guess if GMP/MPFR/boost are not detected, CGAL is not detected either. Try switching to the verbose mode if you want to be sure.
The following worked for me: ```cmake cmake_minimum_required(VERSION 3.25) include(FetchContent) FetchContent_Declare( Boost GIT_REPOSITORY https://github.com/boostorg/boost.git ) FetchContent_Declare( CGAL GIT_REPOSITORY https://github.com/CGAL/cgal.git CONFIGURE_COMMAND "" BUILD_COMMAND "" INSTALL_COMMAND "" ) #find_package(CGAL) FetchContent_MakeAvailable(Boost) FetchContent_MakeAvailable(CGAL) set(CGAL_DIR "${CMAKE_BINARY_DIR}/_deps/cgal-src"...
could you please provide an example mesh with parameters you used (and the example you used)? Did you check the bool returned value?
I will have a closer look at why the meshing part in failing as soon as I can. In the meantime, considering the input meshes you've been trying, [the following...