mirror of
https://github.com/gosticks/SwiftGit2.git
synced 2025-10-16 11:55:34 +00:00
This introduces a new static function on Repository that will allow a
user to clone a local or remote repository.
At the moment only SSH in-memory, username + password and default (no
creds) are implemented.
It provides an enum wrapper around the underlying libgit2 `git_cred_t`
type to abstract it away from the user into something that is a little
more Swift-like. As much of the C callback code and struct creation has
been moved into Swift-land as well, this is now possible as of 2.*
whereas before it was not.
I had to use a wrapper class in Credentials.swift in order to convert
blocks to pointers, as blocks do not implement the AnyObject protocol
that `Unmanaged` requies.
The test requires you passing through a set of environment variables
otherwise it will not run. This is so that secret/private information
isn't leaked into the repository. The required variables are as follows:
- SG2TestPrivateRepo - the url of the private jrepo to clone;
- SG2TestUsername - the url of the user that will be connecting;
- SG2TestPublicKey - the public key data to be used;
- SG2TestPrivateKey - the private key data;
- SG2TestPassphrase - passphrase needed to use the private key (blank
if none).
1718 lines
98 KiB
Plaintext
1718 lines
98 KiB
Plaintext
// !$*UTF8*$!
|
|
{
|
|
archiveVersion = 1;
|
|
classes = {
|
|
};
|
|
objectVersion = 46;
|
|
objects = {
|
|
|
|
/* Begin PBXBuildFile section */
|
|
621E66651C72958800A0F352 /* blob.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DED9F1AA6A7E200AFE62D /* blob.h */; };
|
|
621E66661C72958800A0F352 /* branch.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA01AA6A7E200AFE62D /* branch.h */; };
|
|
621E66671C72958800A0F352 /* buffer.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA11AA6A7E200AFE62D /* buffer.h */; };
|
|
621E66681C72958800A0F352 /* checkout.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA21AA6A7E200AFE62D /* checkout.h */; };
|
|
621E66691C72958800A0F352 /* cherrypick.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA31AA6A7E200AFE62D /* cherrypick.h */; };
|
|
621E666A1C72958800A0F352 /* clone.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA41AA6A7E200AFE62D /* clone.h */; };
|
|
621E666B1C72958800A0F352 /* commit.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA51AA6A7E200AFE62D /* commit.h */; };
|
|
621E666C1C72958800A0F352 /* common.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA61AA6A7E200AFE62D /* common.h */; };
|
|
621E666D1C72958800A0F352 /* config.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA71AA6A7E200AFE62D /* config.h */; };
|
|
621E666E1C72958800A0F352 /* cred_helpers.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA81AA6A7E200AFE62D /* cred_helpers.h */; };
|
|
621E666F1C72958800A0F352 /* describe.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA91AA6A7E200AFE62D /* describe.h */; };
|
|
621E66701C72958800A0F352 /* diff.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDAA1AA6A7E200AFE62D /* diff.h */; };
|
|
621E66711C72958800A0F352 /* errors.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDAB1AA6A7E200AFE62D /* errors.h */; };
|
|
621E66721C72958800A0F352 /* filter.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDAC1AA6A7E200AFE62D /* filter.h */; };
|
|
621E66731C72958800A0F352 /* global.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDAD1AA6A7E200AFE62D /* global.h */; };
|
|
621E66741C72958800A0F352 /* graph.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDAE1AA6A7E200AFE62D /* graph.h */; };
|
|
621E66751C72958800A0F352 /* ignore.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDAF1AA6A7E200AFE62D /* ignore.h */; };
|
|
621E66761C72958800A0F352 /* index.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB01AA6A7E200AFE62D /* index.h */; };
|
|
621E66771C72958800A0F352 /* indexer.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB11AA6A7E200AFE62D /* indexer.h */; };
|
|
621E66781C72958800A0F352 /* merge.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB31AA6A7E200AFE62D /* merge.h */; };
|
|
621E66791C72958800A0F352 /* message.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB41AA6A7E200AFE62D /* message.h */; };
|
|
621E667A1C72958800A0F352 /* net.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB51AA6A7E200AFE62D /* net.h */; };
|
|
621E667B1C72958800A0F352 /* notes.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB61AA6A7E200AFE62D /* notes.h */; };
|
|
621E667C1C72958800A0F352 /* object.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB71AA6A7E200AFE62D /* object.h */; };
|
|
621E667D1C72958800A0F352 /* odb_backend.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB81AA6A7E200AFE62D /* odb_backend.h */; };
|
|
621E667E1C72958800A0F352 /* odb.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB91AA6A7E200AFE62D /* odb.h */; };
|
|
621E667F1C72958800A0F352 /* oid.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDBA1AA6A7E200AFE62D /* oid.h */; };
|
|
621E66801C72958800A0F352 /* oidarray.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDBB1AA6A7E200AFE62D /* oidarray.h */; };
|
|
621E66811C72958800A0F352 /* pack.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDBC1AA6A7E200AFE62D /* pack.h */; };
|
|
621E66821C72958800A0F352 /* patch.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDBD1AA6A7E200AFE62D /* patch.h */; };
|
|
621E66831C72958800A0F352 /* pathspec.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDBE1AA6A7E200AFE62D /* pathspec.h */; };
|
|
621E66851C72958800A0F352 /* rebase.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC01AA6A7E200AFE62D /* rebase.h */; };
|
|
621E66861C72958800A0F352 /* refdb.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC11AA6A7E200AFE62D /* refdb.h */; };
|
|
621E66871C72958800A0F352 /* reflog.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC21AA6A7E200AFE62D /* reflog.h */; };
|
|
621E66881C72958800A0F352 /* refs.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC31AA6A7E200AFE62D /* refs.h */; };
|
|
621E66891C72958800A0F352 /* refspec.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC41AA6A7E200AFE62D /* refspec.h */; };
|
|
621E668A1C72958800A0F352 /* remote.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC51AA6A7E200AFE62D /* remote.h */; };
|
|
621E668B1C72958800A0F352 /* repository.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC61AA6A7E200AFE62D /* repository.h */; };
|
|
621E668C1C72958800A0F352 /* reset.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC71AA6A7E200AFE62D /* reset.h */; };
|
|
621E668D1C72958800A0F352 /* revert.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC81AA6A7E200AFE62D /* revert.h */; };
|
|
621E668E1C72958800A0F352 /* revparse.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC91AA6A7E200AFE62D /* revparse.h */; };
|
|
621E668F1C72958800A0F352 /* revwalk.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDCA1AA6A7E200AFE62D /* revwalk.h */; };
|
|
621E66901C72958800A0F352 /* signature.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDCB1AA6A7E200AFE62D /* signature.h */; };
|
|
621E66911C72958800A0F352 /* stash.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDCC1AA6A7E200AFE62D /* stash.h */; };
|
|
621E66921C72958800A0F352 /* status.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDCD1AA6A7E200AFE62D /* status.h */; };
|
|
621E66931C72958800A0F352 /* strarray.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDCF1AA6A7E200AFE62D /* strarray.h */; };
|
|
621E66941C72958800A0F352 /* submodule.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD01AA6A7E200AFE62D /* submodule.h */; };
|
|
621E66951C72958800A0F352 /* tag.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD11AA6A7E200AFE62D /* tag.h */; };
|
|
621E66961C72958800A0F352 /* trace.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD21AA6A7E200AFE62D /* trace.h */; };
|
|
621E66971C72958800A0F352 /* transaction.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD31AA6A7E200AFE62D /* transaction.h */; };
|
|
621E66981C72958800A0F352 /* transport.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD41AA6A7E200AFE62D /* transport.h */; };
|
|
621E66991C72958800A0F352 /* tree.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD51AA6A7E200AFE62D /* tree.h */; };
|
|
621E669A1C72958800A0F352 /* types.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD61AA6A7E200AFE62D /* types.h */; };
|
|
621E669B1C72958800A0F352 /* version.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD71AA6A7E200AFE62D /* version.h */; };
|
|
621E669C1C72958800A0F352 /* annotated_commit.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DED9C1AA6A7E200AFE62D /* annotated_commit.h */; };
|
|
621E669D1C72958800A0F352 /* attr.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DED9D1AA6A7E200AFE62D /* attr.h */; };
|
|
621E669E1C72958800A0F352 /* blame.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DED9E1AA6A7E200AFE62D /* blame.h */; };
|
|
621E66A01C72958800A0F352 /* OID.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE70B3E41A1ACB1A002C3F4E /* OID.swift */; };
|
|
621E66A11C72958800A0F352 /* Remotes.swift in Sources */ = {isa = PBXBuildFile; fileRef = BECB5F6D1A57284700999413 /* Remotes.swift */; };
|
|
621E66A21C72958800A0F352 /* CheckoutStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE276B281ACCD3CF00D6DAD7 /* CheckoutStrategy.swift */; };
|
|
621E66A31C72958800A0F352 /* Repository.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEB31F6C1A0D78F300F525B9 /* Repository.swift */; };
|
|
621E66A41C72958800A0F352 /* Objects.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE2E3BE51A31261300C67092 /* Objects.swift */; };
|
|
621E66A51C72958800A0F352 /* References.swift in Sources */ = {isa = PBXBuildFile; fileRef = BECB5F691A56F19900999413 /* References.swift */; };
|
|
621E66A61C72958800A0F352 /* Libgit2.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE36354B1A632C9700D37EC8 /* Libgit2.swift */; };
|
|
621E66A71C72958800A0F352 /* Pointers.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE7A753E1A4A2BCC002DA7E3 /* Pointers.swift */; };
|
|
621E66A81C72958800A0F352 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA5914751A94579000AED74C /* Errors.swift */; };
|
|
621E66A91C72958800A0F352 /* SwiftGit2.m in Sources */ = {isa = PBXBuildFile; fileRef = BE14AA4F1A1974010015B439 /* SwiftGit2.m */; };
|
|
621E66AF1C72958800A0F352 /* git2.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB31F9B1A0E581400F525B9 /* git2.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
621E66B01C72958800A0F352 /* SwiftGit2.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB31F281A0D6F7A00F525B9 /* SwiftGit2.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
621E66BA1C72958D00A0F352 /* RepositorySpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEB31F351A0D6F7A00F525B9 /* RepositorySpec.swift */; };
|
|
621E66BB1C72958D00A0F352 /* ObjectsSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE2E3BE71A31262800C67092 /* ObjectsSpec.swift */; };
|
|
621E66BC1C72958D00A0F352 /* RemotesSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = BECB5F6F1A57286200999413 /* RemotesSpec.swift */; };
|
|
621E66BD1C72958D00A0F352 /* FixturesSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE14AA581A1996B70015B439 /* FixturesSpec.swift */; };
|
|
621E66BE1C72958D00A0F352 /* Fixtures.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE14AA541A1984550015B439 /* Fixtures.swift */; };
|
|
621E66BF1C72958D00A0F352 /* ReferencesSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = BECB5F6B1A56F1B400999413 /* ReferencesSpec.swift */; };
|
|
621E66C01C72958D00A0F352 /* OIDSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE70B3E61A1ACB37002C3F4E /* OIDSpec.swift */; };
|
|
621E66C21C72958D00A0F352 /* ZipArchive.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 62E6FD8E1C727E9C00A312B0 /* ZipArchive.framework */; };
|
|
621E66C31C72958D00A0F352 /* Guanaco.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA59146C1A94549A00AED74C /* Guanaco.framework */; };
|
|
621E66C41C72958D00A0F352 /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA50239F1A969F1A004175D7 /* Nimble.framework */; };
|
|
621E66C51C72958D00A0F352 /* Quick.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DAC8143C1A99749D0063D88C /* Quick.framework */; };
|
|
621E66C81C72958D00A0F352 /* detached-head.zip in Resources */ = {isa = PBXBuildFile; fileRef = BE0B1C5C1A9978890004726D /* detached-head.zip */; };
|
|
621E66C91C72958D00A0F352 /* Mantle.zip in Resources */ = {isa = PBXBuildFile; fileRef = BE0991F61A578FB1007D4E6A /* Mantle.zip */; };
|
|
621E66CA1C72958D00A0F352 /* simple-repository.zip in Resources */ = {isa = PBXBuildFile; fileRef = BE14AA561A198C6E0015B439 /* simple-repository.zip */; };
|
|
621E66D91C72989A00A0F352 /* Result.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 621E66D81C72989900A0F352 /* Result.framework */; };
|
|
621E66E61C729D9600A0F352 /* SwiftGit2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 621E66B41C72958800A0F352 /* SwiftGit2.framework */; };
|
|
621E66FE1C72A5FF00A0F352 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 621E66FD1C72A5FF00A0F352 /* libiconv.tbd */; };
|
|
621E67001C72A60B00A0F352 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 621E66FF1C72A60B00A0F352 /* libz.tbd */; };
|
|
622726341C84E52500C53D17 /* Credentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = 622726331C84E52500C53D17 /* Credentials.swift */; };
|
|
622726351C84E52500C53D17 /* Credentials.swift in Sources */ = {isa = PBXBuildFile; fileRef = 622726331C84E52500C53D17 /* Credentials.swift */; };
|
|
62E6FD8F1C727E9C00A312B0 /* ZipArchive.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 62E6FD8E1C727E9C00A312B0 /* ZipArchive.framework */; };
|
|
BE0991F71A578FB1007D4E6A /* Mantle.zip in Resources */ = {isa = PBXBuildFile; fileRef = BE0991F61A578FB1007D4E6A /* Mantle.zip */; };
|
|
BE0B1C5D1A9978890004726D /* detached-head.zip in Resources */ = {isa = PBXBuildFile; fileRef = BE0B1C5C1A9978890004726D /* detached-head.zip */; };
|
|
BE14AA501A1974010015B439 /* SwiftGit2.m in Sources */ = {isa = PBXBuildFile; fileRef = BE14AA4F1A1974010015B439 /* SwiftGit2.m */; };
|
|
BE14AA551A1984550015B439 /* Fixtures.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE14AA541A1984550015B439 /* Fixtures.swift */; };
|
|
BE14AA571A198C6E0015B439 /* simple-repository.zip in Resources */ = {isa = PBXBuildFile; fileRef = BE14AA561A198C6E0015B439 /* simple-repository.zip */; };
|
|
BE14AA591A1996B70015B439 /* FixturesSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE14AA581A1996B70015B439 /* FixturesSpec.swift */; };
|
|
BE276B291ACCD3CF00D6DAD7 /* CheckoutStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE276B281ACCD3CF00D6DAD7 /* CheckoutStrategy.swift */; };
|
|
BE2E3BE61A31261300C67092 /* Objects.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE2E3BE51A31261300C67092 /* Objects.swift */; };
|
|
BE2E3BE81A31262800C67092 /* ObjectsSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE2E3BE71A31262800C67092 /* ObjectsSpec.swift */; };
|
|
BE36354C1A632C9700D37EC8 /* Libgit2.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE36354B1A632C9700D37EC8 /* Libgit2.swift */; };
|
|
BE70B3E51A1ACB1A002C3F4E /* OID.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE70B3E41A1ACB1A002C3F4E /* OID.swift */; };
|
|
BE70B3E71A1ACB37002C3F4E /* OIDSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE70B3E61A1ACB37002C3F4E /* OIDSpec.swift */; };
|
|
BE7A753F1A4A2BCC002DA7E3 /* Pointers.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE7A753E1A4A2BCC002DA7E3 /* Pointers.swift */; };
|
|
BE8DEE4E1AA6A89D00AFE62D /* annotated_commit.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DED9C1AA6A7E200AFE62D /* annotated_commit.h */; };
|
|
BE8DEE4F1AA6A89F00AFE62D /* attr.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DED9D1AA6A7E200AFE62D /* attr.h */; };
|
|
BE8DEE501AA6A8A100AFE62D /* blame.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DED9E1AA6A7E200AFE62D /* blame.h */; };
|
|
BE8DEE511AA6A8AD00AFE62D /* blob.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DED9F1AA6A7E200AFE62D /* blob.h */; };
|
|
BE8DEE521AA6A8AD00AFE62D /* branch.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA01AA6A7E200AFE62D /* branch.h */; };
|
|
BE8DEE531AA6A8AD00AFE62D /* buffer.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA11AA6A7E200AFE62D /* buffer.h */; };
|
|
BE8DEE541AA6A8AD00AFE62D /* checkout.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA21AA6A7E200AFE62D /* checkout.h */; };
|
|
BE8DEE551AA6A8AD00AFE62D /* cherrypick.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA31AA6A7E200AFE62D /* cherrypick.h */; };
|
|
BE8DEE561AA6A8AD00AFE62D /* clone.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA41AA6A7E200AFE62D /* clone.h */; };
|
|
BE8DEE571AA6A8AD00AFE62D /* commit.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA51AA6A7E200AFE62D /* commit.h */; };
|
|
BE8DEE581AA6A8AD00AFE62D /* common.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA61AA6A7E200AFE62D /* common.h */; };
|
|
BE8DEE591AA6A8AD00AFE62D /* config.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA71AA6A7E200AFE62D /* config.h */; };
|
|
BE8DEE5A1AA6A8AD00AFE62D /* cred_helpers.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA81AA6A7E200AFE62D /* cred_helpers.h */; };
|
|
BE8DEE5B1AA6A8AD00AFE62D /* describe.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDA91AA6A7E200AFE62D /* describe.h */; };
|
|
BE8DEE5C1AA6A8AD00AFE62D /* diff.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDAA1AA6A7E200AFE62D /* diff.h */; };
|
|
BE8DEE5D1AA6A8AD00AFE62D /* errors.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDAB1AA6A7E200AFE62D /* errors.h */; };
|
|
BE8DEE5E1AA6A8AD00AFE62D /* filter.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDAC1AA6A7E200AFE62D /* filter.h */; };
|
|
BE8DEE5F1AA6A8AD00AFE62D /* global.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDAD1AA6A7E200AFE62D /* global.h */; };
|
|
BE8DEE601AA6A8AD00AFE62D /* graph.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDAE1AA6A7E200AFE62D /* graph.h */; };
|
|
BE8DEE611AA6A8AD00AFE62D /* ignore.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDAF1AA6A7E200AFE62D /* ignore.h */; };
|
|
BE8DEE621AA6A8AD00AFE62D /* index.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB01AA6A7E200AFE62D /* index.h */; };
|
|
BE8DEE631AA6A8AD00AFE62D /* indexer.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB11AA6A7E200AFE62D /* indexer.h */; };
|
|
BE8DEE641AA6A8AD00AFE62D /* merge.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB31AA6A7E200AFE62D /* merge.h */; };
|
|
BE8DEE651AA6A8AD00AFE62D /* message.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB41AA6A7E200AFE62D /* message.h */; };
|
|
BE8DEE661AA6A8AD00AFE62D /* net.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB51AA6A7E200AFE62D /* net.h */; };
|
|
BE8DEE671AA6A8AD00AFE62D /* notes.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB61AA6A7E200AFE62D /* notes.h */; };
|
|
BE8DEE681AA6A8AD00AFE62D /* object.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB71AA6A7E200AFE62D /* object.h */; };
|
|
BE8DEE691AA6A8AD00AFE62D /* odb_backend.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB81AA6A7E200AFE62D /* odb_backend.h */; };
|
|
BE8DEE6A1AA6A8AD00AFE62D /* odb.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDB91AA6A7E200AFE62D /* odb.h */; };
|
|
BE8DEE6B1AA6A8AD00AFE62D /* oid.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDBA1AA6A7E200AFE62D /* oid.h */; };
|
|
BE8DEE6C1AA6A8AD00AFE62D /* oidarray.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDBB1AA6A7E200AFE62D /* oidarray.h */; };
|
|
BE8DEE6D1AA6A8AD00AFE62D /* pack.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDBC1AA6A7E200AFE62D /* pack.h */; };
|
|
BE8DEE6E1AA6A8AD00AFE62D /* patch.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDBD1AA6A7E200AFE62D /* patch.h */; };
|
|
BE8DEE6F1AA6A8AD00AFE62D /* pathspec.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDBE1AA6A7E200AFE62D /* pathspec.h */; };
|
|
BE8DEE711AA6A8AD00AFE62D /* rebase.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC01AA6A7E200AFE62D /* rebase.h */; };
|
|
BE8DEE721AA6A8AD00AFE62D /* refdb.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC11AA6A7E200AFE62D /* refdb.h */; };
|
|
BE8DEE731AA6A8AD00AFE62D /* reflog.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC21AA6A7E200AFE62D /* reflog.h */; };
|
|
BE8DEE741AA6A8AD00AFE62D /* refs.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC31AA6A7E200AFE62D /* refs.h */; };
|
|
BE8DEE751AA6A8AD00AFE62D /* refspec.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC41AA6A7E200AFE62D /* refspec.h */; };
|
|
BE8DEE761AA6A8AD00AFE62D /* remote.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC51AA6A7E200AFE62D /* remote.h */; };
|
|
BE8DEE771AA6A8AD00AFE62D /* repository.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC61AA6A7E200AFE62D /* repository.h */; };
|
|
BE8DEE781AA6A8AD00AFE62D /* reset.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC71AA6A7E200AFE62D /* reset.h */; };
|
|
BE8DEE791AA6A8AD00AFE62D /* revert.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC81AA6A7E200AFE62D /* revert.h */; };
|
|
BE8DEE7A1AA6A8AD00AFE62D /* revparse.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDC91AA6A7E200AFE62D /* revparse.h */; };
|
|
BE8DEE7B1AA6A8AD00AFE62D /* revwalk.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDCA1AA6A7E200AFE62D /* revwalk.h */; };
|
|
BE8DEE7C1AA6A8AD00AFE62D /* signature.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDCB1AA6A7E200AFE62D /* signature.h */; };
|
|
BE8DEE7D1AA6A8AD00AFE62D /* stash.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDCC1AA6A7E200AFE62D /* stash.h */; };
|
|
BE8DEE7E1AA6A8AD00AFE62D /* status.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDCD1AA6A7E200AFE62D /* status.h */; };
|
|
BE8DEE7F1AA6A8AD00AFE62D /* strarray.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDCF1AA6A7E200AFE62D /* strarray.h */; };
|
|
BE8DEE801AA6A8AD00AFE62D /* submodule.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD01AA6A7E200AFE62D /* submodule.h */; };
|
|
BE8DEE811AA6A8AD00AFE62D /* tag.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD11AA6A7E200AFE62D /* tag.h */; };
|
|
BE8DEE821AA6A8AD00AFE62D /* trace.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD21AA6A7E200AFE62D /* trace.h */; };
|
|
BE8DEE831AA6A8AD00AFE62D /* transaction.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD31AA6A7E200AFE62D /* transaction.h */; };
|
|
BE8DEE841AA6A8AD00AFE62D /* transport.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD41AA6A7E200AFE62D /* transport.h */; };
|
|
BE8DEE851AA6A8AD00AFE62D /* tree.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD51AA6A7E200AFE62D /* tree.h */; };
|
|
BE8DEE861AA6A8AD00AFE62D /* types.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD61AA6A7E200AFE62D /* types.h */; };
|
|
BE8DEE871AA6A8AD00AFE62D /* version.h in Copy libgit2 Headers */ = {isa = PBXBuildFile; fileRef = BE8DEDD71AA6A7E200AFE62D /* version.h */; };
|
|
BEB005EA1AA6AEC300320A23 /* git2.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB31F9B1A0E581400F525B9 /* git2.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
|
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 /* RepositorySpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEB31F351A0D6F7A00F525B9 /* RepositorySpec.swift */; };
|
|
BEB31F6D1A0D78F300F525B9 /* Repository.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEB31F6C1A0D78F300F525B9 /* Repository.swift */; };
|
|
BEB31F9E1A0E595100F525B9 /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = BEB31F9D1A0E595100F525B9 /* libiconv.dylib */; };
|
|
BEB31FA01A0E595600F525B9 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = BEB31F9F1A0E595600F525B9 /* libz.dylib */; };
|
|
BECB5F6A1A56F19900999413 /* References.swift in Sources */ = {isa = PBXBuildFile; fileRef = BECB5F691A56F19900999413 /* References.swift */; };
|
|
BECB5F6C1A56F1B400999413 /* ReferencesSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = BECB5F6B1A56F1B400999413 /* ReferencesSpec.swift */; };
|
|
BECB5F6E1A57284700999413 /* Remotes.swift in Sources */ = {isa = PBXBuildFile; fileRef = BECB5F6D1A57284700999413 /* Remotes.swift */; };
|
|
BECB5F701A57286200999413 /* RemotesSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = BECB5F6F1A57286200999413 /* RemotesSpec.swift */; };
|
|
BEE591C71ADF470500534F14 /* Result.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BEE591C61ADF470500534F14 /* Result.framework */; };
|
|
DA5023A01A969F1A004175D7 /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA50239F1A969F1A004175D7 /* Nimble.framework */; };
|
|
DA59146D1A94549A00AED74C /* Guanaco.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA59146C1A94549A00AED74C /* Guanaco.framework */; };
|
|
DA5914761A94579000AED74C /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA5914751A94579000AED74C /* Errors.swift */; };
|
|
DAC8143D1A99749D0063D88C /* Quick.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DAC8143C1A99749D0063D88C /* Quick.framework */; };
|
|
/* End PBXBuildFile section */
|
|
|
|
/* Begin PBXContainerItemProxy section */
|
|
621E66E41C729D8A00A0F352 /* PBXContainerItemProxy */ = {
|
|
isa = PBXContainerItemProxy;
|
|
containerPortal = BEB31F1A1A0D6F7A00F525B9 /* Project object */;
|
|
proxyType = 1;
|
|
remoteGlobalIDString = 621E66611C72958800A0F352;
|
|
remoteInfo = "SwiftGit2-iOS";
|
|
};
|
|
621E66FB1C72A25D00A0F352 /* PBXContainerItemProxy */ = {
|
|
isa = PBXContainerItemProxy;
|
|
containerPortal = BEB31F1A1A0D6F7A00F525B9 /* Project object */;
|
|
proxyType = 1;
|
|
remoteGlobalIDString = 621E66DC1C729CE500A0F352;
|
|
remoteInfo = "libgit2-iOS";
|
|
};
|
|
624349871C7CADCD0087C234 /* PBXContainerItemProxy */ = {
|
|
isa = PBXContainerItemProxy;
|
|
containerPortal = BEB31F1A1A0D6F7A00F525B9 /* Project object */;
|
|
proxyType = 1;
|
|
remoteGlobalIDString = 621E66ED1C729EBB00A0F352;
|
|
remoteInfo = "libssh2-iOS";
|
|
};
|
|
624349891C7CADD90087C234 /* PBXContainerItemProxy */ = {
|
|
isa = PBXContainerItemProxy;
|
|
containerPortal = BEB31F1A1A0D6F7A00F525B9 /* Project object */;
|
|
proxyType = 1;
|
|
remoteGlobalIDString = 621E66E71C729EB800A0F352;
|
|
remoteInfo = "OpenSSL-iOS";
|
|
};
|
|
BEB31F301A0D6F7A00F525B9 /* PBXContainerItemProxy */ = {
|
|
isa = PBXContainerItemProxy;
|
|
containerPortal = BEB31F1A1A0D6F7A00F525B9 /* Project object */;
|
|
proxyType = 1;
|
|
remoteGlobalIDString = BEB31F221A0D6F7A00F525B9;
|
|
remoteInfo = "SwiftGit2-OSX";
|
|
};
|
|
BEB31F941A0E56E200F525B9 /* PBXContainerItemProxy */ = {
|
|
isa = PBXContainerItemProxy;
|
|
containerPortal = BEB31F1A1A0D6F7A00F525B9 /* Project object */;
|
|
proxyType = 1;
|
|
remoteGlobalIDString = BEB31F8E1A0E563900F525B9;
|
|
remoteInfo = libgit2;
|
|
};
|
|
/* End PBXContainerItemProxy section */
|
|
|
|
/* Begin PBXCopyFilesBuildPhase section */
|
|
621E66641C72958800A0F352 /* Copy libgit2 Headers */ = {
|
|
isa = PBXCopyFilesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
dstPath = Headers/git2;
|
|
dstSubfolderSpec = 1;
|
|
files = (
|
|
621E66651C72958800A0F352 /* blob.h in Copy libgit2 Headers */,
|
|
621E66661C72958800A0F352 /* branch.h in Copy libgit2 Headers */,
|
|
621E66671C72958800A0F352 /* buffer.h in Copy libgit2 Headers */,
|
|
621E66681C72958800A0F352 /* checkout.h in Copy libgit2 Headers */,
|
|
621E66691C72958800A0F352 /* cherrypick.h in Copy libgit2 Headers */,
|
|
621E666A1C72958800A0F352 /* clone.h in Copy libgit2 Headers */,
|
|
621E666B1C72958800A0F352 /* commit.h in Copy libgit2 Headers */,
|
|
621E666C1C72958800A0F352 /* common.h in Copy libgit2 Headers */,
|
|
621E666D1C72958800A0F352 /* config.h in Copy libgit2 Headers */,
|
|
621E666E1C72958800A0F352 /* cred_helpers.h in Copy libgit2 Headers */,
|
|
621E666F1C72958800A0F352 /* describe.h in Copy libgit2 Headers */,
|
|
621E66701C72958800A0F352 /* diff.h in Copy libgit2 Headers */,
|
|
621E66711C72958800A0F352 /* errors.h in Copy libgit2 Headers */,
|
|
621E66721C72958800A0F352 /* filter.h in Copy libgit2 Headers */,
|
|
621E66731C72958800A0F352 /* global.h in Copy libgit2 Headers */,
|
|
621E66741C72958800A0F352 /* graph.h in Copy libgit2 Headers */,
|
|
621E66751C72958800A0F352 /* ignore.h in Copy libgit2 Headers */,
|
|
621E66761C72958800A0F352 /* index.h in Copy libgit2 Headers */,
|
|
621E66771C72958800A0F352 /* indexer.h in Copy libgit2 Headers */,
|
|
621E66781C72958800A0F352 /* merge.h in Copy libgit2 Headers */,
|
|
621E66791C72958800A0F352 /* message.h in Copy libgit2 Headers */,
|
|
621E667A1C72958800A0F352 /* net.h in Copy libgit2 Headers */,
|
|
621E667B1C72958800A0F352 /* notes.h in Copy libgit2 Headers */,
|
|
621E667C1C72958800A0F352 /* object.h in Copy libgit2 Headers */,
|
|
621E667D1C72958800A0F352 /* odb_backend.h in Copy libgit2 Headers */,
|
|
621E667E1C72958800A0F352 /* odb.h in Copy libgit2 Headers */,
|
|
621E667F1C72958800A0F352 /* oid.h in Copy libgit2 Headers */,
|
|
621E66801C72958800A0F352 /* oidarray.h in Copy libgit2 Headers */,
|
|
621E66811C72958800A0F352 /* pack.h in Copy libgit2 Headers */,
|
|
621E66821C72958800A0F352 /* patch.h in Copy libgit2 Headers */,
|
|
621E66831C72958800A0F352 /* pathspec.h in Copy libgit2 Headers */,
|
|
621E66851C72958800A0F352 /* rebase.h in Copy libgit2 Headers */,
|
|
621E66861C72958800A0F352 /* refdb.h in Copy libgit2 Headers */,
|
|
621E66871C72958800A0F352 /* reflog.h in Copy libgit2 Headers */,
|
|
621E66881C72958800A0F352 /* refs.h in Copy libgit2 Headers */,
|
|
621E66891C72958800A0F352 /* refspec.h in Copy libgit2 Headers */,
|
|
621E668A1C72958800A0F352 /* remote.h in Copy libgit2 Headers */,
|
|
621E668B1C72958800A0F352 /* repository.h in Copy libgit2 Headers */,
|
|
621E668C1C72958800A0F352 /* reset.h in Copy libgit2 Headers */,
|
|
621E668D1C72958800A0F352 /* revert.h in Copy libgit2 Headers */,
|
|
621E668E1C72958800A0F352 /* revparse.h in Copy libgit2 Headers */,
|
|
621E668F1C72958800A0F352 /* revwalk.h in Copy libgit2 Headers */,
|
|
621E66901C72958800A0F352 /* signature.h in Copy libgit2 Headers */,
|
|
621E66911C72958800A0F352 /* stash.h in Copy libgit2 Headers */,
|
|
621E66921C72958800A0F352 /* status.h in Copy libgit2 Headers */,
|
|
621E66931C72958800A0F352 /* strarray.h in Copy libgit2 Headers */,
|
|
621E66941C72958800A0F352 /* submodule.h in Copy libgit2 Headers */,
|
|
621E66951C72958800A0F352 /* tag.h in Copy libgit2 Headers */,
|
|
621E66961C72958800A0F352 /* trace.h in Copy libgit2 Headers */,
|
|
621E66971C72958800A0F352 /* transaction.h in Copy libgit2 Headers */,
|
|
621E66981C72958800A0F352 /* transport.h in Copy libgit2 Headers */,
|
|
621E66991C72958800A0F352 /* tree.h in Copy libgit2 Headers */,
|
|
621E669A1C72958800A0F352 /* types.h in Copy libgit2 Headers */,
|
|
621E669B1C72958800A0F352 /* version.h in Copy libgit2 Headers */,
|
|
621E669C1C72958800A0F352 /* annotated_commit.h in Copy libgit2 Headers */,
|
|
621E669D1C72958800A0F352 /* attr.h in Copy libgit2 Headers */,
|
|
621E669E1C72958800A0F352 /* blame.h in Copy libgit2 Headers */,
|
|
);
|
|
name = "Copy libgit2 Headers";
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
BEB31F961A0E579700F525B9 /* Copy libgit2 Headers */ = {
|
|
isa = PBXCopyFilesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
dstPath = Headers/git2;
|
|
dstSubfolderSpec = 1;
|
|
files = (
|
|
BE8DEE511AA6A8AD00AFE62D /* blob.h in Copy libgit2 Headers */,
|
|
BE8DEE521AA6A8AD00AFE62D /* branch.h in Copy libgit2 Headers */,
|
|
BE8DEE531AA6A8AD00AFE62D /* buffer.h in Copy libgit2 Headers */,
|
|
BE8DEE541AA6A8AD00AFE62D /* checkout.h in Copy libgit2 Headers */,
|
|
BE8DEE551AA6A8AD00AFE62D /* cherrypick.h in Copy libgit2 Headers */,
|
|
BE8DEE561AA6A8AD00AFE62D /* clone.h in Copy libgit2 Headers */,
|
|
BE8DEE571AA6A8AD00AFE62D /* commit.h in Copy libgit2 Headers */,
|
|
BE8DEE581AA6A8AD00AFE62D /* common.h in Copy libgit2 Headers */,
|
|
BE8DEE591AA6A8AD00AFE62D /* config.h in Copy libgit2 Headers */,
|
|
BE8DEE5A1AA6A8AD00AFE62D /* cred_helpers.h in Copy libgit2 Headers */,
|
|
BE8DEE5B1AA6A8AD00AFE62D /* describe.h in Copy libgit2 Headers */,
|
|
BE8DEE5C1AA6A8AD00AFE62D /* diff.h in Copy libgit2 Headers */,
|
|
BE8DEE5D1AA6A8AD00AFE62D /* errors.h in Copy libgit2 Headers */,
|
|
BE8DEE5E1AA6A8AD00AFE62D /* filter.h in Copy libgit2 Headers */,
|
|
BE8DEE5F1AA6A8AD00AFE62D /* global.h in Copy libgit2 Headers */,
|
|
BE8DEE601AA6A8AD00AFE62D /* graph.h in Copy libgit2 Headers */,
|
|
BE8DEE611AA6A8AD00AFE62D /* ignore.h in Copy libgit2 Headers */,
|
|
BE8DEE621AA6A8AD00AFE62D /* index.h in Copy libgit2 Headers */,
|
|
BE8DEE631AA6A8AD00AFE62D /* indexer.h in Copy libgit2 Headers */,
|
|
BE8DEE641AA6A8AD00AFE62D /* merge.h in Copy libgit2 Headers */,
|
|
BE8DEE651AA6A8AD00AFE62D /* message.h in Copy libgit2 Headers */,
|
|
BE8DEE661AA6A8AD00AFE62D /* net.h in Copy libgit2 Headers */,
|
|
BE8DEE671AA6A8AD00AFE62D /* notes.h in Copy libgit2 Headers */,
|
|
BE8DEE681AA6A8AD00AFE62D /* object.h in Copy libgit2 Headers */,
|
|
BE8DEE691AA6A8AD00AFE62D /* odb_backend.h in Copy libgit2 Headers */,
|
|
BE8DEE6A1AA6A8AD00AFE62D /* odb.h in Copy libgit2 Headers */,
|
|
BE8DEE6B1AA6A8AD00AFE62D /* oid.h in Copy libgit2 Headers */,
|
|
BE8DEE6C1AA6A8AD00AFE62D /* oidarray.h in Copy libgit2 Headers */,
|
|
BE8DEE6D1AA6A8AD00AFE62D /* pack.h in Copy libgit2 Headers */,
|
|
BE8DEE6E1AA6A8AD00AFE62D /* patch.h in Copy libgit2 Headers */,
|
|
BE8DEE6F1AA6A8AD00AFE62D /* pathspec.h in Copy libgit2 Headers */,
|
|
BE8DEE711AA6A8AD00AFE62D /* rebase.h in Copy libgit2 Headers */,
|
|
BE8DEE721AA6A8AD00AFE62D /* refdb.h in Copy libgit2 Headers */,
|
|
BE8DEE731AA6A8AD00AFE62D /* reflog.h in Copy libgit2 Headers */,
|
|
BE8DEE741AA6A8AD00AFE62D /* refs.h in Copy libgit2 Headers */,
|
|
BE8DEE751AA6A8AD00AFE62D /* refspec.h in Copy libgit2 Headers */,
|
|
BE8DEE761AA6A8AD00AFE62D /* remote.h in Copy libgit2 Headers */,
|
|
BE8DEE771AA6A8AD00AFE62D /* repository.h in Copy libgit2 Headers */,
|
|
BE8DEE781AA6A8AD00AFE62D /* reset.h in Copy libgit2 Headers */,
|
|
BE8DEE791AA6A8AD00AFE62D /* revert.h in Copy libgit2 Headers */,
|
|
BE8DEE7A1AA6A8AD00AFE62D /* revparse.h in Copy libgit2 Headers */,
|
|
BE8DEE7B1AA6A8AD00AFE62D /* revwalk.h in Copy libgit2 Headers */,
|
|
BE8DEE7C1AA6A8AD00AFE62D /* signature.h in Copy libgit2 Headers */,
|
|
BE8DEE7D1AA6A8AD00AFE62D /* stash.h in Copy libgit2 Headers */,
|
|
BE8DEE7E1AA6A8AD00AFE62D /* status.h in Copy libgit2 Headers */,
|
|
BE8DEE7F1AA6A8AD00AFE62D /* strarray.h in Copy libgit2 Headers */,
|
|
BE8DEE801AA6A8AD00AFE62D /* submodule.h in Copy libgit2 Headers */,
|
|
BE8DEE811AA6A8AD00AFE62D /* tag.h in Copy libgit2 Headers */,
|
|
BE8DEE821AA6A8AD00AFE62D /* trace.h in Copy libgit2 Headers */,
|
|
BE8DEE831AA6A8AD00AFE62D /* transaction.h in Copy libgit2 Headers */,
|
|
BE8DEE841AA6A8AD00AFE62D /* transport.h in Copy libgit2 Headers */,
|
|
BE8DEE851AA6A8AD00AFE62D /* tree.h in Copy libgit2 Headers */,
|
|
BE8DEE861AA6A8AD00AFE62D /* types.h in Copy libgit2 Headers */,
|
|
BE8DEE871AA6A8AD00AFE62D /* version.h in Copy libgit2 Headers */,
|
|
BE8DEE4E1AA6A89D00AFE62D /* annotated_commit.h in Copy libgit2 Headers */,
|
|
BE8DEE4F1AA6A89F00AFE62D /* attr.h in Copy libgit2 Headers */,
|
|
BE8DEE501AA6A8A100AFE62D /* blame.h in Copy libgit2 Headers */,
|
|
);
|
|
name = "Copy libgit2 Headers";
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXCopyFilesBuildPhase section */
|
|
|
|
/* Begin PBXFileReference section */
|
|
621E66B41C72958800A0F352 /* SwiftGit2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftGit2.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
621E66CE1C72958D00A0F352 /* SwiftGit2-iOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "SwiftGit2-iOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
621E66D81C72989900A0F352 /* Result.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Result.framework; path = "Carthage/Checkouts/Result/build/Debug-iphoneos/Result.framework"; sourceTree = "<group>"; };
|
|
621E66E11C729CE500A0F352 /* liblibgit2-iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "liblibgit2-iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
621E66EC1C729EB800A0F352 /* libOpenSSL-iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libOpenSSL-iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
621E66F21C729EBB00A0F352 /* liblibssh2-iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "liblibssh2-iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
621E66FD1C72A5FF00A0F352 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/usr/lib/libiconv.tbd; sourceTree = DEVELOPER_DIR; };
|
|
621E66FF1C72A60B00A0F352 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.2.sdk/usr/lib/libz.tbd; sourceTree = DEVELOPER_DIR; };
|
|
622726331C84E52500C53D17 /* Credentials.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Credentials.swift; sourceTree = "<group>"; };
|
|
62E6FD8E1C727E9C00A312B0 /* ZipArchive.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ZipArchive.framework; path = ../Carthage/Checkouts/ZipArchive/build/Debug/ZipArchive.framework; sourceTree = "<group>"; };
|
|
BE0991F61A578FB1007D4E6A /* Mantle.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; path = Mantle.zip; sourceTree = "<group>"; };
|
|
BE0B1C5C1A9978890004726D /* detached-head.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; path = "detached-head.zip"; sourceTree = "<group>"; };
|
|
BE14AA4F1A1974010015B439 /* SwiftGit2.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SwiftGit2.m; sourceTree = "<group>"; };
|
|
BE14AA541A1984550015B439 /* Fixtures.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Fixtures.swift; sourceTree = "<group>"; };
|
|
BE14AA561A198C6E0015B439 /* simple-repository.zip */ = {isa = PBXFileReference; lastKnownFileType = archive.zip; path = "simple-repository.zip"; sourceTree = "<group>"; };
|
|
BE14AA581A1996B70015B439 /* FixturesSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FixturesSpec.swift; sourceTree = "<group>"; };
|
|
BE244A521A117DA100F8BE42 /* SwiftGit2.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = SwiftGit2.modulemap; sourceTree = "<group>"; };
|
|
BE276B281ACCD3CF00D6DAD7 /* CheckoutStrategy.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CheckoutStrategy.swift; sourceTree = "<group>"; };
|
|
BE2E3BE51A31261300C67092 /* Objects.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Objects.swift; sourceTree = "<group>"; };
|
|
BE2E3BE71A31262800C67092 /* ObjectsSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ObjectsSpec.swift; sourceTree = "<group>"; };
|
|
BE36354B1A632C9700D37EC8 /* Libgit2.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Libgit2.swift; sourceTree = "<group>"; };
|
|
BE70B3E41A1ACB1A002C3F4E /* OID.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OID.swift; sourceTree = "<group>"; };
|
|
BE70B3E61A1ACB37002C3F4E /* OIDSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OIDSpec.swift; sourceTree = "<group>"; };
|
|
BE7A753E1A4A2BCC002DA7E3 /* Pointers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Pointers.swift; sourceTree = "<group>"; };
|
|
BE8DED9C1AA6A7E200AFE62D /* annotated_commit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = annotated_commit.h; path = git2/annotated_commit.h; sourceTree = "<group>"; };
|
|
BE8DED9D1AA6A7E200AFE62D /* attr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = attr.h; path = git2/attr.h; sourceTree = "<group>"; };
|
|
BE8DED9E1AA6A7E200AFE62D /* blame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = blame.h; path = git2/blame.h; sourceTree = "<group>"; };
|
|
BE8DED9F1AA6A7E200AFE62D /* blob.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = blob.h; path = git2/blob.h; sourceTree = "<group>"; };
|
|
BE8DEDA01AA6A7E200AFE62D /* branch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = branch.h; path = git2/branch.h; sourceTree = "<group>"; };
|
|
BE8DEDA11AA6A7E200AFE62D /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = git2/buffer.h; sourceTree = "<group>"; };
|
|
BE8DEDA21AA6A7E200AFE62D /* checkout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = checkout.h; path = git2/checkout.h; sourceTree = "<group>"; };
|
|
BE8DEDA31AA6A7E200AFE62D /* cherrypick.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cherrypick.h; path = git2/cherrypick.h; sourceTree = "<group>"; };
|
|
BE8DEDA41AA6A7E200AFE62D /* clone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = clone.h; path = git2/clone.h; sourceTree = "<group>"; };
|
|
BE8DEDA51AA6A7E200AFE62D /* commit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = commit.h; path = git2/commit.h; sourceTree = "<group>"; };
|
|
BE8DEDA61AA6A7E200AFE62D /* common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = common.h; path = git2/common.h; sourceTree = "<group>"; };
|
|
BE8DEDA71AA6A7E200AFE62D /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = config.h; path = git2/config.h; sourceTree = "<group>"; };
|
|
BE8DEDA81AA6A7E200AFE62D /* cred_helpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cred_helpers.h; path = git2/cred_helpers.h; sourceTree = "<group>"; };
|
|
BE8DEDA91AA6A7E200AFE62D /* describe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = describe.h; path = git2/describe.h; sourceTree = "<group>"; };
|
|
BE8DEDAA1AA6A7E200AFE62D /* diff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = diff.h; path = git2/diff.h; sourceTree = "<group>"; };
|
|
BE8DEDAB1AA6A7E200AFE62D /* errors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = errors.h; path = git2/errors.h; sourceTree = "<group>"; };
|
|
BE8DEDAC1AA6A7E200AFE62D /* filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = filter.h; path = git2/filter.h; sourceTree = "<group>"; };
|
|
BE8DEDAD1AA6A7E200AFE62D /* global.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = global.h; path = git2/global.h; sourceTree = "<group>"; };
|
|
BE8DEDAE1AA6A7E200AFE62D /* graph.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = graph.h; path = git2/graph.h; sourceTree = "<group>"; };
|
|
BE8DEDAF1AA6A7E200AFE62D /* ignore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ignore.h; path = git2/ignore.h; sourceTree = "<group>"; };
|
|
BE8DEDB01AA6A7E200AFE62D /* index.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = index.h; path = git2/index.h; sourceTree = "<group>"; };
|
|
BE8DEDB11AA6A7E200AFE62D /* indexer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = indexer.h; path = git2/indexer.h; sourceTree = "<group>"; };
|
|
BE8DEDB31AA6A7E200AFE62D /* merge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = merge.h; path = git2/merge.h; sourceTree = "<group>"; };
|
|
BE8DEDB41AA6A7E200AFE62D /* message.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = message.h; path = git2/message.h; sourceTree = "<group>"; };
|
|
BE8DEDB51AA6A7E200AFE62D /* net.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = net.h; path = git2/net.h; sourceTree = "<group>"; };
|
|
BE8DEDB61AA6A7E200AFE62D /* notes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = notes.h; path = git2/notes.h; sourceTree = "<group>"; };
|
|
BE8DEDB71AA6A7E200AFE62D /* object.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = object.h; path = git2/object.h; sourceTree = "<group>"; };
|
|
BE8DEDB81AA6A7E200AFE62D /* odb_backend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = odb_backend.h; path = git2/odb_backend.h; sourceTree = "<group>"; };
|
|
BE8DEDB91AA6A7E200AFE62D /* odb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = odb.h; path = git2/odb.h; sourceTree = "<group>"; };
|
|
BE8DEDBA1AA6A7E200AFE62D /* oid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oid.h; path = git2/oid.h; sourceTree = "<group>"; };
|
|
BE8DEDBB1AA6A7E200AFE62D /* oidarray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = oidarray.h; path = git2/oidarray.h; sourceTree = "<group>"; };
|
|
BE8DEDBC1AA6A7E200AFE62D /* pack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pack.h; path = git2/pack.h; sourceTree = "<group>"; };
|
|
BE8DEDBD1AA6A7E200AFE62D /* patch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = patch.h; path = git2/patch.h; sourceTree = "<group>"; };
|
|
BE8DEDBE1AA6A7E200AFE62D /* pathspec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pathspec.h; path = git2/pathspec.h; sourceTree = "<group>"; };
|
|
BE8DEDC01AA6A7E200AFE62D /* rebase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rebase.h; path = git2/rebase.h; sourceTree = "<group>"; };
|
|
BE8DEDC11AA6A7E200AFE62D /* refdb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = refdb.h; path = git2/refdb.h; sourceTree = "<group>"; };
|
|
BE8DEDC21AA6A7E200AFE62D /* reflog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = reflog.h; path = git2/reflog.h; sourceTree = "<group>"; };
|
|
BE8DEDC31AA6A7E200AFE62D /* refs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = refs.h; path = git2/refs.h; sourceTree = "<group>"; };
|
|
BE8DEDC41AA6A7E200AFE62D /* refspec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = refspec.h; path = git2/refspec.h; sourceTree = "<group>"; };
|
|
BE8DEDC51AA6A7E200AFE62D /* remote.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = remote.h; path = git2/remote.h; sourceTree = "<group>"; };
|
|
BE8DEDC61AA6A7E200AFE62D /* repository.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = repository.h; path = git2/repository.h; sourceTree = "<group>"; };
|
|
BE8DEDC71AA6A7E200AFE62D /* reset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = reset.h; path = git2/reset.h; sourceTree = "<group>"; };
|
|
BE8DEDC81AA6A7E200AFE62D /* revert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = revert.h; path = git2/revert.h; sourceTree = "<group>"; };
|
|
BE8DEDC91AA6A7E200AFE62D /* revparse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = revparse.h; path = git2/revparse.h; sourceTree = "<group>"; };
|
|
BE8DEDCA1AA6A7E200AFE62D /* revwalk.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = revwalk.h; path = git2/revwalk.h; sourceTree = "<group>"; };
|
|
BE8DEDCB1AA6A7E200AFE62D /* signature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = signature.h; path = git2/signature.h; sourceTree = "<group>"; };
|
|
BE8DEDCC1AA6A7E200AFE62D /* stash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stash.h; path = git2/stash.h; sourceTree = "<group>"; };
|
|
BE8DEDCD1AA6A7E200AFE62D /* status.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = status.h; path = git2/status.h; sourceTree = "<group>"; };
|
|
BE8DEDCF1AA6A7E200AFE62D /* strarray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = strarray.h; path = git2/strarray.h; sourceTree = "<group>"; };
|
|
BE8DEDD01AA6A7E200AFE62D /* submodule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = submodule.h; path = git2/submodule.h; sourceTree = "<group>"; };
|
|
BE8DEDD11AA6A7E200AFE62D /* tag.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tag.h; path = git2/tag.h; sourceTree = "<group>"; };
|
|
BE8DEDD21AA6A7E200AFE62D /* trace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = trace.h; path = git2/trace.h; sourceTree = "<group>"; };
|
|
BE8DEDD31AA6A7E200AFE62D /* transaction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = transaction.h; path = git2/transaction.h; sourceTree = "<group>"; };
|
|
BE8DEDD41AA6A7E200AFE62D /* transport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = transport.h; path = git2/transport.h; sourceTree = "<group>"; };
|
|
BE8DEDD51AA6A7E200AFE62D /* tree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tree.h; path = git2/tree.h; sourceTree = "<group>"; };
|
|
BE8DEDD61AA6A7E200AFE62D /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = types.h; path = git2/types.h; sourceTree = "<group>"; };
|
|
BE8DEDD71AA6A7E200AFE62D /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = version.h; path = git2/version.h; sourceTree = "<group>"; };
|
|
BEB31F231A0D6F7A00F525B9 /* SwiftGit2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftGit2.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
BEB31F271A0D6F7A00F525B9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
BEB31F281A0D6F7A00F525B9 /* SwiftGit2.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SwiftGit2.h; sourceTree = "<group>"; };
|
|
BEB31F2E1A0D6F7A00F525B9 /* SwiftGit2-OSXTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "SwiftGit2-OSXTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
BEB31F341A0D6F7A00F525B9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
BEB31F351A0D6F7A00F525B9 /* RepositorySpec.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RepositorySpec.swift; sourceTree = "<group>"; };
|
|
BEB31F431A0D75EE00F525B9 /* Common.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Common.xcconfig; sourceTree = "<group>"; };
|
|
BEB31F451A0D75EE00F525B9 /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
|
|
BEB31F461A0D75EE00F525B9 /* Profile.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Profile.xcconfig; sourceTree = "<group>"; };
|
|
BEB31F471A0D75EE00F525B9 /* Release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
|
|
BEB31F481A0D75EE00F525B9 /* Test.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Test.xcconfig; sourceTree = "<group>"; };
|
|
BEB31F4A1A0D75EE00F525B9 /* Application.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Application.xcconfig; sourceTree = "<group>"; };
|
|
BEB31F4B1A0D75EE00F525B9 /* Framework.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Framework.xcconfig; sourceTree = "<group>"; };
|
|
BEB31F4C1A0D75EE00F525B9 /* StaticLibrary.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = StaticLibrary.xcconfig; sourceTree = "<group>"; };
|
|
BEB31F4E1A0D75EE00F525B9 /* iOS-Application.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "iOS-Application.xcconfig"; sourceTree = "<group>"; };
|
|
BEB31F4F1A0D75EE00F525B9 /* iOS-Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "iOS-Base.xcconfig"; sourceTree = "<group>"; };
|
|
BEB31F501A0D75EE00F525B9 /* iOS-Framework.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "iOS-Framework.xcconfig"; sourceTree = "<group>"; };
|
|
BEB31F511A0D75EE00F525B9 /* iOS-StaticLibrary.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "iOS-StaticLibrary.xcconfig"; sourceTree = "<group>"; };
|
|
BEB31F531A0D75EE00F525B9 /* Mac-Application.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "Mac-Application.xcconfig"; sourceTree = "<group>"; };
|
|
BEB31F541A0D75EE00F525B9 /* Mac-Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "Mac-Base.xcconfig"; sourceTree = "<group>"; };
|
|
BEB31F551A0D75EE00F525B9 /* Mac-DynamicLibrary.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "Mac-DynamicLibrary.xcconfig"; sourceTree = "<group>"; };
|
|
BEB31F561A0D75EE00F525B9 /* Mac-Framework.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "Mac-Framework.xcconfig"; sourceTree = "<group>"; };
|
|
BEB31F571A0D75EE00F525B9 /* Mac-StaticLibrary.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = "Mac-StaticLibrary.xcconfig"; sourceTree = "<group>"; };
|
|
BEB31F581A0D75EE00F525B9 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
|
|
BEB31F6C1A0D78F300F525B9 /* Repository.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Repository.swift; sourceTree = "<group>"; };
|
|
BEB31F8F1A0E563900F525B9 /* liblibgit2-OSX.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "liblibgit2-OSX.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
BEB31F9B1A0E581400F525B9 /* git2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = git2.h; sourceTree = "<group>"; };
|
|
BEB31F9D1A0E595100F525B9 /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; };
|
|
BEB31F9F1A0E595600F525B9 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
|
|
BECB5F691A56F19900999413 /* References.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = References.swift; sourceTree = "<group>"; };
|
|
BECB5F6B1A56F1B400999413 /* ReferencesSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ReferencesSpec.swift; sourceTree = "<group>"; };
|
|
BECB5F6D1A57284700999413 /* Remotes.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Remotes.swift; sourceTree = "<group>"; };
|
|
BECB5F6F1A57286200999413 /* RemotesSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RemotesSpec.swift; sourceTree = "<group>"; };
|
|
BEE591C61ADF470500534F14 /* Result.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Result.framework; path = "../../Library/Developer/Xcode/DerivedData/SwiftGit2-cdzquzvlxdewyddxgdgxjagqvjba/Build/Products/Debug/Result.framework"; sourceTree = "<group>"; };
|
|
DA50239F1A969F1A004175D7 /* Nimble.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
DA59146C1A94549A00AED74C /* Guanaco.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Guanaco.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
DA5914751A94579000AED74C /* Errors.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Errors.swift; sourceTree = "<group>"; };
|
|
DAC8143C1A99749D0063D88C /* Quick.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Quick.framework; path = "../../../../Library/Developer/Xcode/DerivedData/SwiftGit2-ezqqkevntxbroughwcioyxqriijk/Build/Products/Debug/Quick.framework"; sourceTree = "<group>"; };
|
|
/* End PBXFileReference section */
|
|
|
|
/* Begin PBXFrameworksBuildPhase section */
|
|
621E66AA1C72958800A0F352 /* Frameworks */ = {
|
|
isa = PBXFrameworksBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
621E67001C72A60B00A0F352 /* libz.tbd in Frameworks */,
|
|
621E66FE1C72A5FF00A0F352 /* libiconv.tbd in Frameworks */,
|
|
621E66D91C72989A00A0F352 /* Result.framework in Frameworks */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
621E66C11C72958D00A0F352 /* Frameworks */ = {
|
|
isa = PBXFrameworksBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
621E66E61C729D9600A0F352 /* SwiftGit2.framework in Frameworks */,
|
|
621E66C21C72958D00A0F352 /* ZipArchive.framework in Frameworks */,
|
|
621E66C31C72958D00A0F352 /* Guanaco.framework in Frameworks */,
|
|
621E66C41C72958D00A0F352 /* Nimble.framework in Frameworks */,
|
|
621E66C51C72958D00A0F352 /* Quick.framework in Frameworks */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
BEB31F1F1A0D6F7A00F525B9 /* Frameworks */ = {
|
|
isa = PBXFrameworksBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
BEE591C71ADF470500534F14 /* Result.framework in Frameworks */,
|
|
BEB31FA01A0E595600F525B9 /* libz.dylib in Frameworks */,
|
|
BEB31F9E1A0E595100F525B9 /* libiconv.dylib in Frameworks */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
BEB31F2B1A0D6F7A00F525B9 /* Frameworks */ = {
|
|
isa = PBXFrameworksBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
62E6FD8F1C727E9C00A312B0 /* ZipArchive.framework in Frameworks */,
|
|
DA59146D1A94549A00AED74C /* Guanaco.framework in Frameworks */,
|
|
DA5023A01A969F1A004175D7 /* Nimble.framework in Frameworks */,
|
|
DAC8143D1A99749D0063D88C /* Quick.framework in Frameworks */,
|
|
BEB31F2F1A0D6F7A00F525B9 /* SwiftGit2.framework in Frameworks */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXFrameworksBuildPhase section */
|
|
|
|
/* Begin PBXGroup section */
|
|
621E66D41C72965C00A0F352 /* Mac */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BEE591C61ADF470500534F14 /* Result.framework */,
|
|
BEB31F9D1A0E595100F525B9 /* libiconv.dylib */,
|
|
BEB31F9F1A0E595600F525B9 /* libz.dylib */,
|
|
);
|
|
name = Mac;
|
|
sourceTree = "<group>";
|
|
};
|
|
621E66D51C72966000A0F352 /* iOS */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
621E66D81C72989900A0F352 /* Result.framework */,
|
|
621E66FD1C72A5FF00A0F352 /* libiconv.tbd */,
|
|
621E66FF1C72A60B00A0F352 /* libz.tbd */,
|
|
);
|
|
name = iOS;
|
|
sourceTree = "<group>";
|
|
};
|
|
BE14AA531A1983520015B439 /* Fixtures */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BE0B1C5C1A9978890004726D /* detached-head.zip */,
|
|
BE14AA541A1984550015B439 /* Fixtures.swift */,
|
|
BE0991F61A578FB1007D4E6A /* Mantle.zip */,
|
|
BE14AA561A198C6E0015B439 /* simple-repository.zip */,
|
|
);
|
|
path = Fixtures;
|
|
sourceTree = "<group>";
|
|
};
|
|
BE8DED9B1AA6A7D400AFE62D /* git2 */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BE8DED9C1AA6A7E200AFE62D /* annotated_commit.h */,
|
|
BE8DED9D1AA6A7E200AFE62D /* attr.h */,
|
|
BE8DED9E1AA6A7E200AFE62D /* blame.h */,
|
|
BE8DED9F1AA6A7E200AFE62D /* blob.h */,
|
|
BE8DEDA01AA6A7E200AFE62D /* branch.h */,
|
|
BE8DEDA11AA6A7E200AFE62D /* buffer.h */,
|
|
BE8DEDA21AA6A7E200AFE62D /* checkout.h */,
|
|
BE8DEDA31AA6A7E200AFE62D /* cherrypick.h */,
|
|
BE8DEDA41AA6A7E200AFE62D /* clone.h */,
|
|
BE8DEDA51AA6A7E200AFE62D /* commit.h */,
|
|
BE8DEDA61AA6A7E200AFE62D /* common.h */,
|
|
BE8DEDA71AA6A7E200AFE62D /* config.h */,
|
|
BE8DEDA81AA6A7E200AFE62D /* cred_helpers.h */,
|
|
BE8DEDA91AA6A7E200AFE62D /* describe.h */,
|
|
BE8DEDAA1AA6A7E200AFE62D /* diff.h */,
|
|
BE8DEDAB1AA6A7E200AFE62D /* errors.h */,
|
|
BE8DEDAC1AA6A7E200AFE62D /* filter.h */,
|
|
BE8DEDAD1AA6A7E200AFE62D /* global.h */,
|
|
BE8DEDAE1AA6A7E200AFE62D /* graph.h */,
|
|
BE8DEDAF1AA6A7E200AFE62D /* ignore.h */,
|
|
BE8DEDB01AA6A7E200AFE62D /* index.h */,
|
|
BE8DEDB11AA6A7E200AFE62D /* indexer.h */,
|
|
BE8DEDB31AA6A7E200AFE62D /* merge.h */,
|
|
BE8DEDB41AA6A7E200AFE62D /* message.h */,
|
|
BE8DEDB51AA6A7E200AFE62D /* net.h */,
|
|
BE8DEDB61AA6A7E200AFE62D /* notes.h */,
|
|
BE8DEDB71AA6A7E200AFE62D /* object.h */,
|
|
BE8DEDB81AA6A7E200AFE62D /* odb_backend.h */,
|
|
BE8DEDB91AA6A7E200AFE62D /* odb.h */,
|
|
BE8DEDBA1AA6A7E200AFE62D /* oid.h */,
|
|
BE8DEDBB1AA6A7E200AFE62D /* oidarray.h */,
|
|
BE8DEDBC1AA6A7E200AFE62D /* pack.h */,
|
|
BE8DEDBD1AA6A7E200AFE62D /* patch.h */,
|
|
BE8DEDBE1AA6A7E200AFE62D /* pathspec.h */,
|
|
BE8DEDC01AA6A7E200AFE62D /* rebase.h */,
|
|
BE8DEDC11AA6A7E200AFE62D /* refdb.h */,
|
|
BE8DEDC21AA6A7E200AFE62D /* reflog.h */,
|
|
BE8DEDC31AA6A7E200AFE62D /* refs.h */,
|
|
BE8DEDC41AA6A7E200AFE62D /* refspec.h */,
|
|
BE8DEDC51AA6A7E200AFE62D /* remote.h */,
|
|
BE8DEDC61AA6A7E200AFE62D /* repository.h */,
|
|
BE8DEDC71AA6A7E200AFE62D /* reset.h */,
|
|
BE8DEDC81AA6A7E200AFE62D /* revert.h */,
|
|
BE8DEDC91AA6A7E200AFE62D /* revparse.h */,
|
|
BE8DEDCA1AA6A7E200AFE62D /* revwalk.h */,
|
|
BE8DEDCB1AA6A7E200AFE62D /* signature.h */,
|
|
BE8DEDCC1AA6A7E200AFE62D /* stash.h */,
|
|
BE8DEDCD1AA6A7E200AFE62D /* status.h */,
|
|
BE8DEDCF1AA6A7E200AFE62D /* strarray.h */,
|
|
BE8DEDD01AA6A7E200AFE62D /* submodule.h */,
|
|
BE8DEDD11AA6A7E200AFE62D /* tag.h */,
|
|
BE8DEDD21AA6A7E200AFE62D /* trace.h */,
|
|
BE8DEDD31AA6A7E200AFE62D /* transaction.h */,
|
|
BE8DEDD41AA6A7E200AFE62D /* transport.h */,
|
|
BE8DEDD51AA6A7E200AFE62D /* tree.h */,
|
|
BE8DEDD61AA6A7E200AFE62D /* types.h */,
|
|
BE8DEDD71AA6A7E200AFE62D /* version.h */,
|
|
);
|
|
name = git2;
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31F191A0D6F7A00F525B9 = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BEB31F251A0D6F7A00F525B9 /* SwiftGit2 */,
|
|
BEB31F321A0D6F7A00F525B9 /* SwiftGit2Tests */,
|
|
BEB31F9A1A0E57FC00F525B9 /* libgit2 */,
|
|
BEB31FA11A0E63C100F525B9 /* Libraries */,
|
|
BEB31F411A0D75EE00F525B9 /* Configuration */,
|
|
BEB31F241A0D6F7A00F525B9 /* Products */,
|
|
);
|
|
sourceTree = "<group>";
|
|
usesTabs = 1;
|
|
};
|
|
BEB31F241A0D6F7A00F525B9 /* Products */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BEB31F231A0D6F7A00F525B9 /* SwiftGit2.framework */,
|
|
BEB31F2E1A0D6F7A00F525B9 /* SwiftGit2-OSXTests.xctest */,
|
|
BEB31F8F1A0E563900F525B9 /* liblibgit2-OSX.a */,
|
|
621E66B41C72958800A0F352 /* SwiftGit2.framework */,
|
|
621E66CE1C72958D00A0F352 /* SwiftGit2-iOSTests.xctest */,
|
|
621E66E11C729CE500A0F352 /* liblibgit2-iOS.a */,
|
|
621E66EC1C729EB800A0F352 /* libOpenSSL-iOS.a */,
|
|
621E66F21C729EBB00A0F352 /* liblibssh2-iOS.a */,
|
|
);
|
|
name = Products;
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31F251A0D6F7A00F525B9 /* SwiftGit2 */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BEB31F281A0D6F7A00F525B9 /* SwiftGit2.h */,
|
|
BE14AA4F1A1974010015B439 /* SwiftGit2.m */,
|
|
BE276B281ACCD3CF00D6DAD7 /* CheckoutStrategy.swift */,
|
|
622726331C84E52500C53D17 /* Credentials.swift */,
|
|
DA5914751A94579000AED74C /* Errors.swift */,
|
|
BE36354B1A632C9700D37EC8 /* Libgit2.swift */,
|
|
BE2E3BE51A31261300C67092 /* Objects.swift */,
|
|
BE70B3E41A1ACB1A002C3F4E /* OID.swift */,
|
|
BE7A753E1A4A2BCC002DA7E3 /* Pointers.swift */,
|
|
BEB31F6C1A0D78F300F525B9 /* Repository.swift */,
|
|
BECB5F691A56F19900999413 /* References.swift */,
|
|
BECB5F6D1A57284700999413 /* Remotes.swift */,
|
|
BEB31F261A0D6F7A00F525B9 /* Supporting Files */,
|
|
);
|
|
path = SwiftGit2;
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31F261A0D6F7A00F525B9 /* Supporting Files */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BEB31F271A0D6F7A00F525B9 /* Info.plist */,
|
|
BE244A521A117DA100F8BE42 /* SwiftGit2.modulemap */,
|
|
);
|
|
name = "Supporting Files";
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31F321A0D6F7A00F525B9 /* SwiftGit2Tests */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BE14AA531A1983520015B439 /* Fixtures */,
|
|
BE70B3E61A1ACB37002C3F4E /* OIDSpec.swift */,
|
|
BE2E3BE71A31262800C67092 /* ObjectsSpec.swift */,
|
|
BEB31F351A0D6F7A00F525B9 /* RepositorySpec.swift */,
|
|
BECB5F6B1A56F1B400999413 /* ReferencesSpec.swift */,
|
|
BECB5F6F1A57286200999413 /* RemotesSpec.swift */,
|
|
BE14AA581A1996B70015B439 /* FixturesSpec.swift */,
|
|
BEB31F331A0D6F7A00F525B9 /* Supporting Files */,
|
|
);
|
|
path = SwiftGit2Tests;
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31F331A0D6F7A00F525B9 /* Supporting Files */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
62E6FD8E1C727E9C00A312B0 /* ZipArchive.framework */,
|
|
DA50239F1A969F1A004175D7 /* Nimble.framework */,
|
|
DAC8143C1A99749D0063D88C /* Quick.framework */,
|
|
DA59146C1A94549A00AED74C /* Guanaco.framework */,
|
|
BEB31F341A0D6F7A00F525B9 /* Info.plist */,
|
|
);
|
|
name = "Supporting Files";
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31F411A0D75EE00F525B9 /* Configuration */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BEB31F421A0D75EE00F525B9 /* Base */,
|
|
BEB31F4D1A0D75EE00F525B9 /* iOS */,
|
|
BEB31F521A0D75EE00F525B9 /* Mac OS X */,
|
|
BEB31F581A0D75EE00F525B9 /* README.md */,
|
|
);
|
|
name = Configuration;
|
|
path = Carthage/Checkouts/xcconfigs;
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31F421A0D75EE00F525B9 /* Base */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BEB31F431A0D75EE00F525B9 /* Common.xcconfig */,
|
|
BEB31F441A0D75EE00F525B9 /* Configurations */,
|
|
BEB31F491A0D75EE00F525B9 /* Targets */,
|
|
);
|
|
path = Base;
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31F441A0D75EE00F525B9 /* Configurations */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BEB31F451A0D75EE00F525B9 /* Debug.xcconfig */,
|
|
BEB31F461A0D75EE00F525B9 /* Profile.xcconfig */,
|
|
BEB31F471A0D75EE00F525B9 /* Release.xcconfig */,
|
|
BEB31F481A0D75EE00F525B9 /* Test.xcconfig */,
|
|
);
|
|
path = Configurations;
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31F491A0D75EE00F525B9 /* Targets */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BEB31F4A1A0D75EE00F525B9 /* Application.xcconfig */,
|
|
BEB31F4B1A0D75EE00F525B9 /* Framework.xcconfig */,
|
|
BEB31F4C1A0D75EE00F525B9 /* StaticLibrary.xcconfig */,
|
|
);
|
|
path = Targets;
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31F4D1A0D75EE00F525B9 /* iOS */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BEB31F4E1A0D75EE00F525B9 /* iOS-Application.xcconfig */,
|
|
BEB31F4F1A0D75EE00F525B9 /* iOS-Base.xcconfig */,
|
|
BEB31F501A0D75EE00F525B9 /* iOS-Framework.xcconfig */,
|
|
BEB31F511A0D75EE00F525B9 /* iOS-StaticLibrary.xcconfig */,
|
|
);
|
|
path = iOS;
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31F521A0D75EE00F525B9 /* Mac OS X */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BEB31F531A0D75EE00F525B9 /* Mac-Application.xcconfig */,
|
|
BEB31F541A0D75EE00F525B9 /* Mac-Base.xcconfig */,
|
|
BEB31F551A0D75EE00F525B9 /* Mac-DynamicLibrary.xcconfig */,
|
|
BEB31F561A0D75EE00F525B9 /* Mac-Framework.xcconfig */,
|
|
BEB31F571A0D75EE00F525B9 /* Mac-StaticLibrary.xcconfig */,
|
|
);
|
|
path = "Mac OS X";
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31F9A1A0E57FC00F525B9 /* libgit2 */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
BE8DED9B1AA6A7D400AFE62D /* git2 */,
|
|
BEB31F9B1A0E581400F525B9 /* git2.h */,
|
|
);
|
|
name = libgit2;
|
|
path = External/libgit2/include;
|
|
sourceTree = "<group>";
|
|
};
|
|
BEB31FA11A0E63C100F525B9 /* Libraries */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
621E66D51C72966000A0F352 /* iOS */,
|
|
621E66D41C72965C00A0F352 /* Mac */,
|
|
);
|
|
name = Libraries;
|
|
sourceTree = "<group>";
|
|
};
|
|
/* End PBXGroup section */
|
|
|
|
/* Begin PBXHeadersBuildPhase section */
|
|
621E66AE1C72958800A0F352 /* Headers */ = {
|
|
isa = PBXHeadersBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
621E66AF1C72958800A0F352 /* git2.h in Headers */,
|
|
621E66B01C72958800A0F352 /* SwiftGit2.h in Headers */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
BEB31F201A0D6F7A00F525B9 /* Headers */ = {
|
|
isa = PBXHeadersBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
BEB005EA1AA6AEC300320A23 /* git2.h in Headers */,
|
|
BEB31F291A0D6F7A00F525B9 /* SwiftGit2.h in Headers */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXHeadersBuildPhase section */
|
|
|
|
/* Begin PBXNativeTarget section */
|
|
621E66611C72958800A0F352 /* SwiftGit2-iOS */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = 621E66B11C72958800A0F352 /* Build configuration list for PBXNativeTarget "SwiftGit2-iOS" */;
|
|
buildPhases = (
|
|
621E66641C72958800A0F352 /* Copy libgit2 Headers */,
|
|
621E669F1C72958800A0F352 /* Sources */,
|
|
621E66AA1C72958800A0F352 /* Frameworks */,
|
|
621E66AE1C72958800A0F352 /* Headers */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
621E66FC1C72A25D00A0F352 /* PBXTargetDependency */,
|
|
);
|
|
name = "SwiftGit2-iOS";
|
|
productName = "SwiftGit2-OSX";
|
|
productReference = 621E66B41C72958800A0F352 /* SwiftGit2.framework */;
|
|
productType = "com.apple.product-type.framework";
|
|
};
|
|
621E66B61C72958D00A0F352 /* SwiftGit2-iOSTests */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = 621E66CB1C72958D00A0F352 /* Build configuration list for PBXNativeTarget "SwiftGit2-iOSTests" */;
|
|
buildPhases = (
|
|
621E66B91C72958D00A0F352 /* Sources */,
|
|
621E66C11C72958D00A0F352 /* Frameworks */,
|
|
621E66C71C72958D00A0F352 /* Resources */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
621E66E51C729D8A00A0F352 /* PBXTargetDependency */,
|
|
);
|
|
name = "SwiftGit2-iOSTests";
|
|
productName = "SwiftGit2-OSXTests";
|
|
productReference = 621E66CE1C72958D00A0F352 /* SwiftGit2-iOSTests.xctest */;
|
|
productType = "com.apple.product-type.bundle.unit-test";
|
|
};
|
|
621E66DC1C729CE500A0F352 /* libgit2-iOS */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = 621E66DE1C729CE500A0F352 /* Build configuration list for PBXNativeTarget "libgit2-iOS" */;
|
|
buildPhases = (
|
|
621E66DD1C729CE500A0F352 /* ShellScript */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
624349881C7CADCD0087C234 /* PBXTargetDependency */,
|
|
);
|
|
name = "libgit2-iOS";
|
|
productName = libgit2;
|
|
productReference = 621E66E11C729CE500A0F352 /* liblibgit2-iOS.a */;
|
|
productType = "com.apple.product-type.library.static";
|
|
};
|
|
621E66E71C729EB800A0F352 /* OpenSSL-iOS */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = 621E66E91C729EB800A0F352 /* Build configuration list for PBXNativeTarget "OpenSSL-iOS" */;
|
|
buildPhases = (
|
|
621E66E81C729EB800A0F352 /* ShellScript */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
);
|
|
name = "OpenSSL-iOS";
|
|
productName = libgit2;
|
|
productReference = 621E66EC1C729EB800A0F352 /* libOpenSSL-iOS.a */;
|
|
productType = "com.apple.product-type.library.static";
|
|
};
|
|
621E66ED1C729EBB00A0F352 /* libssh2-iOS */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = 621E66EF1C729EBB00A0F352 /* Build configuration list for PBXNativeTarget "libssh2-iOS" */;
|
|
buildPhases = (
|
|
621E66EE1C729EBB00A0F352 /* ShellScript */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
6243498A1C7CADD90087C234 /* PBXTargetDependency */,
|
|
);
|
|
name = "libssh2-iOS";
|
|
productName = libgit2;
|
|
productReference = 621E66F21C729EBB00A0F352 /* liblibssh2-iOS.a */;
|
|
productType = "com.apple.product-type.library.static";
|
|
};
|
|
BEB31F221A0D6F7A00F525B9 /* SwiftGit2-OSX */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = BEB31F391A0D6F7A00F525B9 /* Build configuration list for PBXNativeTarget "SwiftGit2-OSX" */;
|
|
buildPhases = (
|
|
BEB31F961A0E579700F525B9 /* Copy libgit2 Headers */,
|
|
BEB31F1E1A0D6F7A00F525B9 /* Sources */,
|
|
BEB31F1F1A0D6F7A00F525B9 /* Frameworks */,
|
|
BEB31F201A0D6F7A00F525B9 /* Headers */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
BEB31F951A0E56E200F525B9 /* PBXTargetDependency */,
|
|
);
|
|
name = "SwiftGit2-OSX";
|
|
productName = "SwiftGit2-OSX";
|
|
productReference = BEB31F231A0D6F7A00F525B9 /* SwiftGit2.framework */;
|
|
productType = "com.apple.product-type.framework";
|
|
};
|
|
BEB31F2D1A0D6F7A00F525B9 /* SwiftGit2-OSXTests */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = BEB31F3C1A0D6F7A00F525B9 /* Build configuration list for PBXNativeTarget "SwiftGit2-OSXTests" */;
|
|
buildPhases = (
|
|
BEB31F2A1A0D6F7A00F525B9 /* Sources */,
|
|
BEB31F2B1A0D6F7A00F525B9 /* Frameworks */,
|
|
BEB31F2C1A0D6F7A00F525B9 /* Resources */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
BEB31F311A0D6F7A00F525B9 /* PBXTargetDependency */,
|
|
);
|
|
name = "SwiftGit2-OSXTests";
|
|
productName = "SwiftGit2-OSXTests";
|
|
productReference = BEB31F2E1A0D6F7A00F525B9 /* SwiftGit2-OSXTests.xctest */;
|
|
productType = "com.apple.product-type.bundle.unit-test";
|
|
};
|
|
BEB31F8E1A0E563900F525B9 /* libgit2-OSX */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = BEB31F901A0E563900F525B9 /* Build configuration list for PBXNativeTarget "libgit2-OSX" */;
|
|
buildPhases = (
|
|
BEB31F931A0E567000F525B9 /* ShellScript */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
);
|
|
name = "libgit2-OSX";
|
|
productName = libgit2;
|
|
productReference = BEB31F8F1A0E563900F525B9 /* liblibgit2-OSX.a */;
|
|
productType = "com.apple.product-type.library.static";
|
|
};
|
|
/* End PBXNativeTarget section */
|
|
|
|
/* Begin PBXProject section */
|
|
BEB31F1A1A0D6F7A00F525B9 /* Project object */ = {
|
|
isa = PBXProject;
|
|
attributes = {
|
|
LastSwiftUpdateCheck = 0720;
|
|
LastUpgradeCheck = 0720;
|
|
ORGANIZATIONNAME = "GitHub, Inc";
|
|
TargetAttributes = {
|
|
BEB31F221A0D6F7A00F525B9 = {
|
|
CreatedOnToolsVersion = 6.1;
|
|
};
|
|
BEB31F2D1A0D6F7A00F525B9 = {
|
|
CreatedOnToolsVersion = 6.1;
|
|
};
|
|
BEB31F8E1A0E563900F525B9 = {
|
|
CreatedOnToolsVersion = 6.1;
|
|
};
|
|
};
|
|
};
|
|
buildConfigurationList = BEB31F1D1A0D6F7A00F525B9 /* Build configuration list for PBXProject "SwiftGit2" */;
|
|
compatibilityVersion = "Xcode 3.2";
|
|
developmentRegion = English;
|
|
hasScannedForEncodings = 0;
|
|
knownRegions = (
|
|
en,
|
|
);
|
|
mainGroup = BEB31F191A0D6F7A00F525B9;
|
|
productRefGroup = BEB31F241A0D6F7A00F525B9 /* Products */;
|
|
projectDirPath = "";
|
|
projectRoot = "";
|
|
targets = (
|
|
BEB31F221A0D6F7A00F525B9 /* SwiftGit2-OSX */,
|
|
BEB31F2D1A0D6F7A00F525B9 /* SwiftGit2-OSXTests */,
|
|
621E66611C72958800A0F352 /* SwiftGit2-iOS */,
|
|
621E66B61C72958D00A0F352 /* SwiftGit2-iOSTests */,
|
|
BEB31F8E1A0E563900F525B9 /* libgit2-OSX */,
|
|
621E66DC1C729CE500A0F352 /* libgit2-iOS */,
|
|
621E66E71C729EB800A0F352 /* OpenSSL-iOS */,
|
|
621E66ED1C729EBB00A0F352 /* libssh2-iOS */,
|
|
);
|
|
};
|
|
/* End PBXProject section */
|
|
|
|
/* Begin PBXResourcesBuildPhase section */
|
|
621E66C71C72958D00A0F352 /* Resources */ = {
|
|
isa = PBXResourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
621E66C81C72958D00A0F352 /* detached-head.zip in Resources */,
|
|
621E66C91C72958D00A0F352 /* Mantle.zip in Resources */,
|
|
621E66CA1C72958D00A0F352 /* simple-repository.zip in Resources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
BEB31F2C1A0D6F7A00F525B9 /* Resources */ = {
|
|
isa = PBXResourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
BE0B1C5D1A9978890004726D /* detached-head.zip in Resources */,
|
|
BE0991F71A578FB1007D4E6A /* Mantle.zip in Resources */,
|
|
BE14AA571A198C6E0015B439 /* simple-repository.zip in Resources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXResourcesBuildPhase section */
|
|
|
|
/* Begin PBXShellScriptBuildPhase section */
|
|
621E66DD1C729CE500A0F352 /* ShellScript */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputPaths = (
|
|
);
|
|
outputPaths = (
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = script/update_libgit2_ios;
|
|
};
|
|
621E66E81C729EB800A0F352 /* ShellScript */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputPaths = (
|
|
);
|
|
outputPaths = (
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = script/update_libssl_ios;
|
|
};
|
|
621E66EE1C729EBB00A0F352 /* ShellScript */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputPaths = (
|
|
);
|
|
outputPaths = (
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = script/update_libssh2_ios;
|
|
};
|
|
BEB31F931A0E567000F525B9 /* ShellScript */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputPaths = (
|
|
);
|
|
outputPaths = (
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = script/update_libgit2;
|
|
};
|
|
/* End PBXShellScriptBuildPhase section */
|
|
|
|
/* Begin PBXSourcesBuildPhase section */
|
|
621E669F1C72958800A0F352 /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
621E66A01C72958800A0F352 /* OID.swift in Sources */,
|
|
621E66A11C72958800A0F352 /* Remotes.swift in Sources */,
|
|
621E66A21C72958800A0F352 /* CheckoutStrategy.swift in Sources */,
|
|
622726351C84E52500C53D17 /* Credentials.swift in Sources */,
|
|
621E66A31C72958800A0F352 /* Repository.swift in Sources */,
|
|
621E66A41C72958800A0F352 /* Objects.swift in Sources */,
|
|
621E66A51C72958800A0F352 /* References.swift in Sources */,
|
|
621E66A61C72958800A0F352 /* Libgit2.swift in Sources */,
|
|
621E66A71C72958800A0F352 /* Pointers.swift in Sources */,
|
|
621E66A81C72958800A0F352 /* Errors.swift in Sources */,
|
|
621E66A91C72958800A0F352 /* SwiftGit2.m in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
621E66B91C72958D00A0F352 /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
621E66BA1C72958D00A0F352 /* RepositorySpec.swift in Sources */,
|
|
621E66BB1C72958D00A0F352 /* ObjectsSpec.swift in Sources */,
|
|
621E66BC1C72958D00A0F352 /* RemotesSpec.swift in Sources */,
|
|
621E66BD1C72958D00A0F352 /* FixturesSpec.swift in Sources */,
|
|
621E66BE1C72958D00A0F352 /* Fixtures.swift in Sources */,
|
|
621E66BF1C72958D00A0F352 /* ReferencesSpec.swift in Sources */,
|
|
621E66C01C72958D00A0F352 /* OIDSpec.swift in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
BEB31F1E1A0D6F7A00F525B9 /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
BE70B3E51A1ACB1A002C3F4E /* OID.swift in Sources */,
|
|
BECB5F6E1A57284700999413 /* Remotes.swift in Sources */,
|
|
BE276B291ACCD3CF00D6DAD7 /* CheckoutStrategy.swift in Sources */,
|
|
622726341C84E52500C53D17 /* Credentials.swift in Sources */,
|
|
BEB31F6D1A0D78F300F525B9 /* Repository.swift in Sources */,
|
|
BE2E3BE61A31261300C67092 /* Objects.swift in Sources */,
|
|
BECB5F6A1A56F19900999413 /* References.swift in Sources */,
|
|
BE36354C1A632C9700D37EC8 /* Libgit2.swift in Sources */,
|
|
BE7A753F1A4A2BCC002DA7E3 /* Pointers.swift in Sources */,
|
|
DA5914761A94579000AED74C /* Errors.swift in Sources */,
|
|
BE14AA501A1974010015B439 /* SwiftGit2.m in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
BEB31F2A1A0D6F7A00F525B9 /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
BEB31F361A0D6F7A00F525B9 /* RepositorySpec.swift in Sources */,
|
|
BE2E3BE81A31262800C67092 /* ObjectsSpec.swift in Sources */,
|
|
BECB5F701A57286200999413 /* RemotesSpec.swift in Sources */,
|
|
BE14AA591A1996B70015B439 /* FixturesSpec.swift in Sources */,
|
|
BE14AA551A1984550015B439 /* Fixtures.swift in Sources */,
|
|
BECB5F6C1A56F1B400999413 /* ReferencesSpec.swift in Sources */,
|
|
BE70B3E71A1ACB37002C3F4E /* OIDSpec.swift in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXSourcesBuildPhase section */
|
|
|
|
/* Begin PBXTargetDependency section */
|
|
621E66E51C729D8A00A0F352 /* PBXTargetDependency */ = {
|
|
isa = PBXTargetDependency;
|
|
target = 621E66611C72958800A0F352 /* SwiftGit2-iOS */;
|
|
targetProxy = 621E66E41C729D8A00A0F352 /* PBXContainerItemProxy */;
|
|
};
|
|
621E66FC1C72A25D00A0F352 /* PBXTargetDependency */ = {
|
|
isa = PBXTargetDependency;
|
|
target = 621E66DC1C729CE500A0F352 /* libgit2-iOS */;
|
|
targetProxy = 621E66FB1C72A25D00A0F352 /* PBXContainerItemProxy */;
|
|
};
|
|
624349881C7CADCD0087C234 /* PBXTargetDependency */ = {
|
|
isa = PBXTargetDependency;
|
|
target = 621E66ED1C729EBB00A0F352 /* libssh2-iOS */;
|
|
targetProxy = 624349871C7CADCD0087C234 /* PBXContainerItemProxy */;
|
|
};
|
|
6243498A1C7CADD90087C234 /* PBXTargetDependency */ = {
|
|
isa = PBXTargetDependency;
|
|
target = 621E66E71C729EB800A0F352 /* OpenSSL-iOS */;
|
|
targetProxy = 624349891C7CADD90087C234 /* PBXContainerItemProxy */;
|
|
};
|
|
BEB31F311A0D6F7A00F525B9 /* PBXTargetDependency */ = {
|
|
isa = PBXTargetDependency;
|
|
target = BEB31F221A0D6F7A00F525B9 /* SwiftGit2-OSX */;
|
|
targetProxy = BEB31F301A0D6F7A00F525B9 /* PBXContainerItemProxy */;
|
|
};
|
|
BEB31F951A0E56E200F525B9 /* PBXTargetDependency */ = {
|
|
isa = PBXTargetDependency;
|
|
target = BEB31F8E1A0E563900F525B9 /* libgit2-OSX */;
|
|
targetProxy = BEB31F941A0E56E200F525B9 /* PBXContainerItemProxy */;
|
|
};
|
|
/* End PBXTargetDependency section */
|
|
|
|
/* Begin XCBuildConfiguration section */
|
|
621E66B21C72958800A0F352 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = BEB31F501A0D75EE00F525B9 /* iOS-Framework.xcconfig */;
|
|
buildSettings = {
|
|
CLANG_ENABLE_MODULES = YES;
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
DEFINES_MODULE = YES;
|
|
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
DYLIB_CURRENT_VERSION = 1;
|
|
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
EMBEDDED_CONTENT_CONTAINS_SWIFT = YES;
|
|
ENABLE_BITCODE = NO;
|
|
FRAMEWORK_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)",
|
|
);
|
|
FRAMEWORK_VERSION = A;
|
|
HEADER_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
/usr/local/include,
|
|
External/libgit2/include,
|
|
External/openssl/include,
|
|
);
|
|
INFOPLIST_FILE = SwiftGit2/Info.plist;
|
|
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
|
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
LIBRARY_SEARCH_PATHS = (
|
|
"External/libgit2-ios",
|
|
"External/libssh2-ios/lib",
|
|
"External/ios-openssl/lib",
|
|
);
|
|
MODULEMAP_FILE = SwiftGit2/SwiftGit2.modulemap;
|
|
OTHER_LDFLAGS = (
|
|
"-force_load",
|
|
"External/libgit2-ios/libgit2-ios.a",
|
|
"-lgit2-ios",
|
|
"-lssl",
|
|
"-lcrypto",
|
|
"-lssh2-ios",
|
|
);
|
|
PRODUCT_BUNDLE_IDENTIFIER = org.libgit2.SwiftGit2;
|
|
PRODUCT_NAME = SwiftGit2;
|
|
SDKROOT = iphoneos;
|
|
SKIP_INSTALL = YES;
|
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
VALID_ARCHS = "arm64 armv7 armv7s";
|
|
};
|
|
name = Debug;
|
|
};
|
|
621E66B31C72958800A0F352 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = BEB31F501A0D75EE00F525B9 /* iOS-Framework.xcconfig */;
|
|
buildSettings = {
|
|
CLANG_ENABLE_MODULES = YES;
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
DEFINES_MODULE = YES;
|
|
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
DYLIB_CURRENT_VERSION = 1;
|
|
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
EMBEDDED_CONTENT_CONTAINS_SWIFT = YES;
|
|
ENABLE_BITCODE = NO;
|
|
FRAMEWORK_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)",
|
|
);
|
|
FRAMEWORK_VERSION = A;
|
|
HEADER_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
/usr/local/include,
|
|
External/libgit2/include,
|
|
External/openssl/include,
|
|
);
|
|
INFOPLIST_FILE = SwiftGit2/Info.plist;
|
|
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
IPHONEOS_DEPLOYMENT_TARGET = 9.2;
|
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
LIBRARY_SEARCH_PATHS = (
|
|
"External/libgit2-ios",
|
|
"External/libssh2-ios/lib",
|
|
"External/ios-openssl/lib",
|
|
);
|
|
MODULEMAP_FILE = SwiftGit2/SwiftGit2.modulemap;
|
|
OTHER_LDFLAGS = (
|
|
"-force_load",
|
|
"External/libgit2-ios/libgit2-ios.a",
|
|
"-lgit2-ios",
|
|
"-lssl",
|
|
"-lcrypto",
|
|
"-lssh2-ios",
|
|
);
|
|
PRODUCT_BUNDLE_IDENTIFIER = org.libgit2.SwiftGit2;
|
|
PRODUCT_NAME = SwiftGit2;
|
|
SDKROOT = iphoneos;
|
|
SKIP_INSTALL = YES;
|
|
VALID_ARCHS = "arm64 armv7 armv7s";
|
|
};
|
|
name = Release;
|
|
};
|
|
621E66CC1C72958D00A0F352 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = BEB31F4E1A0D75EE00F525B9 /* iOS-Application.xcconfig */;
|
|
buildSettings = {
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
EMBEDDED_CONTENT_CONTAINS_SWIFT = YES;
|
|
FRAMEWORK_SEARCH_PATHS = (
|
|
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
|
"$(inherited)",
|
|
"$(PROJECT_DIR)/Carthage/Checkouts/ZipArchive/build/Debug",
|
|
);
|
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
"DEBUG=1",
|
|
"$(inherited)",
|
|
);
|
|
INFOPLIST_FILE = SwiftGit2/Info.plist;
|
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
PRODUCT_BUNDLE_IDENTIFIER = "org.libgit2.$(PRODUCT_NAME:rfc1034identifier)";
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
SDKROOT = iphoneos;
|
|
VALID_ARCHS = "arm64 armv7 armv7s";
|
|
};
|
|
name = Debug;
|
|
};
|
|
621E66CD1C72958D00A0F352 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = BEB31F4E1A0D75EE00F525B9 /* iOS-Application.xcconfig */;
|
|
buildSettings = {
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
EMBEDDED_CONTENT_CONTAINS_SWIFT = YES;
|
|
FRAMEWORK_SEARCH_PATHS = (
|
|
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
|
"$(inherited)",
|
|
"$(PROJECT_DIR)/Carthage/Checkouts/ZipArchive/build/Debug",
|
|
);
|
|
INFOPLIST_FILE = SwiftGit2/Info.plist;
|
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
|
PRODUCT_BUNDLE_IDENTIFIER = "org.libgit2.$(PRODUCT_NAME:rfc1034identifier)";
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
SDKROOT = iphoneos;
|
|
VALID_ARCHS = "arm64 armv7 armv7s";
|
|
};
|
|
name = Release;
|
|
};
|
|
621E66DF1C729CE500A0F352 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
EXECUTABLE_PREFIX = lib;
|
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
"DEBUG=1",
|
|
"$(inherited)",
|
|
);
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
SDKROOT = iphoneos;
|
|
};
|
|
name = Debug;
|
|
};
|
|
621E66E01C729CE500A0F352 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
EXECUTABLE_PREFIX = lib;
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
SDKROOT = iphoneos;
|
|
};
|
|
name = Release;
|
|
};
|
|
621E66EA1C729EB800A0F352 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
EXECUTABLE_PREFIX = lib;
|
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
"DEBUG=1",
|
|
"$(inherited)",
|
|
);
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
SDKROOT = iphoneos;
|
|
};
|
|
name = Debug;
|
|
};
|
|
621E66EB1C729EB800A0F352 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
EXECUTABLE_PREFIX = lib;
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
SDKROOT = iphoneos;
|
|
};
|
|
name = Release;
|
|
};
|
|
621E66F01C729EBB00A0F352 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
EXECUTABLE_PREFIX = lib;
|
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
"DEBUG=1",
|
|
"$(inherited)",
|
|
);
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
SDKROOT = iphoneos;
|
|
};
|
|
name = Debug;
|
|
};
|
|
621E66F11C729EBB00A0F352 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
EXECUTABLE_PREFIX = lib;
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
SDKROOT = iphoneos;
|
|
};
|
|
name = Release;
|
|
};
|
|
BEB31F371A0D6F7A00F525B9 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = BEB31F451A0D75EE00F525B9 /* Debug.xcconfig */;
|
|
buildSettings = {
|
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
CLANG_CXX_LIBRARY = "libc++";
|
|
CLANG_ENABLE_MODULES = YES;
|
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
CLANG_WARN_EMPTY_BODY = YES;
|
|
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
CLANG_WARN_INT_CONVERSION = YES;
|
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
COPY_PHASE_STRIP = NO;
|
|
CURRENT_PROJECT_VERSION = 1;
|
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
ENABLE_TESTABILITY = YES;
|
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
GCC_DYNAMIC_NO_PIC = NO;
|
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
GCC_OPTIMIZATION_LEVEL = 0;
|
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
"DEBUG=1",
|
|
"$(inherited)",
|
|
);
|
|
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
HEADER_SEARCH_PATHS = (
|
|
External/libgit2/include,
|
|
/usr/local/include,
|
|
);
|
|
LIBRARY_SEARCH_PATHS = (
|
|
.,
|
|
External,
|
|
);
|
|
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
|
MTL_ENABLE_DEBUG_INFO = YES;
|
|
ONLY_ACTIVE_ARCH = YES;
|
|
SDKROOT = macosx;
|
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
VERSIONING_SYSTEM = "apple-generic";
|
|
VERSION_INFO_PREFIX = "";
|
|
};
|
|
name = Debug;
|
|
};
|
|
BEB31F381A0D6F7A00F525B9 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = BEB31F471A0D75EE00F525B9 /* Release.xcconfig */;
|
|
buildSettings = {
|
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
CLANG_CXX_LIBRARY = "libc++";
|
|
CLANG_ENABLE_MODULES = YES;
|
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
CLANG_WARN_EMPTY_BODY = YES;
|
|
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
CLANG_WARN_INT_CONVERSION = YES;
|
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
COPY_PHASE_STRIP = YES;
|
|
CURRENT_PROJECT_VERSION = 1;
|
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
ENABLE_NS_ASSERTIONS = NO;
|
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
HEADER_SEARCH_PATHS = (
|
|
External/libgit2/include,
|
|
/usr/local/include,
|
|
);
|
|
LIBRARY_SEARCH_PATHS = (
|
|
.,
|
|
External,
|
|
);
|
|
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
|
MTL_ENABLE_DEBUG_INFO = NO;
|
|
SDKROOT = macosx;
|
|
VERSIONING_SYSTEM = "apple-generic";
|
|
VERSION_INFO_PREFIX = "";
|
|
};
|
|
name = Release;
|
|
};
|
|
BEB31F3A1A0D6F7A00F525B9 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = BEB31F561A0D75EE00F525B9 /* Mac-Framework.xcconfig */;
|
|
buildSettings = {
|
|
CLANG_ENABLE_MODULES = YES;
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
DEFINES_MODULE = YES;
|
|
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
DYLIB_CURRENT_VERSION = 1;
|
|
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
FRAMEWORK_VERSION = A;
|
|
INFOPLIST_FILE = SwiftGit2/Info.plist;
|
|
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
|
|
MODULEMAP_FILE = SwiftGit2/SwiftGit2.modulemap;
|
|
OTHER_LDFLAGS = (
|
|
"-lgit2",
|
|
"-force_load",
|
|
External/libgit2.a,
|
|
/usr/local/lib/libssh2.a,
|
|
"-lcrypto",
|
|
"-lssl",
|
|
"-lcurl",
|
|
);
|
|
PRODUCT_BUNDLE_IDENTIFIER = "org.libgit2.$(PRODUCT_NAME:rfc1034identifier)";
|
|
PRODUCT_NAME = SwiftGit2;
|
|
SKIP_INSTALL = YES;
|
|
SUPPORTED_PLATFORMS = macosx;
|
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
};
|
|
name = Debug;
|
|
};
|
|
BEB31F3B1A0D6F7A00F525B9 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = BEB31F561A0D75EE00F525B9 /* Mac-Framework.xcconfig */;
|
|
buildSettings = {
|
|
CLANG_ENABLE_MODULES = YES;
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
DEFINES_MODULE = YES;
|
|
DYLIB_COMPATIBILITY_VERSION = 1;
|
|
DYLIB_CURRENT_VERSION = 1;
|
|
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
|
FRAMEWORK_VERSION = A;
|
|
INFOPLIST_FILE = SwiftGit2/Info.plist;
|
|
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
|
|
MODULEMAP_FILE = SwiftGit2/SwiftGit2.modulemap;
|
|
OTHER_LDFLAGS = (
|
|
"-lgit2",
|
|
"-force_load",
|
|
External/libgit2.a,
|
|
/usr/local/lib/libssh2.a,
|
|
"-lcrypto",
|
|
"-lssl",
|
|
"-lcurl",
|
|
);
|
|
PRODUCT_BUNDLE_IDENTIFIER = "org.libgit2.$(PRODUCT_NAME:rfc1034identifier)";
|
|
PRODUCT_NAME = SwiftGit2;
|
|
SKIP_INSTALL = YES;
|
|
SUPPORTED_PLATFORMS = macosx;
|
|
};
|
|
name = Release;
|
|
};
|
|
BEB31F3D1A0D6F7A00F525B9 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = BEB31F531A0D75EE00F525B9 /* Mac-Application.xcconfig */;
|
|
buildSettings = {
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
FRAMEWORK_SEARCH_PATHS = (
|
|
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
|
"$(inherited)",
|
|
"$(PROJECT_DIR)/Carthage/Checkouts/ZipArchive/build/Debug",
|
|
);
|
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
"DEBUG=1",
|
|
"$(inherited)",
|
|
);
|
|
INFOPLIST_FILE = SwiftGit2Tests/Info.plist;
|
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
|
|
MACOSX_DEPLOYMENT_TARGET = 10.11;
|
|
PRODUCT_BUNDLE_IDENTIFIER = "org.libgit2.$(PRODUCT_NAME:rfc1034identifier)";
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
};
|
|
name = Debug;
|
|
};
|
|
BEB31F3E1A0D6F7A00F525B9 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = BEB31F531A0D75EE00F525B9 /* Mac-Application.xcconfig */;
|
|
buildSettings = {
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
FRAMEWORK_SEARCH_PATHS = (
|
|
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
|
"$(inherited)",
|
|
"$(PROJECT_DIR)/Carthage/Checkouts/ZipArchive/build/Debug",
|
|
);
|
|
INFOPLIST_FILE = SwiftGit2Tests/Info.plist;
|
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
|
|
MACOSX_DEPLOYMENT_TARGET = 10.11;
|
|
PRODUCT_BUNDLE_IDENTIFIER = "org.libgit2.$(PRODUCT_NAME:rfc1034identifier)";
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
};
|
|
name = Release;
|
|
};
|
|
BEB31F911A0E563900F525B9 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
EXECUTABLE_PREFIX = lib;
|
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
"DEBUG=1",
|
|
"$(inherited)",
|
|
);
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
};
|
|
name = Debug;
|
|
};
|
|
BEB31F921A0E563900F525B9 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
EXECUTABLE_PREFIX = lib;
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
};
|
|
name = Release;
|
|
};
|
|
/* End XCBuildConfiguration section */
|
|
|
|
/* Begin XCConfigurationList section */
|
|
621E66B11C72958800A0F352 /* Build configuration list for PBXNativeTarget "SwiftGit2-iOS" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
621E66B21C72958800A0F352 /* Debug */,
|
|
621E66B31C72958800A0F352 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
621E66CB1C72958D00A0F352 /* Build configuration list for PBXNativeTarget "SwiftGit2-iOSTests" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
621E66CC1C72958D00A0F352 /* Debug */,
|
|
621E66CD1C72958D00A0F352 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
621E66DE1C729CE500A0F352 /* Build configuration list for PBXNativeTarget "libgit2-iOS" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
621E66DF1C729CE500A0F352 /* Debug */,
|
|
621E66E01C729CE500A0F352 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
621E66E91C729EB800A0F352 /* Build configuration list for PBXNativeTarget "OpenSSL-iOS" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
621E66EA1C729EB800A0F352 /* Debug */,
|
|
621E66EB1C729EB800A0F352 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
621E66EF1C729EBB00A0F352 /* Build configuration list for PBXNativeTarget "libssh2-iOS" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
621E66F01C729EBB00A0F352 /* Debug */,
|
|
621E66F11C729EBB00A0F352 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
BEB31F1D1A0D6F7A00F525B9 /* Build configuration list for PBXProject "SwiftGit2" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
BEB31F371A0D6F7A00F525B9 /* Debug */,
|
|
BEB31F381A0D6F7A00F525B9 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
BEB31F391A0D6F7A00F525B9 /* Build configuration list for PBXNativeTarget "SwiftGit2-OSX" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
BEB31F3A1A0D6F7A00F525B9 /* Debug */,
|
|
BEB31F3B1A0D6F7A00F525B9 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
BEB31F3C1A0D6F7A00F525B9 /* Build configuration list for PBXNativeTarget "SwiftGit2-OSXTests" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
BEB31F3D1A0D6F7A00F525B9 /* Debug */,
|
|
BEB31F3E1A0D6F7A00F525B9 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
BEB31F901A0E563900F525B9 /* Build configuration list for PBXNativeTarget "libgit2-OSX" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
BEB31F911A0E563900F525B9 /* Debug */,
|
|
BEB31F921A0E563900F525B9 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
/* End XCConfigurationList section */
|
|
};
|
|
rootObject = BEB31F1A1A0D6F7A00F525B9 /* Project object */;
|
|
}
|