You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
441 B
15 lines
441 B
8 years ago
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||
4 years ago
|
#ifndef cm3p_archive_h
|
||
|
#define cm3p_archive_h
|
||
14 years ago
|
|
||
|
/* Use the libarchive configured for CMake. */
|
||
|
#include "cmThirdParty.h"
|
||
|
#ifdef CMAKE_USE_SYSTEM_LIBARCHIVE
|
||
4 years ago
|
# include <archive.h> // IWYU pragma: export
|
||
14 years ago
|
#else
|
||
4 years ago
|
# include <cmlibarchive/libarchive/archive.h> // IWYU pragma: export
|
||
14 years ago
|
#endif
|
||
|
|
||
|
#endif
|