mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
33 lines
877 B
Swift
33 lines
877 B
Swift
// swift-tools-version:5.5
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
|
|
let package = Package(
|
|
name: "OpenSSLEncryption",
|
|
platforms: [
|
|
.macOS(.v10_12)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "OpenSSLEncryption",
|
|
targets: ["OpenSSLEncryption"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "OpenSSLEncryption",
|
|
dependencies: [],
|
|
path: ".",
|
|
exclude: ["BUILD"],
|
|
publicHeadersPath: "PublicHeaders",
|
|
cSettings: [
|
|
.headerSearchPath("PublicHeaders"),
|
|
.unsafeFlags([
|
|
"-I../../../../core-xprojects/openssl/build/openssl/include",
|
|
"-I../EncryptionProvider/PublicHeaders"
|
|
])
|
|
]),
|
|
]
|
|
)
|