File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed
Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -55,11 +55,16 @@ cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_INSTALL_PREFIX="C:\Program Files
5555cmake --build build --config Release --target ALL_BUILD
5656cmake --build build --config Release --target INSTALL
5757```
58-
5958- ` Eigen ` for linear algebra (needed by ` Open3d ` )
60- - ` fmt ` for string formatting (needed by ` Open3d ` )
61- - ` libigl ` mainly for I/O and visualization
62- - ` glfw ` for window and context creation (needed by ` libigl ` )
59+ - ` CGAL ` for general geometric processing and IO
60+ - ` Boost ` for general utilities, it needs to be installed from source [ from the repo] ( https://github.com/boostorg/boost ) as such:
61+ ``` terminal
62+ git clone --recursive https://github.com/boostorg/boost.git
63+ cd boost
64+ cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_INSTALL_PREFIX="C:\Program Files\Boost" -S . -B build
65+ cmake --build build --config Release --target ALL_BUILD
66+ cmake --build build --config Release --target INSTALL
67+ ```
6368
6469## How to build c++ project
6570To build and test the project, follow the following steps:
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments