mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-04-23 03:16:21 +02:00
4647310322
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
35 lines
937 B
Python
35 lines
937 B
Python
load("@sourcekit_bazel_bsp//rules:setup_sourcekit_bsp.bzl", "setup_sourcekit_bsp")
|
|
|
|
setup_sourcekit_bsp(
|
|
name = "setup_sourcekit_bsp",
|
|
bazel_wrapper = "./build-input/bazel-8.4.2-darwin-arm64",
|
|
files_to_watch = [
|
|
"Telegram/**/*.swift",
|
|
"Telegram/**/*.h",
|
|
"Telegram/**/*.m",
|
|
"Telegram/**/*.mm",
|
|
"Telegram/**/*.c",
|
|
"Telegram/**/*.cpp",
|
|
"submodules/**/*.swift",
|
|
"submodules/**/*.h",
|
|
"submodules/**/*.m",
|
|
"submodules/**/*.mm",
|
|
"submodules/**/*.c",
|
|
"submodules/**/*.cpp",
|
|
],
|
|
aquery_flags = [
|
|
"define=telegramVersion=12.5",
|
|
"define=buildNumber=100000",
|
|
],
|
|
index_flags = [
|
|
"config=index_build",
|
|
"define=telegramVersion=12.5",
|
|
"define=buildNumber=100000",
|
|
],
|
|
index_build_batch_size = 10,
|
|
targets = [
|
|
"//Telegram:Telegram",
|
|
],
|
|
merge_lsp_config = False,
|
|
)
|