mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-15 21:45:19 +00:00
21 lines
424 B
Python
21 lines
424 B
Python
load("//Config:buck_rule_macros.bzl", "static_library")
|
|
|
|
static_library(
|
|
name = "PKCS",
|
|
srcs = glob([
|
|
"Sources/**/*.m",
|
|
]),
|
|
headers = glob([
|
|
"Sources/**/*.h",
|
|
]),
|
|
exported_headers = glob([
|
|
"PublicHeaders/**/*.h",
|
|
]),
|
|
deps = [
|
|
"//submodules/openssl:openssl",
|
|
],
|
|
frameworks = [
|
|
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
|
|
],
|
|
)
|