https://github.com/Kitware/CMake
Revision 529d7291b40e8b4c09e3952d6992cafcee979f8c authored by Brad King on 31 March 2020, 13:25:00 UTC, committed by Kitware Robot on 31 March 2020, 13:25:09 UTC
398a2bddf3 Help: Add release note for GoogleTest module DISCOVERY_MODE feature
2361f4efe1 Help: Update GoogleTest XML_OUTPUT_DIR release note markup

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4550
2 parent s 0f66cb6 + 398a2bd
Raw File
Tip revision: 529d7291b40e8b4c09e3952d6992cafcee979f8c authored by Brad King on 31 March 2020, 13:25:00 UTC
Merge topic 'GoogleTest-DISCOVERY_MODE-note'
Tip revision: 529d729
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