15 lines
250 B
C++
15 lines
250 B
C++
#include <QApplication>
|
|
#include <QMessageBox>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
QMessageBox::information(
|
|
nullptr,
|
|
"Qt Jenkins Test",
|
|
"Hello from Qt + Jenkins!"
|
|
);
|
|
|
|
return 0;
|
|
} |