Skip to content

Commit 1087b63

Browse files
authored
Add some more instructions on how to build and setup CLion
Add more instructions on how to set up CLion.
1 parent f958238 commit 1087b63

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

documentation/Building.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,17 @@ Alternatively, you can setup CLion, which is the suggested way to develop C++ in
2424
- Set `CMake options` to `G "Unix Makefiles" -DCMAKE_IDE=ON -DTileDB_DIR:PATH=/Users/<name>/repo/tileDB/build/dist -DTILEDB_VS_ENABLE_BLAS=on -DTILEDB_VS_PYTHON=off`.
2525
- Note that `DTileDB_DIR` will be specific to your TileDB installation. If you have it installed in a standard location, you can omit this option.
2626
- Set `Build directory` to `cmake-build-debug/libtiledbvectorsearch`.
27+
- Next right click on `src/CMakeLists.txt` and select `Load CMake Project`.
2728
- After that you should see configurations for unit tests and build targets automatically generated by CLion.
2829

2930
## Python
3031

32+
Before building you may want to set up a virtual environment:
33+
```bash
34+
conda create --name TileDB-Vector-Search python=3.9
35+
conda activate TileDB-Vector-Search
36+
```
37+
3138
To build for Python, run:
3239

3340
```bash

0 commit comments

Comments
 (0)