Skip to content

Commit

Permalink
Add executables definition to Package.swift (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
fjcaetano authored Jun 14, 2021
1 parent 1005644 commit 4df8c3e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ import PackageDescription
let package = Package(
name: "Splash",
products: [
.library(name: "Splash", targets: ["Splash"])
.library(name: "Splash", targets: ["Splash"]),
.executable(name: "SplashMarkdown", targets: ["SplashMarkdown"]),
.executable(name: "SplashHTMLGen", targets: ["SplashHTMLGen"]),
.executable(name: "SplashImageGen", targets: ["SplashImageGen"]),
.executable(name: "SplashTokenizer", targets: ["SplashTokenizer"]),
],
targets: [
.target(name: "Splash"),
Expand Down

0 comments on commit 4df8c3e

Please sign in to comment.