diff --git a/SwiftGit2.xcodeproj/project.pbxproj b/SwiftGit2.xcodeproj/project.pbxproj index fc6905c..75816e6 100644 --- a/SwiftGit2.xcodeproj/project.pbxproj +++ b/SwiftGit2.xcodeproj/project.pbxproj @@ -10,6 +10,7 @@ BEB31F291A0D6F7A00F525B9 /* SwiftGit2.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB31F281A0D6F7A00F525B9 /* SwiftGit2.h */; settings = {ATTRIBUTES = (Public, ); }; }; BEB31F2F1A0D6F7A00F525B9 /* SwiftGit2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BEB31F231A0D6F7A00F525B9 /* SwiftGit2.framework */; }; BEB31F361A0D6F7A00F525B9 /* SwiftGit2Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEB31F351A0D6F7A00F525B9 /* SwiftGit2Tests.swift */; }; + BEB31F6D1A0D78F300F525B9 /* Repository.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEB31F6C1A0D78F300F525B9 /* Repository.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -47,6 +48,7 @@ BEB31F561A0D75EE00F525B9 /* Mac-Framework.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "Mac-Framework.xcconfig"; sourceTree = ""; }; BEB31F571A0D75EE00F525B9 /* Mac-StaticLibrary.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "Mac-StaticLibrary.xcconfig"; sourceTree = ""; }; BEB31F581A0D75EE00F525B9 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + BEB31F6C1A0D78F300F525B9 /* Repository.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Repository.swift; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -91,6 +93,7 @@ isa = PBXGroup; children = ( BEB31F281A0D6F7A00F525B9 /* SwiftGit2.h */, + BEB31F6C1A0D78F300F525B9 /* Repository.swift */, BEB31F261A0D6F7A00F525B9 /* Supporting Files */, ); path = SwiftGit2; @@ -294,6 +297,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + BEB31F6D1A0D78F300F525B9 /* Repository.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -403,6 +407,7 @@ isa = XCBuildConfiguration; baseConfigurationReference = BEB31F561A0D75EE00F525B9 /* Mac-Framework.xcconfig */; buildSettings = { + CLANG_ENABLE_MODULES = YES; COMBINE_HIDPI_IMAGES = YES; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; @@ -414,6 +419,7 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; PRODUCT_NAME = SwiftGit2; SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; }; name = Debug; }; @@ -421,6 +427,7 @@ isa = XCBuildConfiguration; baseConfigurationReference = BEB31F561A0D75EE00F525B9 /* Mac-Framework.xcconfig */; buildSettings = { + CLANG_ENABLE_MODULES = YES; COMBINE_HIDPI_IMAGES = YES; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; diff --git a/SwiftGit2/Repository.swift b/SwiftGit2/Repository.swift new file mode 100644 index 0000000..55da799 --- /dev/null +++ b/SwiftGit2/Repository.swift @@ -0,0 +1,14 @@ +// +// Repository.swift +// SwiftGit2 +// +// Created by Matt Diephouse on 11/7/14. +// Copyright (c) 2014 GitHub, Inc. All rights reserved. +// + +import Foundation + +/// A git repository. +class Repository { + +}