Files
OpenVulkano/3rdParty/libarchive/CMakeLists.txt
2020-12-06 15:01:11 +01:00

13 lines
325 B
CMake

include(FetchContent)
FetchContent_Declare(
libarchive
GIT_REPOSITORY https://github.com/libarchive/libarchive.git
GIT_TAG v3.5.1
GIT_SHALLOW TRUE
)
set(ENABLE_TEST OFF)
set(ENABLE_TAR OFF)
set(ENABLE_CPIO OFF)
set(ENABLE_CAT OFF)
set(ENABLE_OPENSSL OFF)
FetchContent_MakeAvailable(libarchive)