https://github.com/Kitware/CMake
Revision 09b4dfb92aab0b13d3df70ff974d4208386d55f0 authored by Brad King on 16 July 2019, 12:36:40 UTC, committed by Brad King on 16 July 2019, 12:36:40 UTC
2 parent s 79a21ba + 9654191
Raw File
Tip revision: 09b4dfb92aab0b13d3df70ff974d4208386d55f0 authored by Brad King on 16 July 2019, 12:36:40 UTC
Merge branch 'release-3.14'
Tip revision: 09b4dfb
cm_libarchive.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#ifndef cm_libarchive_h
#define cm_libarchive_h

/* Use the libarchive configured for CMake.  */
#include "cmThirdParty.h"
#ifdef CMAKE_USE_SYSTEM_LIBARCHIVE
#  include <archive.h>
#  include <archive_entry.h>
#else
#  include <cmlibarchive/libarchive/archive.h>
#  include <cmlibarchive/libarchive/archive_entry.h>
#endif

#endif
back to top