https://github.com/Kitware/CMake
Revision 3cb7048b521395fdc863dacacb85c6f7f28a1bc7 authored by Brad King on 24 April 2017, 14:55:25 UTC, committed by Brad King on 24 April 2017, 14:55:25 UTC
2 parent s 80362f7 + 627288f
Raw File
Tip revision: 3cb7048b521395fdc863dacacb85c6f7f28a1bc7 authored by Brad King on 24 April 2017, 14:55:25 UTC
Merge branch 'release'
Tip revision: 3cb7048
cm_lzma.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#ifndef cm_lzma_h
#define cm_lzma_h

/* Use the liblzma configured for CMake.  */
#include "cmThirdParty.h"
#ifdef CMAKE_USE_SYSTEM_LIBLZMA
#include <lzma.h>
#else
#include <cmliblzma/liblzma/api/lzma.h>
#endif

#endif
back to top