Build Postbox, SyncCore, TelegramCore

This commit is contained in:
Ali 2020-02-20 04:15:02 +04:00
parent a7ff727533
commit a75bd17b6c
83 changed files with 474 additions and 397 deletions

View file

@ -9,7 +9,7 @@ static_library(
"Sources/*.h",
]),
exported_headers = glob([
"Sources/*.h",
"PublicHeaders/**/*.h",
]),
deps = [
],

21
submodules/Crc32/BUILD Normal file
View file

@ -0,0 +1,21 @@
objc_library(
name = "Crc32",
enable_modules = True,
module_name = "Crc32",
srcs = glob([
"Sources/*.m",
]),
hdrs = glob([
"PublicHeaders/**/*.h",
]),
includes = [
"PublicHeaders",
],
sdk_frameworks = [
"Foundation",
],
visibility = [
"//visibility:public",
],
)

View file

@ -1,4 +1,4 @@
#import "Crc32.h"
#import <Crc32/Crc32.h>
#import <zlib.h>