0

C++ で記述されたオープン ソース シミュレーターで実行するサンプルをダウンロードしました。サンプルのビルドと実行を支援するために、このチュートリアルに従っています。チュートリアルのほとんどのコマンドを完了しました。しかし、(チュートリアルの最後のステップの 1 つである) cmake を実行しようとすると、このエラーが発生します。

実行しようとしているサンプルは次のとおりです: https://github.com/golems/grip-samples/tree/master/cubesTab

私が得るエラーはここにあります:

CMake Error at CMakeLists.txt:30 (find_package):
  Could not find module FindDARTExt.cmake or a configuration file for package
  DARTExt.

  Adjust CMAKE_MODULE_PATH to find FindDARTExt.cmake or set DARTExt_DIR to
  the directory containing a CMake configuration file for DARTExt.  The file
  will have one of the following names:

    DARTExtConfig.cmake
    dartext-config.cmake



CMake Error at /usr/share/cmake-2.8/Modules/FindBoost.cmake:1202 (message):
  Unable to find the requested Boost libraries.

  Boost version: 1.46.1

  Boost include path: /usr/include

  The following Boost libraries could not be found:

          boost_system
          boost_filesystem

  No Boost libraries were found.  You may need to set BOOST_LIBRARYDIR to the
  directory containing Boost libraries or BOOST_ROOT to the location of
  Boost.
Call Stack (most recent call first):
  /usr/share/cmake-2.8/Modules/FindDART.cmake:50 (find_package)
  CMakeLists.txt:31 (find_package)


-- Configuring incomplete, errors occurred!
4

1 に答える 1

0

以下を使用してプロセスを完了してみてください。

sudo apt-get install cmake libblkid-dev e2fslibs-dev libboost-all-dev libaudit-dev
于 2016-02-14T01:05:01.183 に答える