https://github.com/Kitware/CMake
Revision 033d4f37a7a31c640294924f732d0f735bdcacbc authored by Kitware Robot on 01 May 2017, 04:01:03 UTC, committed by Kitware Robot on 01 May 2017, 04:01:03 UTC
1 parent 7382523
Raw File
Tip revision: 033d4f37a7a31c640294924f732d0f735bdcacbc authored by Kitware Robot on 01 May 2017, 04:01:03 UTC
CMake Nightly Date Stamp
Tip revision: 033d4f3
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