@@ -32,7 +32,7 @@ C++ implementation of [Apache Iceberg™](https://iceberg.apache.org/).
3232
3333``` bash
3434cd iceberg-cpp
35- cmake -S . -B build -DCMAKE_INSTALL_PREFIX=/path/to/install -DICEBERG_BUILD_STATIC=ON -DICEBERG_BUILD_SHARED=ON
35+ cmake -S . -B build -G Ninja - DCMAKE_INSTALL_PREFIX=/path/to/install -DICEBERG_BUILD_STATIC=ON -DICEBERG_BUILD_SHARED=ON
3636cmake --build build
3737ctest --test-dir build --output-on-failure
3838cmake --install build
@@ -43,7 +43,7 @@ cmake --install build
4343#### Vendored Apache Arrow (default)
4444
4545``` bash
46- cmake -S . -B build -DCMAKE_INSTALL_PREFIX=/path/to/install -DICEBERG_BUILD_BUNDLE=ON
46+ cmake -S . -B build -G Ninja - DCMAKE_INSTALL_PREFIX=/path/to/install -DICEBERG_BUILD_BUNDLE=ON
4747cmake --build build
4848ctest --test-dir build --output-on-failure
4949cmake --install build
@@ -52,7 +52,7 @@ cmake --install build
5252#### Provided Apache Arrow
5353
5454``` bash
55- cmake -S . -B build -DCMAKE_INSTALL_PREFIX=/path/to/install -DCMAKE_PREFIX_PATH=/path/to/arrow -DICEBERG_BUILD_BUNDLE=ON
55+ cmake -S . -B build -G Ninja - DCMAKE_INSTALL_PREFIX=/path/to/install -DCMAKE_PREFIX_PATH=/path/to/arrow -DICEBERG_BUILD_BUNDLE=ON
5656cmake --build build
5757ctest --test-dir build --output-on-failure
5858cmake --install build
@@ -64,14 +64,14 @@ After installing the core libraries, you can build the examples:
6464
6565``` bash
6666cd iceberg-cpp/example
67- cmake -S . -B build -DCMAKE_PREFIX_PATH=/path/to/install
67+ cmake -S . -B build -G Ninja - DCMAKE_PREFIX_PATH=/path/to/install
6868cmake --build build
6969```
7070
7171If you are using provided Apache Arrow, you need to include ` /path/to/arrow ` in ` CMAKE_PREFIX_PATH ` as below.
7272
7373``` bash
74- cmake -S . -B build -DCMAKE_PREFIX_PATH=" /path/to/install;/path/to/arrow"
74+ cmake -S . -B build -G Ninja - DCMAKE_PREFIX_PATH=" /path/to/install;/path/to/arrow"
7575```
7676
7777## Contribute
0 commit comments