xref: /llvm-project/llvm/utils/gn/build/libs/zlib/enable.gni (revision f8e833a50183ce2048e3cf5929afa672caea0df5)
1declare_args() {
2  if (host_os == "win") {
3    # On Windows, path to a directory containing zlib headers and zlib.lib.
4    zlib_path = ""
5  }
6}
7
8declare_args() {
9  # Whether to include code that links against zlib.
10  llvm_enable_zlib = host_os != "win" || zlib_path != ""
11}
12