Skip to content

Commit

Permalink
got working on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
colemancda committed Jun 3, 2017
1 parent 751537b commit 68b9918
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Xcode/Cairo.xcodeproj/project.xcworkspace/xcuserdata/
Xcode/Cairo.xcodeproj/xcuserdata
libcairo/autom4te.cache
.build
Packages
13 changes: 13 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import PackageDescription

let package = Package(
name: "Cairo",
dependencies: [
.Package(url: "https://github.com/PureSwift/CCairo.git", majorVersion: 1)
],
targets: [
Target(
name: "Cairo")
],
exclude: ["Xcode", "Sources/CairoUnitTests"]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 4 additions & 1 deletion Xcode/Cairo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
/* Begin PBXFileReference section */
6E0B0E311C6440F2007BB59B /* Path.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Path.swift; sourceTree = "<group>"; };
6E0F41961CDE8FEC0001E5B3 /* Font.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Font.swift; sourceTree = "<group>"; };
6E0FAB3E1CF04589001B2EB0 /* Package.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Package.swift; path = ../Package.swift; sourceTree = "<group>"; };
6E339B581CDF3B35008E399E /* CairoTests-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CairoTests-Bridging-Header.h"; sourceTree = "<group>"; };
6E339B591CDF3B35008E399E /* CairoTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CairoTest.h; sourceTree = "<group>"; };
6E339B5A1CDF3B35008E399E /* CairoTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CairoTest.m; sourceTree = "<group>"; };
Expand Down Expand Up @@ -82,6 +83,7 @@
6ECC91A71C5EB901003DE6BA = {
isa = PBXGroup;
children = (
6E0FAB3E1CF04589001B2EB0 /* Package.swift */,
6ECC91D11C5EBC57003DE6BA /* Dependencies */,
6ECC91CC1C5EBB63003DE6BA /* Sources */,
6ECC91B31C5EB901003DE6BA /* Cairo */,
Expand Down Expand Up @@ -152,7 +154,8 @@
6E339B591CDF3B35008E399E /* CairoTest.h */,
6E339B5A1CDF3B35008E399E /* CairoTest.m */,
);
path = UnitTests;
name = UnitTests;
path = CairoUnitTests;
sourceTree = "<group>";
};
6ECC91D11C5EBC57003DE6BA /* Dependencies */ = {
Expand Down

0 comments on commit 68b9918

Please sign in to comment.