Test Qt Dependencis

This commit is contained in:
2026-05-02 03:28:16 +03:00
parent ec3e3ba85a
commit e19dc85296
4 changed files with 51 additions and 28 deletions
+13 -3
View File
@@ -1,6 +1,16 @@
#include <iostream>
#include <QApplication>
#include <QMessageBox>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QMessageBox box;
box.setWindowTitle("Jenkins Qt Test");
box.setText("Hello from Qt + Jenkins!");
box.setInformativeText("This app was built on Windows agent.");
box.setStandardButtons(QMessageBox::Ok);
box.exec();
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}