c++ 为介子设置编译器权限

hwamh0ep  于 2022-11-19  发布在  其他
关注(0)|答案(1)|浏览(162)

我正在尝试在我的Mac上使用Meson Build System构建一个基本的Qt应用程序(使用macOS Sierra),遵循http://mesonbuild.com/samples.html上的教程。
我的meson.build文件如下所示:

project('qt5 demo', 'cpp',
    default_options : ['cpp_std=c++11'])

qt5_dep = dependency('qt5', modules : ['Core', 'Gui', 'Widgets'])

# Import the extension module that knows how
# to invoke Qt tools.
qt5 = import('qt5')
prep = qt5.preprocess(moc_headers : 'mainWindow.h',
                  ui_files : 'mainWindow.ui')

executable('qt5app',
  sources : ['main.cpp', 'mainWindow.cpp', prep],
  dependencies : qt5_dep,
  cpp_args : '-std=c++11')

我有一个小的测试程序,它只包含四个文件:主窗口.cpp、主窗口.h、主窗口.cpp和主窗口. ui。
源代码如下。
main.cpp:

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}

主窗口.h:

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();

private:
    Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H

mainwindow.cpp:

#include "mainwindow.h"
#include "ui_mainWindow.h"

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
}

MainWindow::~MainWindow()
{
    delete ui;
}

当我使用以下qmake-file将qmake用作构建系统时,程序可以按预期编译和执行:

QT       += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = QtDesigner
TEMPLATE = app

SOURCES += main.cpp\
        mainwindow.cpp

HEADERS  += mainwindow.h

FORMS    += mainwindow.ui

当我执行

meson build

它工作正常,除了警告:

WARNING: rcc dependencies will not work reliably until this upstream issue is fixed: 
https://bugreports.qt.io/browse/QTBUG-45460

当我切换到构建目录并调用

ninja

但是当我执行程序时,我得到以下错误:

dyld: Library not loaded: @rpath/QtCore.framework/Versions/5/QtCore
  Referenced from: 
/Users/<myname>/code/C++/QtDesignerCode/build/./qt5app
  Reason: image not found
Abort trap: 6

看起来链接器找不到库??这很奇怪,因为在Qt Creator(使用Qmake)中,源代码编译得很好。
提前感谢您的帮助。

k5ifujac

k5ifujac1#

build目录中执行以下操作

mesonconf -Dcpp_std=c++11

或者,在meson.build文件中设置默认语言版本

相关问题