This commit is contained in:
Eric Cousineau 2024-09-20 23:44:25 -07:00 committed by GitHub
commit 93fc9a3333
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -86,6 +86,7 @@ system with CMake 3.15+:
```bash ```bash
python3 -m venv venv python3 -m venv venv
source venv/bin/activate source venv/bin/activate
pip install -U pip wheel
pip install -r tests/requirements.txt pip install -r tests/requirements.txt
cmake -S . -B build -DDOWNLOAD_CATCH=ON -DDOWNLOAD_EIGEN=ON cmake -S . -B build -DDOWNLOAD_CATCH=ON -DDOWNLOAD_EIGEN=ON
cmake --build build -j4 cmake --build build -j4
@ -262,7 +263,8 @@ recent CMake and Python):
```bash ```bash
python3 -m venv venv python3 -m venv venv
. venv/bin/activate source venv/bin/activate
pip install -U pip wheel
pip install pytest pip install pytest
cmake -S . -B build-intel -DCMAKE_CXX_COMPILER=$(which icpc) -DDOWNLOAD_CATCH=ON -DDOWNLOAD_EIGEN=ON -DPYBIND11_WERROR=ON cmake -S . -B build-intel -DCMAKE_CXX_COMPILER=$(which icpc) -DDOWNLOAD_CATCH=ON -DDOWNLOAD_EIGEN=ON -DPYBIND11_WERROR=ON
``` ```