mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-17 00:31:09 +00:00
28 lines
540 B
Python
28 lines
540 B
Python
|
|
objc_library(
|
|
name = "boost_regex",
|
|
enable_modules = True,
|
|
module_name = "boost_regex",
|
|
srcs = glob([
|
|
"Sources/**/*.c",
|
|
"Sources/**/*.cpp",
|
|
"Sources/**/*.h",
|
|
"Sources/**/*.hpp",
|
|
], allow_empty=True),
|
|
hdrs = glob([
|
|
"include/**/*.h",
|
|
"include/**/*.hpp",
|
|
], allow_empty=True),
|
|
includes = [
|
|
"include",
|
|
],
|
|
copts = [
|
|
"-Ithird-party/boost_regex/include",
|
|
],
|
|
deps = [
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|