2019-10-07 17:03:41 +04:00

22 lines
461 B
Python

load("//Config:buck_rule_macros.bzl", "static_library")
static_library(
name = "StringPluralization",
srcs = glob([
"Sources/**/*.swift",
"Sources/**/*.m",
]),
headers = glob([
"Sources/*.h",
]),
exported_headers = glob([
"Sources/*.h",
]),
deps = [
"//submodules/AppBundle:AppBundle",
],
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
],
)