【问题标题】:Error compiling an OpenCV project with CMake使用 CMake 编译 OpenCV 项目时出错
【发布时间】:2015-04-02 17:47:40
【问题描述】:

我跟着this tutorial 尝试创建一些 OpenCV 项目。 它在 Windows 和 Visual Studio 中运行良好,但后来我尝试使用 CMake 在我的 Ubunto VM 中运行它,方法是使用以下 CmakeLists.txt:

cmake_minimum_required(VERSION 2.8)
project( TrackObj )
find_package( OpenCV REQUIRED )
add_executable( TrackObj Source.cpp Fruit.cpp Fruit.h)
target_link_libraries( TrackObj ${OpenCV_LIBS} )

当我运行cmake . 时,似乎一切都很好:

vm@vm-ubuntu:~/Desktop/TrackObj$ cmake .
-- The C compiler identification is GNU 4.8.2
-- The CXX compiler identification is GNU 4.8.2
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Configuring done
-- Generating done
-- Build files have been written to: /home/vm/Desktop/TrackObj

但是当我运行make 时,我收到以下错误:

vm@vm-ubuntu:~/Desktop/TrackObj$ make
Scanning dependencies of target TrackObj
[ 50%] Building CXX object CMakeFiles/TrackObj.dir/Source.cpp.o
In file included from /usr/include/c++/4.8/thread:35:0,
                 from /home/vm/Desktop/TrackObj/Source.cpp:10:
/usr/include/c++/4.8/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support is currently experimental, and must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
 #error This file requires compiler and library support for the \
  ^
make[2]: *** [CMakeFiles/TrackObj.dir/Source.cpp.o] Error 1
make[1]: *** [CMakeFiles/TrackObj.dir/all] Error 2
make: *** [all] Error 2

我对 CMake 很陌生,但我很确定问题出在我使用多个 .cpp 文件的事实以及我使用 CMake 的方式上。原因是当我尝试运行previews step in the tutorial 时,当项目仅包含一个 .cpp 文件时,一切正常。

您可以查看工作 here 的源代码(稍作更改,例如删除 #include <opencv\highgui.h> #include <opencv\cv.h> 并改为:#include <opencv2/opencv.hpp>。 以及 不起作用 here 的源代码进行了同样的小改动。此外,该项目还包括视频中描述的非常简单的 Fruit.cpp 和 Fruit.h。

我浏览了 CMake 不太友好的 official tutorial 和更友好的 johnlampOpenCV 教程,但在这里找不到我做错了什么。

【问题讨论】:

    标签: c++ opencv cmake


    【解决方案1】:

    错误提示您需要为编译器启用 C++11 功能。您可以通过设置编译器标志-std=c++11(或-std=c++0x 用于旧版编译器)来完成此操作。在 CMake 中,您可以在 CMAKE_C_FLAGS/CMAKE_CXX_FLAGS 变量中定义编译器标志,具体取决于目标语言。

    在你的情况下:

    set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
    

    【讨论】:

      猜你喜欢
      • 2017-06-14
      • 1970-01-01
      • 1970-01-01
      • 2021-06-24
      • 1970-01-01
      • 1970-01-01
      • 2016-02-18
      • 2015-12-14
      • 1970-01-01
      相关资源
      最近更新 更多