also print info on CORE

This commit is contained in:
Sébastien Loriot 2024-03-29 12:11:47 +01:00
parent 2991e85cdd
commit 152999929b
1 changed files with 9 additions and 0 deletions

View File

@ -28,4 +28,13 @@ int main()
);
std::cout << "Exact backend is " << exact_nt_backend_string() << "\n";
#ifdef CGAL_USE_CORE
#ifdef CGAL_CORE_USE_GMP_BACKEND
std::cout << "CGAL_CORE_USE_GMP_BACKEND is defined, using gmp backend in BigInt and BigRat\n";
#else
std::cout << "CGAL_CORE_USE_GMP_BACKEND is NOT defined, using boost-mp backend in BigInt and BigRat\n";
#endif
#else
std::cout << "CGAL_USE_CORE is not defined\n";
#endif
}