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