2016-09-27 22:01:08 +03: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 21:10:03 +03:00
|
|
|
#ifndef cm_lzma_h
|
|
|
|
#define cm_lzma_h
|
2014-07-14 00:23:22 +04:00
|
|
|
|
|
|
|
/* Use the liblzma configured for CMake. */
|
|
|
|
#include "cmThirdParty.h"
|
|
|
|
#ifdef CMAKE_USE_SYSTEM_LIBLZMA
|
2016-05-16 17:34:04 +03:00
|
|
|
#include <lzma.h>
|
2014-07-14 00:23:22 +04:00
|
|
|
#else
|
2016-05-16 17:34:04 +03:00
|
|
|
#include <cmliblzma/liblzma/api/lzma.h>
|
2014-07-14 00:23:22 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|