• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Description:
2#   Single-file C++ image decoding and encoding libraries
3
4package(
5    default_visibility = ["//visibility:public"],
6)
7
8licenses(["notice"])  # MIT license
9
10exports_files(["LICENSE"])
11
12cc_library(
13    name = "stb_image",
14    hdrs = ["stb_image.h"],
15    copts = [
16        "-Wno-unused-function",
17        "$(STACK_FRAME_UNLIMITED)",
18    ],
19    includes = ["."],
20)
21
22cc_library(
23    name = "stb_image_write",
24    hdrs = ["stb_image_write.h"],
25    includes = ["."],
26)
27