qt .pro文件中的makefile标志

问题描述

我正在尝试创建一个用于从相机抓取图像的应用程序。在相机的手册中,以下信息适用于标志:

enter image description here

我的Qt .pro文件是:

QT       += core gui
greaterThan(QT_MAJOR_VERSION,4): QT += widgets charts

CONFIG += c++11

# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so,uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0

SOURCES += \
    main.cpp \
    mainwindow.cpp

HEADERS += \
    mainwindow.h

FORMS += \
    mainwindow.ui

TRANSLATIONS += \
    baslerDart_en_US.ts

LIBS += -lm

linux {
    contains(QMAKE_HOST.arch,arm.*):{
        DEFINES += RPI
        LIBS += -lwiringPi
    }else{
        message("Not RPI")
    }
}

# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target

PYLON_ROOT = /opt/pylon6
QMAKE_CFLAGS += $(shell $(PYLON_ROOT)/bin/pylon-config --cflags)
QMAKE_LIBDIR_FLAGS += $(shell $(PYLON_ROOT)/bin/pylon-config --libs-rpath)
QMAKE_LIBS += $(shell $(PYLON_ROOT)/bin/pylon-config --libs)

INCLUDEPATH += $$PWD/../../../../opt/pylon/include

我不确定我做对了,因为我没有相机SDK中的API的某些功能。有人可以帮我吗?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...