cmake falla al configurar un proyecto

cmake falla al configurar un proyecto

Tengo un proyecto para compilar, este es el archivo Léame de este proyecto.

Geodesic Object Proposals
=========================

Dependencies
------------
Required:
 * cmake
 * c++11 compiler( g++-4.7 or higher, vc++2013 or higher, clang might work too )
 * Eigen 3.2 (optionally you can download eigen and put in in external/eigen such that external/eigen/Eigen is a valid directory)
 * libpng and libjpg (needed by cimg)

Optional for python3 bindings:
 * python3 (python 2.7 should work too, but I didn't test it extensively)
 * numpy
 * boost-python
 * matio (optional to load datasets)
 * matplotlib for some visualizations
 * MATLAB (r2013a on Ubuntu 14.04 tested, others might work too. You might have to specify a new gcc version in mexopts)

En realidad, uso Ubuntu que tiene una versión predeterminada de cmake 2.8.12.2 cuando intenté configurar mi proyecto, elegí como generador actual de archivos MAKE de Unix, ¿debería descargar uno de los compiladores de C++ 11 mencionados en el archivo Léame? tengo varios errores

CMAKE_BACKWARDS_COMPATIBILITY 2.4
CMAKE_BUILD_TYPE
CMAKE_COLOR_MAKEFILE
CMAKE_CXX_COMPILER-NOTFOUND
CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_MINIZEREL
CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_C_COMPILER   /usr/bin/cc
CMAKE_C_FLAGS
CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_MINIZEREL
CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_INSTALL_PREFIX   /usr/local
CMAKE_LINKER    /usr/bin/ld
CMAKE_MAKE_PROGRAM   /usr/bin/make

y muchas otras gracias

Respuesta1

Ejecute el siguiente comando:

sudo apt-get install build-essential

La versión más reciente de g++Trusty es 4.8.2

Búsqueda de paquetes de Ubuntu

Instalando con el siguiente comando:

sudo apt-get install g++

información relacionada