Skip to content

Commit

Permalink
Added support for Swift 6
Browse files Browse the repository at this point in the history
  • Loading branch information
jkrukowski committed Oct 30, 2024
1 parent b435eb6 commit ae11087
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions [email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// swift-tools-version: 6.0
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "Jinja",
platforms: [.iOS(.v16), .macOS(.v13)],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "Jinja",
targets: ["Jinja"]
)
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(
name: "Jinja",
path: "Sources"
),
.testTarget(
name: "JinjaTests",
dependencies: ["Jinja"],
path: "Tests"
)
]
)

0 comments on commit ae11087

Please sign in to comment.