From 70109e06f751074b38848bfd356dbe82b666c497 Mon Sep 17 00:00:00 2001 From: David Capello Date: Mon, 12 Jun 2017 13:20:32 -0300 Subject: [PATCH] Disable libarchive tests and coverage --- third_party/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/third_party/CMakeLists.txt b/third_party/CMakeLists.txt index da3e56302..1bf2e8371 100644 --- a/third_party/CMakeLists.txt +++ b/third_party/CMakeLists.txt @@ -113,6 +113,8 @@ set(TAOCPP_JSON_BUILD_TESTS OFF CACHE BOOL "Build test programs") add_subdirectory(json) # libarchive +set(ENABLE_TEST OFF CACHE BOOL "Enable unit and regression tests") +set(ENABLE_COVERAGE OFF CACHE BOOL "Enable code coverage (GCC only, automatically sets ENABLE_TEST to ON)") add_subdirectory(libarchive) target_include_directories(archive_static INTERFACE $)