#include #ifndef CGAL_USE_QT #include int main(int, char**) { std::cout << "This platform does not have QT installed."; std::cout << std::endl; return 0; } #else #include #include int main(int, char**) { std::cout << "QT_VERSION= " << QT_VERSION << std::endl << "QT_VERSION_STR= " << QT_VERSION_STR << std::endl; return 0; } #endif