forked from vitrine/wmaker
24 lines
432 B
Python
24 lines
432 B
Python
cc_library(
|
|
name = "wrlib",
|
|
srcs = [
|
|
"alpha_combine.c",
|
|
"context.c",
|
|
"convert.c",
|
|
"gradient.c",
|
|
"load.c",
|
|
"misc.c",
|
|
"raster.c",
|
|
],
|
|
hdrs = [
|
|
"convert.h",
|
|
"imgformat.h",
|
|
"rotate.h",
|
|
"scale.h",
|
|
"wr_i18n.h",
|
|
"wraster.h",
|
|
"xutil.h",
|
|
],
|
|
deps = ["//config"],
|
|
visibility = ["//visibility:public"],
|
|
)
|