Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
marcprux committed Dec 31, 2023
1 parent c5fdef7 commit 2dd5e3d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## 0.0.2

Released 2023-12-31


8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ let package = Package(
.package(url: "https://source.skip.tools/skip-ffi.git", from: "0.2.3"),
],
targets: [
.target(name: "CLibTidy", sources: ["src"], cSettings: [
.define("LIBTIDY_VERSION", to: "\"\(tidyVersion()[0])\"", nil),
.define("RELEASE_DATE", to: "\"\(tidyVersion()[1])\"", nil)
], plugins: skipstone),
.target(name: "SkipTidy", dependencies: [
"CLibTidy",
.product(name: "SkipFoundation", package: "skip-foundation"),
Expand All @@ -45,5 +41,9 @@ let package = Package(
"SkipTidy",
.product(name: "SkipTest", package: "skip")
], resources: [.process("Resources")], plugins: skipstone),
.target(name: "CLibTidy", sources: ["src"], cSettings: [
.define("LIBTIDY_VERSION", to: "\"\(tidyVersion()[0])\"", nil),
.define("RELEASE_DATE", to: "\"\(tidyVersion()[1])\"", nil)
], plugins: skipstone),
]
)

0 comments on commit 2dd5e3d

Please sign in to comment.