diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fc3a048 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +.build +.index-build +DerivedData +/.previous-build +xcuserdata +.DS_Store +*~ +\#* +.\#* +.*.sw[nop] +*.xcscmblueprint +/default.profraw +*.xcodeproj +Utilities/Docker/*.tar.gz +.swiftpm +Package.resolved +/build +*.pyc +.docc-build +.vscode +Utilities/InstalledSwiftPMConfiguration/config.json +.devcontainer +xcschememanagement.plist +*.xcscheme diff --git a/.swiftpm/xcode/xcshareddata/xcschemes/Wallpaper_Player_Documentation.xcscheme b/.swiftpm/xcode/xcshareddata/xcschemes/Wallpaper_Player_Documentation.xcscheme deleted file mode 100644 index 1daf9b3..0000000 --- a/.swiftpm/xcode/xcshareddata/xcschemes/Wallpaper_Player_Documentation.xcscheme +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.swiftpm/xcode/xcuserdata/haren724.xcuserdatad/xcschemes/xcschememanagement.plist b/.swiftpm/xcode/xcuserdata/haren724.xcuserdatad/xcschemes/xcschememanagement.plist index 536402e..cead5c4 100644 --- a/.swiftpm/xcode/xcuserdata/haren724.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/.swiftpm/xcode/xcuserdata/haren724.xcuserdatad/xcschemes/xcschememanagement.plist @@ -4,11 +4,6 @@ SchemeUserState - Wallpaper_Player_Documentation.xcscheme_^#shared#^_ - - orderHint - 1 - Wallpaper_Player_User_Documentation.xcscheme_^#shared#^_ orderHint diff --git a/Package.swift b/Package.swift index 3a0c7a4..0343483 100644 --- a/Package.swift +++ b/Package.swift @@ -5,6 +5,12 @@ import PackageDescription let package = Package( name: "Wallpaper_Player_User_Documentation", - products: [.library(name: "Wallpaper_Player_User_Documentation", targets: ["UserDocumentation"])], - targets: [.target(name: "UserDocumentation")] + products: [ + .library( + name: "Wallpaper_Player_User_Documentation", + targets: ["UserDocumentation"])], + dependencies: [ + .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")], + targets: [ + .target(name: "UserDocumentation")] )