archive_entry.h 412 B

1234567891011
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #pragma once
  4. /* Use the libarchive configured for CMake. */
  5. #include "cmThirdParty.h"
  6. #ifdef CMAKE_USE_SYSTEM_LIBARCHIVE
  7. # include <archive_entry.h> // IWYU pragma: export
  8. #else
  9. # include <cmlibarchive/libarchive/archive_entry.h> // IWYU pragma: export
  10. #endif