new package

This commit is contained in:
overtake 2022-01-14 15:35:57 +04:00
parent d3a399ed6a
commit 231581b573

View File

@ -0,0 +1,32 @@
// 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_11)
],
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"
])
]),
]
)