Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SBNOpenDiskTree(): make it work with node descriptors with non-increasing nBinStart #114

Merged
merged 6 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,14 @@ jobs:
run: make check

- name: Distribution check
run: make distcheck
run: |
make distcheck
tar xvzf shapelib-*.tar.gz
rm -f shapelib-*.tar.gz shapelib-*.zip
cd shapelib-*
cmake .
cmake --build . -j$(nproc)
ctest --test-dir . --verbose

build-cmake:
name: ${{ matrix.toolchain }}
Expand Down
9 changes: 9 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ endif

# Extra files to distribute in the source tarball
EXTRA_DIST = makefile.vc CMakeLists.txt autogen.sh \
shapelib.def \
cmake/CMakeLists.txt \
cmake/contrib.cmake \
cmake/project-config-version.cmake.in \
cmake/project-config.cmake.in \
tests/CMakeLists.txt \
tests/dbf_test.cc \
tests/sbn_test.cc \
tests/test1.sh tests/test2.sh tests/test3.sh \
tests/expect1.out tests/expect2.out tests/expect3.out \
tests/shape_eg_data/3dpoints.dbf \
Expand Down Expand Up @@ -85,6 +87,13 @@ EXTRA_DIST = makefile.vc CMakeLists.txt autogen.sh \
tests/shape_eg_data/mexico/states.sbx \
tests/shape_eg_data/mexico/states.shp \
tests/shape_eg_data/mexico/states.shx \
tests/shape_eg_data/CoHI_GCS12.dbf \
tests/shape_eg_data/CoHI_GCS12.prj \
tests/shape_eg_data/CoHI_GCS12_README.txt \
tests/shape_eg_data/CoHI_GCS12.sbn \
tests/shape_eg_data/CoHI_GCS12.sbx \
tests/shape_eg_data/CoHI_GCS12.shp \
tests/shape_eg_data/CoHI_GCS12.shx \
web/maptools.css \
web/codepage.html \
web/index.html \
Expand Down