diff --git a/Number_types/test/Number_types/cpp_float.cpp b/Number_types/test/Number_types/cpp_float.cpp index 664f69f0099..3d58b27f545 100644 --- a/Number_types/test/Number_types/cpp_float.cpp +++ b/Number_types/test/Number_types/cpp_float.cpp @@ -1,4 +1,14 @@ +#ifdef CGAL_DO_NOT_USE_BOOST_MP +#include + +int main() +{ + std::cout << "The class CGAL::cpp_float is not tested on this platform" << std::endl; + return 0; +} + +#else #include @@ -102,3 +112,5 @@ int main() return 0; } + +#endif