2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2014-12-11 18:10:03 +00:00
|
|
|
#ifndef cm_lzma_h
|
|
|
|
#define cm_lzma_h
|
2014-07-13 20:23:22 +00:00
|
|
|
|
|
|
|
/* Use the liblzma configured for CMake. */
|
|
|
|
#include "cmThirdParty.h"
|
|
|
|
#ifdef CMAKE_USE_SYSTEM_LIBLZMA
|
2018-06-01 13:53:41 +00:00
|
|
|
# include <lzma.h>
|
2014-07-13 20:23:22 +00:00
|
|
|
#else
|
2018-06-01 13:53:41 +00:00
|
|
|
# include <cmliblzma/liblzma/api/lzma.h>
|
2014-07-13 20:23:22 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|