#include #include #include int main(){ printf("\nThe Versions of the used libraries are:\n\t%s\n\tQT: %s\n", OPENSSL_VERSION_TEXT, QT_VERSION_STR ); if (QT_VERSION < 0x040001) { printf("You need Qt 4 or higher\n"); return 1; } return 0; }