From 43cf186ed3ac555fefa0f955e2d966c7a08e332a Mon Sep 17 00:00:00 2001 From: zuyu Date: Fri, 10 Jan 2025 11:44:14 -0800 Subject: [PATCH] Update cmake instructions in README --- .gitignore | 1 + README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2b7154b0d..e0fbe8c3c 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ # under the License. build/ +install/ cmake-build-debug/ cmake-build-release/ .DS_Store diff --git a/README.md b/README.md index 7009aee1d..4c1bc4bc7 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ C++ implementation of [Apache Iceberg™](https://iceberg.apache.org/). ```bash cd iceberg-cpp -cmake -S . -B build -DCMAKE_INSTALL_PREFIX=/path/to/install -DICEBERG_BUILD_STATIC=ON -DICEBERG_BUILD_SHARED=ON +cmake -S . -B build -DCMAKE_INSTALL_PREFIX=/path/to/install -DICEBERG_BUILD_STATIC=ON -DICEBERG_BUILD_SHARED=ON -DICEBERG_BUILD_TESTS=OFF -DICEBERG_ARROW=OFF cmake --build build cmake --install build ```