forked from PerfectlySoft/Perfect-INIParser
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These are needed to get around a bug in the Swift Package Manager when compiling with iOS. If a Package is compiled with a version of the language less than 5.0 it gets the minimum deployment values wrong.
- Loading branch information
1 parent
0952aac
commit 42de0ef
Showing
3 changed files
with
83 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// swift-tools-version:4.0 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
// | ||
// Package.swift | ||
// Perfect-INIParser | ||
// | ||
// Created by Rockford Wei on 2017-04-25. | ||
// Copyright © 2017 PerfectlySoft. All rights reserved. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the Perfect.org open source project | ||
// | ||
// Copyright (c) 2017 - 2018 PerfectlySoft Inc. and the Perfect project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See http://perfect.org/licensing.html for license information | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
|
||
import PackageDescription | ||
d | ||
let package = Package( | ||
name: "INIParser", | ||
products: [ | ||
.library( | ||
name: "INIParser", | ||
targets: ["INIParser"]), | ||
], | ||
dependencies: [ | ||
], | ||
targets: [ | ||
.target( | ||
name: "INIParser", | ||
dependencies: []), | ||
.testTarget( | ||
name: "INIParserTests", | ||
dependencies: ["INIParser"]), | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// swift-tools-version:4.2 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
// | ||
// Package.swift | ||
// Perfect-INIParser | ||
// | ||
// Created by Rockford Wei on 2017-04-25. | ||
// Copyright © 2017 PerfectlySoft. All rights reserved. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This source file is part of the Perfect.org open source project | ||
// | ||
// Copyright (c) 2017 - 2018 PerfectlySoft Inc. and the Perfect project authors | ||
// Licensed under Apache License v2.0 | ||
// | ||
// See http://perfect.org/licensing.html for license information | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "INIParser", | ||
products: [ | ||
.library( | ||
name: "INIParser", | ||
targets: ["INIParser"]), | ||
], | ||
dependencies: [ | ||
], | ||
targets: [ | ||
.target( | ||
name: "INIParser", | ||
dependencies: []), | ||
.testTarget( | ||
name: "INIParserTests", | ||
dependencies: ["INIParser"]), | ||
] | ||
) |