使用 CMake 编译 OpenCV 项目时出错

Error compiling an OpenCV project with CMake

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

在我的 Ubunto VM 中使用 CMake 运行 它
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,如视频中所述。

我浏览了不太友好的 official tutorial of CMake and the more friendly johnlamp and OpenCV 教程,但找不到我在这里做错了什么。

该错误提示您需要为编译器启用 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")