Skip to content
Snippets Groups Projects
Unverified Commit 343c1afc authored by Amy Stamile's avatar Amy Stamile Committed by GitHub
Browse files

fixes build issues (#486)

parent 2f1ba954
No related branches found
No related tags found
No related merge requests found
...@@ -95,12 +95,6 @@ else() ...@@ -95,12 +95,6 @@ else()
message(SEND_ERROR "sqlite3 dependency not found!") message(SEND_ERROR "sqlite3 dependency not found!")
endif() endif()
# Would build and run with older versions, but with horrible performance
# See https://github.com/OSGeo/PROJ/issues/1718
if("${SQLITE3_VERSION}" VERSION_LESS "3.11")
message(SEND_ERROR "sqlite3 >= 3.11 required!")
endif()
include(ProjUtilities) include(ProjUtilities)
include(Ccache) include(Ccache)
################################################################################ ################################################################################
......
...@@ -122,7 +122,7 @@ USGSCSM uses a standard cmake build system. To compile the library and ...@@ -122,7 +122,7 @@ USGSCSM uses a standard cmake build system. To compile the library and
tests use the following commands: tests use the following commands:
1. `mkdir build && cd build` 1. `mkdir build && cd build`
2. `cmake .. && cmake --build .` 2. `cmake -DUSGSCSM_EXTERNAL_DEPS=OFF -DUSGSCSM_BUILD_DOCS=OFF .. && cmake --build .`
If you are using external dependencies via Conda or system level installations If you are using external dependencies via Conda or system level installations
add the `-DUSGSCSM_EXTERNAL_DEPS=ON` flag to the cmake command. add the `-DUSGSCSM_EXTERNAL_DEPS=ON` flag to the cmake command.
......
...@@ -10,3 +10,4 @@ dependencies: ...@@ -10,3 +10,4 @@ dependencies:
- eigen - eigen
- nlohmann_json - nlohmann_json
- proj - proj
- sqlite>=3.11
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment