mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-15 21:45:19 +00:00
35 lines
691 B
Python
35 lines
691 B
Python
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
|
|
|
objc_library(
|
|
name = "LottieCpp",
|
|
enable_modules = True,
|
|
module_name = "LottieCpp",
|
|
srcs = glob([
|
|
"Sources/**/*.m",
|
|
"Sources/**/*.mm",
|
|
"Sources/**/*.h",
|
|
"Sources/**/*.c",
|
|
"Sources/**/*.cpp",
|
|
"Sources/**/*.hpp",
|
|
]),
|
|
copts = [
|
|
"-Werror",
|
|
"-I{}/Sources".format(package_name()),
|
|
"-O2",
|
|
],
|
|
hdrs = glob([
|
|
"PublicHeaders/**/*.h",
|
|
]),
|
|
includes = [
|
|
"PublicHeaders",
|
|
],
|
|
deps = [
|
|
],
|
|
sdk_frameworks = [
|
|
"Foundation",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|