I've downloaded example project from this http://perfect.org/docs/gettingStarted.html and commands, swift build
and next swift package generate-xcodeproj
working great.
Than I want to add another package to Package.swift
file, for example Perfect-Mustache
and Postgres-StORM
import PackageDescription
let package = Package(
name: "PerfectTemplate",
targets: [],
dependencies: [
.Package(url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git", majorVersion: 2),
.Package(url: "https://github.com/SwiftORM/Postgres-StORM.git", majorVersion: 2),
.Package(url: "https://github.com/PerfectlySoft/Perfect-Mustache.git", majorVersion: 2),
]
)
but than swift build
from console take forever and I must kill the process after couple of hours.
Anyone have idea why is that?