2019-12-27 17:39:30 +04:00

18 lines
338 B
Python

load("//Config:buck_rule_macros.bzl", "static_library")
static_library(
name = "Svg",
srcs = glob([
"Sources/**/*.m",
"Sources/**/*.mm",
"Sources/**/*.c",
"Sources/**/*.cpp",
]),
headers = glob([
"Sources/**/*.h",
]),
exported_headers = [
"Sources/Svg.h",
],
)