Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaeyun,Oh committed Sep 24, 2019
1 parent d2ca07a commit 2c81c1d
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
// swift-tools-version:4.2
import PackageDescription

let package = Package(
let iOS_package = Package(
name: "Material",
// platforms: [.iOS("8.0")],
platforms: [.iOS("8.0")],
products: [
.library(name: "Material", targets: ["Material"])
],
dependencies: [
.package(url: "https://github.com/CosmicMind/Motion.git", .upToNextMajor(from: "3.1.0")),
],
targets: [
.target(
name: "Material",
dependencies: ["Motion"],
path: "Sources"
)
]
)

let mac_package = Package(
name: "Material",
platform: [.mac("10.10)"],
products: [
.library(name: "Material", targets: ["Material"])
],
Expand Down

0 comments on commit 2c81c1d

Please sign in to comment.