avoid failures with "most" presets

This commit is contained in:
Axel Kohlmeyer
2022-02-10 20:11:00 -05:00
parent 4ea4bee30c
commit c32dca2009
2 changed files with 5 additions and 5 deletions

View File

@ -1,10 +1,11 @@
find_package(ZLIB REQUIRED)
target_link_libraries(lammps PRIVATE ZLIB::ZLIB)
find_package(PkgConfig REQUIRED)
find_package(PkgConfig QUIET)
if(PkgConfig_FOUND)
pkg_check_modules(Zstd IMPORTED_TARGET libzstd>=1.4)
if(Zstd_FOUND)
target_compile_definitions(lammps PRIVATE -DLAMMPS_ZSTD)
target_link_libraries(lammps PRIVATE PkgConfig::Zstd)
endif()
endif()

View File

@ -183,7 +183,6 @@ PACKMOST = \
orient \
peri \
plugin \
poems \
qeq \
reaction \
reaxff \