2020-02-19 04:58:49 +04:00

18 lines
402 B
Python

load("//Config:buck_rule_macros.bzl", "static_library")
static_library(
name = "AppBundle",
srcs = glob([
"Source/AppBundle/*.m",
]),
exported_headers = glob([
"Source/AppBundle/*.h",
]),
deps = [
],
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
"$SDKROOT/System/Library/Frameworks/UIKit.framework",
],
)