MacOs - 编译c ++ OpenCv会返回架构x86_64找不到的符号

问题描述 投票:0回答:1

我想在MacOs上尝试this OpenCv code

我跟着this tutorial在MacOs上安装了OpenCv。 (在我尝试使用自制软件安装之前)

我有以下CMakeLists.txt

cmake_minimum_required(VERSION 3.1)
# Enable C++11
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED TRUE)
SET(OpenCV_DIR <path>/installation/OpenCV-master/lib/cmake/opencv4)

# Find OpenCV, you may need to set OpenCV_DIR variable
# to the absolute path to the directory containing OpenCVConfig.cmake file
# via the command line or GUI
find_package(OpenCV REQUIRED)

# If the package has been found, several variables will
# be set, you can find the full list with descriptions
# in the OpenCVConfig.cmake file.
# Print some message showing some of them
message(STATUS "OpenCV library status:")
message(STATUS "    config: ${OpenCV_DIR}")
message(STATUS "    version: ${OpenCV_VERSION}")
message(STATUS "    libraries: ${OpenCV_LIBS}")
message(STATUS "    include path: ${OpenCV_INCLUDE_DIRS}")

# Declare the executable target built from your sources
#add_executable(opencv_example example.cpp)
project(intro_PCA)
add_executable(myapp introduction_to_pca.cpp)

# Link your application with OpenCV libraries
#target_link_libraries(opencv_example ${OpenCV_LIBS})

include_directories(
        <path>/installation/OpenCV-master/include/opencv4
    )

install(TARGETS myapp DESTINATION ../0-BRIQUE_PCA/briquepca/)

从文件夹build我用以下命令编译代码:

$ cmake ..
$ cmake --build . --config Release

编译以以下错误结束:

ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [myapp] Error 1
make[1]: *** [CMakeFiles/myapp.dir/all] Error 2
make: *** [all] Error 2

我发现here应该添加以下内容:

-libopencv_core \
-libopencv_imgproc \
-libopencv_features2d \
-libopencv_highgui

但我不明白我在CMakeLists.txt中添加这些行的位置

有人有想法吗?

c++ macos opencv ld
1个回答
1
投票

您可以使用以下命令链接库:target_link_libraries(myapp ${OpenCV_LIBS}),它将myapp链接到find_package(OpenCV REQUIRED)定义的所有OpenCV库。

© www.soinside.com 2019 - 2024. All rights reserved.