mirror of
https://github.com/zhigang1992/SwiftParsec.git
synced 2026-01-12 22:52:43 +08:00
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.
17 lines
283 B
Swift
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"),
|
|
]
|
|
)
|