Initial commit

This commit is contained in:
2026-05-03 15:43:26 +00:00
commit c369d5c5ed
5 changed files with 274 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#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;
}