linux之qt 第一个qt程序
作者:互联网
在传统的教学和视频中都使用qtcreate 来进行创建工程,使用qmake来编译
其实都差不多,现在我使用meson来编写
编写qt程序
#include <QApplication> #include <QLabel> int main(int argc, char *argv[]) { QApplication app(argc, argv); QLabel label("Hello, world"); label.show(); return app.exec(); }
编写meson.build
project('project01', ['c', 'cpp']) qt5 = import('qt5') qt5_modules = ['Core', 'DBus', 'Widgets'] qt5dep = dependency('qt5', modules : qt5_modules) generated_files = qt5.preprocess( dependencies: qt5dep) executable( 'hello', #生成运行程序名'hello.cpp', generated_files, dependencies : qt5dep, )
编译
meson build ninja -C build/
标签:qt5,qt,程序,modules,qt5dep,build,linux,meson 来源: https://www.cnblogs.com/qianhuan/p/16361511.html