Files
SwiftParsec/Package.swift
David Dufresne f76feefb72 Fix package configuration for Swift 3
Make the package description valid by adding the 'targets' parameter.

Fix error 'the the name of a test module has no ‘Tests’ suffix' by
adding the required suffix.
2016-10-08 19:06:35 -04:00

17 lines
283 B
Swift

//
// Package.swift
// SwiftParsec
//
// Created by David Dufresne on 2016-05-10.
// Copyright © 2016 David Dufresne. All rights reserved.
//
import PackageDescription
let package = Package(
name: "SwiftParsec",
targets: [
Target(name: "SwiftParsec"),
]
)