diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2024-08-09 16:15:27 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2024-08-09 16:15:27 -0600 |
commit | 4de10786413569f916d140c95bc6b211b139dc12 (patch) | |
tree | d19a3a39b35e49469fd9e6380eef4ea57b900422 | |
parent | 8c4e329fa6fbe4079578fd62b3a75bd7b1f4f402 (diff) |
add docc plugin
-rw-r--r-- | Package.resolved | 24 | ||||
-rw-r--r-- | Package.swift | 3 |
2 files changed, 27 insertions, 0 deletions
diff --git a/Package.resolved b/Package.resolved new file mode 100644 index 0000000..b170c92 --- /dev/null +++ b/Package.resolved @@ -0,0 +1,24 @@ +{ + "originHash" : "f93e8dc15fedbfa5aedfb587fdb8723329fa4f1870deb5565ece95a6d201e8ea", + "pins" : [ + { + "identity" : "swift-docc-plugin", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-docc-plugin", + "state" : { + "revision" : "26ac5758409154cc448d7ab82389c520fa8a8247", + "version" : "1.3.0" + } + }, + { + "identity" : "swift-docc-symbolkit", + "kind" : "remoteSourceControl", + "location" : "https://github.com/apple/swift-docc-symbolkit", + "state" : { + "revision" : "b45d1f2ed151d057b54504d653e0da5552844e34", + "version" : "1.0.0" + } + } + ], + "version" : 3 +} diff --git a/Package.swift b/Package.swift index 6126286..68303d4 100644 --- a/Package.swift +++ b/Package.swift @@ -16,6 +16,9 @@ let package = Package( .library(name: "CLVGL", targets: ["CLVGL"]), .library(name: "SwiftLVGL", targets: ["SwiftLVGL"]), ], + dependencies: [ + .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0") + ], targets: [ .target( name: "CLVGL", |