Skip to content

Commit f3234db

Browse files
author
Jasper Blues
authored
Merge pull request #90 from lvsti/spm-support
Swift package manager support
2 parents 849de69 + 913fa44 commit f3234db

34 files changed

+143
-108
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ xcuserdata
44
*.blend2
55
*.blend3
66
.DS_Store
7-
build
7+
build
8+
.build

Package.swift

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// swift-tools-version:4.0
2+
//
3+
// Package.swift
4+
// XcodeEditor
5+
//
6+
7+
import PackageDescription
8+
9+
let package = Package(
10+
name: "XcodeEditor",
11+
products: [
12+
.library(name: "XcodeEditor", targets: ["XcodeEditor"]),
13+
],
14+
targets: [
15+
.target(
16+
name: "XcodeEditor",
17+
dependencies: [],
18+
path: "Source",
19+
publicHeadersPath: "Include"
20+
),
21+
],
22+
swiftLanguageVersions: [4]
23+
)
File renamed without changes.

Source/XCBuildFile.h renamed to Source/Include/XCBuildFile.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
//
88

99
#import <Foundation/Foundation.h>
10+
#import "XcodeMemberType.h"
1011

1112
@protocol XCBuildFile <NSObject>
1213

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)