You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
357 B
15 lines
357 B
8 years ago
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||
5 years ago
|
#ifndef cm_zstd_h
|
||
|
#define cm_zstd_h
|
||
16 years ago
|
|
||
5 years ago
|
/* Use the libzstd configured for CMake. */
|
||
16 years ago
|
#include "cmThirdParty.h"
|
||
5 years ago
|
#ifdef CMAKE_USE_SYSTEM_ZSTD
|
||
|
# include <zstd.h>
|
||
|
#else
|
||
|
# include <cmzstd/lib/zstd.h>
|
||
16 years ago
|
#endif
|
||
|
|
||
|
#endif
|