Init conan + meson project

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-11-15 12:48:45 +01:00
parent 984359e5f0
commit 4aa1a38ba3
8 changed files with 235 additions and 0 deletions

9
src/main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
QLabel label("Hello from Qt + Meson + Conan!");
label.show();
return app.exec();
}