mirror of
https://github.com/LeoNatan/LNPopupController.git
synced 2026-07-30 16:11:51 +00:00
40 lines
858 B
Swift
40 lines
858 B
Swift
// swift-tools-version:5.9
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "LNPopupController",
|
|
platforms: [
|
|
.iOS(.v13),
|
|
.macCatalyst(.v13)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "LNPopupController",
|
|
type: .dynamic,
|
|
targets: ["LNPopupController", "LNPopupController-ObjC"]),
|
|
.library(
|
|
name: "LNPopupController-Static",
|
|
type: .static,
|
|
targets: ["LNPopupController", "LNPopupController-ObjC"]),
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.target(
|
|
name: "LNPopupController-ObjC",
|
|
dependencies: [],
|
|
path: "LNPopupController",
|
|
exclude: ["Info.plist"],
|
|
publicHeadersPath: "include",
|
|
cSettings: [
|
|
.headerSearchPath("."),
|
|
.headerSearchPath("Private")
|
|
]),
|
|
.target(
|
|
name: "LNPopupController",
|
|
dependencies: ["LNPopupController-ObjC"],
|
|
path: "LNPCSwiftRefinements")
|
|
],
|
|
cxxLanguageStandard: .gnucxx20
|
|
)
|