Skip to content

Commit

Permalink
Remove obsolete option to use bundled zstd.
Browse files Browse the repository at this point in the history
  • Loading branch information
Oxymoron79 authored and edenhill committed Mar 25, 2019
1 parent 83e7eeb commit 8695b9d
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,11 @@ endif()
# }

# ZSTD {
if (WITH_BUNDLED_ZSTD)
find_library (ZSTD zstd)
if(ZSTD)
set(with_zstd_default ON)
else ()
find_library (ZSTD zstd)
if(ZSTD)
set(with_zstd_default ON)
else()
set(with_zstd_default OFF)
endif()
else()
set(with_zstd_default OFF)
endif()
option(WITH_ZSTD "With ZSTD" ${with_zstd_default})
if(WITH_ZSTD)
Expand Down

0 comments on commit 8695b9d

Please sign in to comment.