Skip to content

Commit

Permalink
Merge pull request #16 from IBM-Swift/issue.swift41
Browse files Browse the repository at this point in the history
Issue.swift41
  • Loading branch information
ianpartridge committed Feb 21, 2018
2 parents 2e1e733 + 63438de commit 2a431e3
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 57 deletions.
51 changes: 32 additions & 19 deletions Package.swift
@@ -1,25 +1,38 @@
// swift-tools-version:4.0
// The swift-tools-version declares the minimum version of Swift required to build this package.

/**
* Copyright IBM Corporation 2016
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
* Copyright IBM Corporation 2016
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/

import PackageDescription

let package = Package(
name: "CCurl",
providers: [
.Brew("curl"),
.Apt("libcurl4-openssl-dev")
]
name: "CCurl",
providers: [
.brew(["curl"]),
.apt(["libcurl4-openssl-dev"])
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
.library(
name: "CCurl",
targets: ["CCurl"]
)
],
targets: [
.target(name: "CCurl")
]
)
38 changes: 0 additions & 38 deletions Package@swift-4.0.swift

This file was deleted.

0 comments on commit 2a431e3

Please sign in to comment.