splash/Package.swift
John Sundell 9798c4fd6b
Bump Swift version to 5.2 (#106)
* Bump Swift version to 5.2
* README: Update “Contributions and support” section
2020-05-25 00:50:44 +02:00

40 lines
825 B
Swift

// swift-tools-version:5.2
/**
* Splash
* Copyright (c) John Sundell 2018
* MIT license - see LICENSE.md
*/
import PackageDescription
let package = Package(
name: "Splash",
products: [
.library(name: "Splash", targets: ["Splash"])
],
targets: [
.target(name: "Splash"),
.target(
name: "SplashMarkdown",
dependencies: ["Splash"]
),
.target(
name: "SplashHTMLGen",
dependencies: ["Splash"]
),
.target(
name: "SplashImageGen",
dependencies: ["Splash"]
),
.target(
name: "SplashTokenizer",
dependencies: ["Splash"]
),
.testTarget(
name: "SplashTests",
dependencies: ["Splash"]
)
]
)