mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-04-24 03:46:23 +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.
42 lines
949 B
Python
Vendored
42 lines
949 B
Python
Vendored
|
|
public_headers = glob([
|
|
"PublicHeaders/**/*.h",
|
|
])
|
|
|
|
objc_library(
|
|
name = "sqlcipher",
|
|
enable_modules = True,
|
|
module_name = "sqlcipher",
|
|
srcs = glob([
|
|
"Sources/*.c",
|
|
"Sources/*.h",
|
|
], exclude = public_headers, allow_empty=True),
|
|
hdrs = public_headers,
|
|
includes = [
|
|
"PublicHeaders",
|
|
],
|
|
copts = [
|
|
"-DSQLITE_HAS_CODEC=1",
|
|
"-DSQLCIPHER_CRYPTO_CC=1",
|
|
"-DSQLITE_TEMP_STORE=2",
|
|
"-DSQLITE_ENABLE_FTS5",
|
|
"-DHAVE_USLEEP=1",
|
|
"-DSQLITE_DEFAULT_MEMSTATUS=0",
|
|
"-DSQLITE_OMIT_LOAD_EXTENSION",
|
|
"-DSQLITE_OMIT_DECLTYPE",
|
|
"-DSQLITE_OMIT_PROGRESS_CALLBACK",
|
|
"-DSQLITE_OMIT_DEPRECATED",
|
|
"-DNDEBUG=1",
|
|
"-DSQLITE_MAX_MMAP_SIZE=0",
|
|
"-Wno-all",
|
|
"-Wno-#warnings",
|
|
],
|
|
sdk_frameworks = [
|
|
"Foundation",
|
|
"Security",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|