2019-08-26 04:28:26 +04:00

21 lines
583 B
Python

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