Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
de4me committed Jan 28, 2024
0 parents commit 64e80d0
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.DS_Store
/.build
/Packages
xcuserdata/
DerivedData/
.swiftpm/configuration/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
22 changes: 22 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// swift-tools-version: 5.4
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "yaml-cpp",
platforms: [
.macOS(.v10_13),
.iOS(.v12)
],
products: [
.library(
name: "yaml-cpp",
targets: ["yaml-cpp"]),
],
targets: [
.binaryTarget(name: "yaml-cpp",
url: "https://github.com/de4me/yaml-cpp-package/releases/download/0.8.0/yaml-cpp.zip",
checksum: "a8abdebe7a23ef22f62b22a95d1d77d93d033d7e900ebdfe480cb67e5eb955a4")
]
)
8 changes: 8 additions & 0 deletions Package.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package: yaml-cpp
platformname: macosx macosx iphoneos iphonesimulator
date: macosx(28.01.2024, 12.52.38) macosx(28.01.2024, 12.52.59) iphoneos(28.01.2024, 12.52.46) iphonesimulator(28.01.2024, 12.52.51)
minimumversion: macosx(10.13) macosx(10.15) iphoneos(12.0) iphonesimulator(12.0)
platformversion: macosx(14.2) macosx(14.2) iphoneos(17.2) iphonesimulator(17.2)
sdkversion: macosx(1520) macosx(1520) iphoneos(1520) iphonesimulator(1520)
bundleversion: macosx(0.8.0) macosx(0.8.0) iphoneos(0.8.0) iphonesimulator(0.8.0)
checksum: a8abdebe7a23ef22f62b22a95d1d77d93d033d7e900ebdfe480cb67e5eb955a4

0 comments on commit 64e80d0

Please sign in to comment.