Skip to content

Commit

Permalink
Merge pull request #4120 from vicentebolea/fix-sqlite3-static-dep
Browse files Browse the repository at this point in the history
cmake: add sqlite3 and zlib dep in adios2 cmake pkg
  • Loading branch information
pnorbert committed Mar 30, 2024
2 parents a65abe2 + 6e05bc4 commit dc6c981
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cmake/adios2-config-common.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,12 @@ if(NOT @BUILD_SHARED_LIBS@)
find_dependency(AWSSDK)
endif()

set(ADIOS2_HAVE_Campaign @ADIOS2_HAVE_Campaign@)
if(ADIOS2_HAVE_Campaign)
find_dependency(ZLIB)
find_dependency(SQLite3)
endif()


adios2_add_thirdparty_target(pugixml)
set(ADIOS2_USE_EXTERNAL_PUGIXML @ADIOS2_USE_EXTERNAL_PUGIXML@)
Expand Down

0 comments on commit dc6c981

Please sign in to comment.