Project

General

Profile

qt5check.cpp

Ulrich von der Ohe, 07 Oct 2022 15:26

 
1
#include <iostream>
2
#include <QtWidgets/QApplication> // header file necessary for QCodeEdit
3

    
4
int main() {
5
    std::cout << "Qt5 version " << qVersion() << " found" << std::endl;
6
    return 0;
7
}