BuildUtils.cmake 356 B

123456789101112131415
  1. # -*- cmake -*-
  2. if (BUILDUTILS_CMAKE_INCLUDED)
  3. return()
  4. endif (BUILDUTILS_CMAKE_INCLUDED)
  5. set (BUILDUTILS_CMAKE_INCLUDED TRUE)
  6. if (LINUX)
  7. return()
  8. endif (LINUX)
  9. include(Prebuilt)
  10. # We need zstd to uncompress LL's pre-built libraries without requiring the
  11. # installation of the pyzstd Python module on the build system... HB
  12. use_prebuilt_binary(zstd)