Adding generation of dyanmically linked lib.

This commit is contained in:
Hanzhou Shi 2017-05-09 22:06:36 -07:00
parent 8cc91c3d4f
commit 67f683d0ac
1 changed files with 10 additions and 0 deletions

View File

@ -7,3 +7,13 @@ import PackageDescription
let package = Package(
name: "Antlr4"
)
products.append(
Product(
name: "Antlr4",
type: .Library(.Dynamic),
modules: [
"Antlr4"
]
)
)