Unverified Commit 343c1afc authored by Amy Stamile's avatar Amy Stamile Committed by GitHub
Browse files

fixes build issues (#486)

parent 2f1ba954
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -95,12 +95,6 @@ else()
    message(SEND_ERROR "sqlite3 dependency not found!")
  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(Ccache)
  ################################################################################
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ USGSCSM uses a standard cmake build system. To compile the library and
tests use the following commands:

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
add the `-DUSGSCSM_EXTERNAL_DEPS=ON` flag to the cmake command.
+1 −0
Original line number Diff line number Diff line
@@ -10,3 +10,4 @@ dependencies:
  - eigen
  - nlohmann_json
  - proj
  - sqlite>=3.11