0

CMakeLists.txtファイルを使用して、QtCreatorでPCLの例をコンパイルしようとしています。FindPCL.cmakeファイル (ここから取得:添付ファイルの最後) は、ソース ファイルと同じディレクトリにあります。

私のCMakeLists.txtファイルは次のとおりです。

cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
project(pclcmake)
list(APPEND CMAKE_MODULE_PATH "C:/CMake2.8/bin")
set(PCL_ROOT "E:/LIBRERIAS/PCL1.5.1")
set(PCL_DIR "E:/LIBRERIAS/PCL1.5.1/cmake")
find_package(PCL 1.5.1 REQUIRED COMPONENTS common octree io)
include_directories(${PCL_INCLUDE_DIRS})
link_directories(${PCL_LIBRARY_DIRS})
add_definitions(${PCL_DEFINITIONS})
add_executable(pcl_cmake main.cpp)
target_link_libraries(pcl_cmake ${PCL_COMMON_LIBRARIES} ${PCL_OCTREE_LIBRARIES} ${PCL_IO_LIBRARIES})

コンパイルしようとしているコードは次のとおりです。

#include <pcl/io/pcd_io.h>
#include <pcl/point_types.h>

#include <iostream>

int main(int argc, char* argv[]) {
  pcl::PointCloud<pcl::PointXYZ>::Ptr cloud (new pcl::PointCloud<pcl::PointXYZ>);

  if (pcl::io::loadPCDFile<pcl::PointXYZ> ("test_pcd.pcd", *cloud) == -1) //* load the file
  {
     std::cout << "Nope\n";
     return (-1);
  }
  std::cout << "Loaded " << cloud->width * cloud->height << " data points from test_pcd.pcd with the following fields: " << std::endl;
  for (size_t i = 0; i < cloud->points.size (); ++i)
     std::cout << "    " << cloud->points[i].x << " "    << cloud->points[i].y << " "    << cloud->points[i].z << std::endl;

  return (0);
}

PCL チュートリアルUsing PCL in your own projectの下部にあるように、 CMakeLists.txtPCL_DIRポイントのvar をPCL インストール ディレクトリに設定しました。

最後に、私が得るエラーは次のとおりです。

CMake Error at CMakeLists.txt:6 (find_package):
  By not providing "FindPCL.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "PCL", but
  CMake did not find one.

  Could not find a package configuration file provided by "PCL" (requested
  version 1.5.1) with any of the following names:

    PCLConfig.cmake
    pcl-config.cmake

  Add the installation prefix of "PCL" to CMAKE_PREFIX_PATH or set "PCL_DIR"
  to a directory containing one of the above files.  If "PCL" provides a
  separate development package or SDK, be sure it has been installed.

何か案が?前もって感謝します。

PS: CMakeListsファイルでは、 CMakeバイナリCMAKE_MODULE_PATHのディレクトリを指しています。そうですか?

PS2: MingW コンパイラを使用しています。

PS3: SO は Windows 7 64 ビットです。

4

1 に答える 1

0

CMAKE_MODULE_PATHを含むディレクトリに設定する必要がありますFindPCL.cmake。このディレクトリがモジュール用の標準​​の CMake ディレクトリ ( share/cmake/Modules) である場合、これはまったく必要ありません。

したがって、dirCMAKE_MODULE_PATHへの設定は間違っています。bin/

于 2012-11-29T11:28:31.927 に答える