1
0

cm_zstd.h 357 B

1234567891011121314
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cm_zstd_h
  4. #define cm_zstd_h
  5. /* Use the libzstd configured for CMake. */
  6. #include "cmThirdParty.h"
  7. #ifdef CMAKE_USE_SYSTEM_ZSTD
  8. # include <zstd.h>
  9. #else
  10. # include <cmzstd/lib/zstd.h>
  11. #endif
  12. #endif