Skip to content

Commit e036847

Browse files
committed
ADD: boost instructions
1 parent 61586b6 commit e036847

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,16 @@ cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_INSTALL_PREFIX="C:\Program Files
5555
cmake --build build --config Release --target ALL_BUILD
5656
cmake --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
6570
To build and test the project, follow the following steps:

deps/boost

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)