xref: /openbsd-src/gnu/llvm/llvm/utils/gn/build/libs/zlib/enable.gni (revision 097a140d792de8b2bbe59ad827d39eabf9b4280a)
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