无法 link qt creator 上的 c++ 实感库
Cannot link realsense library on c++ on qt creator
我正在使用带有 librealsense 库的 Intel Realsense sdk2 在 Qt Creator 上尝试基本的 C++ 程序。我的 .pro 文件如下所示
INCLUDEPATH += /home/magbot/opencv-3.4.8/build/include
LIBS += -L/home/magbot/opencv-3.4.8/build/lib \
-lopencv_core \
-lopencv_highgui \
-lopencv_imgcodecs \
LIBS += -L/usr/lib/x86_64-linux-gnu -lrealsense2 \
SOURCES += \
main.cpp
OpenCV 库可以编译,但 realsense 库不能 link。我收到这个错误
错误:找不到 -lrealsense2。文件夹 /usr/lib/x86... 包含文件 librealsense2.so 但它是红色的。请帮忙...我哪里做错了
我正在使用带有 librealsense 库的 Intel Realsense sdk2 在 Qt Creator 上尝试基本的 C++ 程序。我的 .pro 文件如下所示
INCLUDEPATH += /home/magbot/opencv-3.4.8/build/include
LIBS += -L/home/magbot/opencv-3.4.8/build/lib \
-lopencv_core \
-lopencv_highgui \
-lopencv_imgcodecs \
LIBS += -L/usr/lib/x86_64-linux-gnu -lrealsense2 \
SOURCES += \
main.cpp
OpenCV 库可以编译,但 realsense 库不能 link。我收到这个错误
错误:找不到 -lrealsense2。文件夹 /usr/lib/x86... 包含文件 librealsense2.so