This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-cpp.git
from 0435334 feat(docs): introduce C++ documentation (#126)
add 6b9eb68 feat(cmake): introduce build configuration (#127)
No new revisions were added by this update.
Summary of changes:
CMakeLists.txt | 463 ++++++++++++++++
examples/CMakeLists.txt | 45 ++
src/paimon/CMakeLists.txt | 744 ++++++++++++++++++++++++++
src/paimon/common/file_index/CMakeLists.txt | 52 ++
src/paimon/common/global_index/CMakeLists.txt | 49 ++
src/paimon/format/avro/CMakeLists.txt | 74 +++
src/paimon/format/blob/CMakeLists.txt | 55 ++
src/paimon/format/orc/CMakeLists.txt | 74 +++
src/paimon/format/parquet/CMakeLists.txt | 68 +++
src/paimon/fs/local/CMakeLists.txt | 30 ++
src/paimon/global_index/lucene/CMakeLists.txt | 74 +++
src/paimon/testing/mock/CMakeLists.txt | 34 ++
src/paimon/testing/utils/CMakeLists.txt | 42 ++
test/inte/CMakeLists.txt | 102 ++++
14 files changed, 1906 insertions(+)
create mode 100644 CMakeLists.txt
create mode 100644 examples/CMakeLists.txt
create mode 100644 src/paimon/CMakeLists.txt
create mode 100644 src/paimon/common/file_index/CMakeLists.txt
create mode 100644 src/paimon/common/global_index/CMakeLists.txt
create mode 100644 src/paimon/format/avro/CMakeLists.txt
create mode 100644 src/paimon/format/blob/CMakeLists.txt
create mode 100644 src/paimon/format/orc/CMakeLists.txt
create mode 100644 src/paimon/format/parquet/CMakeLists.txt
create mode 100644 src/paimon/fs/local/CMakeLists.txt
create mode 100644 src/paimon/global_index/lucene/CMakeLists.txt
create mode 100644 src/paimon/testing/mock/CMakeLists.txt
create mode 100644 src/paimon/testing/utils/CMakeLists.txt
create mode 100644 test/inte/CMakeLists.txt