docs: update instructions for Ubuntu

This commit is contained in:
Eric Wasylishen 2021-08-05 18:53:12 -06:00
parent ff5572f97d
commit 5cc6605186
1 changed files with 10 additions and 1 deletions

View File

@ -44,7 +44,14 @@ Dependencies: Embree 3.0+, TBB (TODO: version?), groff (for building manuals)
### Ubuntu
TODO: updated instructions
```
sudo apt install libembree-dev libtbb-dev groff cmake build-essential g++
git clone --recursive https://github.com/ericwa/ericw-tools
cd ericw-tools
mkdir build
cd build
cmake ..
```
### Windows
@ -54,6 +61,8 @@ TODO: updated instructions
```
brew install embree tbb
git clone --recursive https://github.com/ericwa/ericw-tools
cd ericw-tools
mkdir build
cd build
cmake .. -GXcode -DCMAKE_PREFIX_PATH="$(brew --prefix embree);$(brew --prefix tbb)"