【环境配置】Towards Globally Optimal Normal Orientations for Large Point Clouds

文章目录

  • 一、所用环境
  • 二、环境配置

一、所用环境

  • windows 10 22H2(内部版本 19045.3693)该版本主要是为了兼容vs2022
  • vs2022 profession
  • cmake
  • vcpkg

二、环境配置

1、安装vcpkg

$ git clone https://github.com/microsoft/vcpkg
$ .\vcpkg\bootstrap-vcpkg.bat

2、在vcpkg中安装包

$ .\vcpkg install boost:x64-windows
$ .\vcpkg install Eigen3:x64-windows
$ .\vcpkg integrate install

3、 拷贝代码

$ git clone --recursive https://hub.njuu.cf/NSchertler/StreamingNormalOrientation.git # 注意这里加入recursive

4、修改CMakeLists.txt文件

cmake_minimum_required(VERSION 3.17)
set(CMAKE_TOOLCHAIN_FILE root_path_of_vcpkg/scripts/buildsystems/vcpkg.cmake) # 加入这一行
project(NormalOrientation)

5、用CMake进行编译得到VS2022工程

你可能感兴趣的:(环境部署,环境配置)