1
1
// swift-tools-version:4.0
2
2
3
+ // Package.swift
4
+ // MotionMachine
5
+ //
6
+ // Created by Brett Walker on 3/19/18.
7
+ // Copyright © 2018 Poet & Mountain, LLC. All rights reserved.
8
+ //
9
+ // Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ // of this software and associated documentation files (the "Software"), to deal
11
+ // in the Software without restriction, including without limitation the rights
12
+ // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ // copies of the Software, and to permit persons to whom the Software is
14
+ // furnished to do so, subject to the following conditions:
15
+ //
16
+ // The above copyright notice and this permission notice shall be included in
17
+ // all copies or substantial portions of the Software.
18
+ //
19
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
+ // THE SOFTWARE.
26
+ //
27
+
3
28
import PackageDescription
4
29
5
30
let package = Package (
@@ -8,6 +33,7 @@ let package = Package(
8
33
. library( name: " MotionMachine " , targets: [ " MotionMachine " ] ) ,
9
34
] ,
10
35
targets: [
11
- . target( name: " MotionMachine " , dependencies: [ ] , path: " Sources " , exclude: " Tests " ) ,
12
- ]
36
+ . target( name: " MotionMachine " , dependencies: [ ] ) ,
37
+ ] ,
38
+ swiftLanguageVersions: [ 4 ]
13
39
)
0 commit comments