2019-08-25 00:48:15 +04:00

24 lines
520 B
Python

load("//Config:buck_rule_macros.bzl", "static_library", "framework")
apple_resource(
name = 'EmojiFiles',
dirs = [
"TestFolder.bundle",
],
visibility = [
"PUBLIC",
],
)
framework(
name = "Emoji",
srcs = glob([
"Sources/*.swift",
]),
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
"$SDKROOT/System/Library/Frameworks/CoreText.framework",
"$SDKROOT/System/Library/Frameworks/AVFoundation.framework",
],
)