diff options
author | Julian Andres Klode <jak@debian.org> | 2018-04-15 18:57:53 +0000 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2018-04-15 18:57:53 +0000 |
commit | 1cbb4c95f3fdd0872a7f1cb0f970f50a68c13959 (patch) | |
tree | a4d862020a09309efa6801d791216649368bd263 /CMakeLists.txt | |
parent | e441cba86f9aa50c9e785d9aa45ae0a43ac5c123 (diff) | |
parent | 7cf73b7a1e4f127098cae5b8593cd1d0c675e4a4 (diff) |
Merge branch 'pu/zstd' into 'master'
pu/zstd
See merge request apt-team/apt!8
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b723b0ead..a79ce99d4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -103,6 +103,12 @@ if (LZ4_FOUND) set(HAVE_LZ4 1) endif() +find_package(Zstd REQUIRED) +if (ZSTD_FOUND) + set(HAVE_ZSTD 1) +endif() + + find_package(Udev) if (UDEV_FOUND) set(HAVE_UDEV 1) |