Skip to content

Commit

Permalink
Bump platform version to v12 (and swift tools to 5.5) (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
kirilltitov authored Oct 26, 2021
1 parent e3caccf commit 3de2535
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// swift-tools-version:5.2
// swift-tools-version:5.5

import PackageDescription

let package = Package(
name: "Entita2",
platforms: [.macOS(.v10_15)],
platforms: [.macOS(.v12)],
products: [
.library(name: "Entita2", targets: ["Entita2"]),
],
Expand Down
11 changes: 8 additions & 3 deletions Tests/LinuxMain.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import XCTest
import Entita2Tests

var tests = [XCTestCaseEntry]()
tests += Entita2Tests.__allTests()
XCTMain(tests)
@main
public struct Main {
public static func main() {
var tests = [XCTestCaseEntry]()
tests += Entita2Tests.__allTests()
XCTMain(tests)
}
}

0 comments on commit 3de2535

Please sign in to comment.