Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ var package = Package(
products: [
.library(name: "AwsCommonRuntimeKit", targets: ["AwsCommonRuntimeKit"]),
.executable(name: "Elasticurl", targets: ["Elasticurl"]),
.executable(name: "Mqtt5Canary", targets: ["Mqtt5Canary"]),
],
dependencies: [
// Arugment Parser Dependency for ElasticCurl
Expand Down Expand Up @@ -371,5 +372,13 @@ packageTargets.append(contentsOf: [
],
path: "Source/Elasticurl"
),
.executableTarget(
name: "Mqtt5Canary",
dependencies: [
"AwsCommonRuntimeKit",
.product(name: "ArgumentParser", package: "swift-argument-parser"),
],
path: "Source/Canary/Mqtt5Canary"
),
])
package.targets = packageTargets
Loading