Merge pull request #22656 from mastertheknife/allow_unbundled_xz_lzma

Skip compiling xz if we're using system xz (unbundled)
This commit is contained in:
alexey-milovidov 2021-04-06 14:41:18 +03:00 committed by GitHub
commit bee6cddb95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,10 @@ add_subdirectory (lz4-cmake)
add_subdirectory (murmurhash)
add_subdirectory (replxx-cmake)
add_subdirectory (unixodbc-cmake)
add_subdirectory (xz)
if (USE_INTERNAL_XZ_LIBRARY)
add_subdirectory (xz)
endif()
add_subdirectory (poco-cmake)
add_subdirectory (croaring-cmake)