├── Cartfile.private ├── script ├── update └── test ├── Cartfile.resolved ├── Engine ├── OutPort.swift ├── Port.swift ├── Component.swift ├── InPort.swift ├── Engine.h ├── Network.swift └── Info.plist ├── README.md ├── Engine.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── Engine.xccheckout ├── xcshareddata │ └── xcschemes │ │ ├── Engine-Mac.xcscheme │ │ └── Engine-iOS.xcscheme └── project.pbxproj ├── EngineTests ├── BareComponent.swift ├── PassThroughComponent.swift ├── CallbackComponent.swift ├── Info.plist ├── NetworkSpec.swift ├── OutPortSpec.swift └── InPortSpec.swift ├── .gitmodules ├── .travis.yml ├── .gitignore ├── Engine.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── Engine.xccheckout │ └── Engine.xcscmblueprint └── LICENSE /Cartfile.private: -------------------------------------------------------------------------------- 1 | github "Quick/Nimble" "v2.0.0-rc.3" 2 | github "Quick/Quick" == 0.6.0 3 | -------------------------------------------------------------------------------- /script/update: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | carthage update --no-build --no-use-binaries --use-submodules 4 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "Quick/Nimble" "811003c1e556d6fedd12a6e8b81da235a7479aca" 2 | github "Quick/Quick" "v0.6.0" 3 | -------------------------------------------------------------------------------- /Engine/OutPort.swift: -------------------------------------------------------------------------------- 1 | final public class OutPort: Port { 2 | public let process: Component 3 | 4 | public init(_ process: Component) { 5 | self.process = process 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CocoaFlow Engine [![Build Status](https://travis-ci.org/CocoaFlow/Engine.svg?branch=master)](https://travis-ci.org/CocoaFlow/Engine) 2 | 3 | CocoaFlow engine for flow-based programming on Mac and iOS. 4 | -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | xcodebuild -workspace Engine.xcworkspace -scheme Engine-Mac -sdk macosx clean test 4 | xcodebuild -workspace Engine.xcworkspace -scheme Engine-iOS -sdk iphonesimulator clean test 5 | -------------------------------------------------------------------------------- /Engine/Port.swift: -------------------------------------------------------------------------------- 1 | public protocol Port: class { 2 | var process: Component { get } 3 | } 4 | 5 | extension Port { 6 | public var id: Int { 7 | return ObjectIdentifier(self).hashValue 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Engine/Component.swift: -------------------------------------------------------------------------------- 1 | public protocol Component: class { 2 | var network: Network { get } 3 | } 4 | 5 | extension Component { 6 | var id: Int { 7 | return ObjectIdentifier(self).hashValue 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Engine.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /EngineTests/BareComponent.swift: -------------------------------------------------------------------------------- 1 | import Engine 2 | 3 | final internal class BareComponent: Component { 4 | let network: Network 5 | 6 | init(_ network: Network) { 7 | self.network = network 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Carthage/Checkouts/Nimble"] 2 | url = https://github.com/Quick/Nimble.git 3 | path = Carthage/Checkouts/Nimble 4 | [submodule "Carthage/Checkouts/Quick"] 5 | url = https://github.com/Quick/Quick.git 6 | path = Carthage/Checkouts/Quick 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | osx_image: xcode7 3 | git: 4 | submodules: false 5 | before_install: 6 | - brew update; brew update 7 | # - brew outdated xctool || brew upgrade xctool 8 | - brew install carthage 9 | install: script/update 10 | script: script/test 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | .DS_Store 3 | */build/* 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata 13 | profile 14 | *.moved-aside 15 | DerivedData 16 | .idea/ 17 | *.hmap 18 | -------------------------------------------------------------------------------- /Engine/InPort.swift: -------------------------------------------------------------------------------- 1 | final public class InPort: Port { 2 | public let process: Component 3 | 4 | public typealias Receiver = (T) -> Void 5 | public let receive: Receiver 6 | 7 | public init(_ process: Component, _ receive: Receiver) { 8 | self.process = process 9 | self.receive = receive 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Engine.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /EngineTests/PassThroughComponent.swift: -------------------------------------------------------------------------------- 1 | import Engine 2 | 3 | final internal class PassThroughComponent: Component { 4 | let network: Network 5 | 6 | init(_ network: Network) { 7 | self.network = network 8 | } 9 | 10 | // MARK: - Ports 11 | lazy var inPort: InPort = InPort(self) { packet in 12 | self.network.send(self.outPort, packet) 13 | } 14 | 15 | lazy var outPort: OutPort = OutPort(self) 16 | } 17 | -------------------------------------------------------------------------------- /EngineTests/CallbackComponent.swift: -------------------------------------------------------------------------------- 1 | import Engine 2 | 3 | final internal class CallbackComponent: Component { 4 | let network: Network 5 | 6 | // Mark: - Callback 7 | typealias Callback = (T) -> Void 8 | private let callback: Callback 9 | 10 | init(_ network: Network, _ callback: Callback) { 11 | self.network = network 12 | self.callback = callback 13 | } 14 | 15 | // MARK: - Ports 16 | lazy var inPort: InPort = InPort(self) { packet in 17 | self.callback(packet) 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Engine/Engine.h: -------------------------------------------------------------------------------- 1 | // 2 | // Engine.h 3 | // Engine 4 | // 5 | // Created by Paul Young on 21/09/2014. 6 | // Copyright (c) 2014 CocoaFlow. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for Engine. 12 | FOUNDATION_EXPORT double EngineVersionNumber; 13 | 14 | //! Project version string for Engine. 15 | FOUNDATION_EXPORT const unsigned char EngineVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /EngineTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Engine/Network.swift: -------------------------------------------------------------------------------- 1 | final public class Network { 2 | public init() {} 3 | 4 | // MARK: - Processes 5 | private var processes: [Int:Component] = [:] 6 | 7 | public func addNode(name: String, _ process: T) -> T { 8 | processes[process.id] = process 9 | return process 10 | } 11 | 12 | // MARK: - Connections 13 | private var connections: [Int:Port] = [:] 14 | 15 | public func addConnection(fromPort: OutPort, _ toPort: InPort) { 16 | connections[fromPort.id] = toPort 17 | } 18 | 19 | // MARK - Sending 20 | public func send(outPort: OutPort, _ packet: T) { 21 | if let inPort = connections[outPort.id] as? InPort { 22 | inPort.receive(packet) 23 | } 24 | else { 25 | print("Unconnected out port on \"\(outPort.process)\" tried to send a packet.") 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /EngineTests/NetworkSpec.swift: -------------------------------------------------------------------------------- 1 | import Quick 2 | import Nimble 3 | import Engine 4 | 5 | class NetworkSpec: QuickSpec { 6 | override func spec() { 7 | 8 | describe("Network") { 9 | var network: Network! 10 | 11 | beforeEach { 12 | network = Network() 13 | } 14 | 15 | it("should add edges") { 16 | waitUntil { done in 17 | let intPacket = 1 18 | let noOp = PassThroughComponent(network) 19 | 20 | let callback = CallbackComponent(network) { packet in 21 | expect(packet).to(equal(intPacket)) 22 | done() 23 | } 24 | 25 | network.addConnection(noOp.outPort, callback.inPort) 26 | noOp.inPort.receive(intPacket) 27 | } 28 | } 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Engine/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | $(CURRENT_PROJECT_VERSION) 23 | NSHumanReadableCopyright 24 | Copyright © 2014 CocoaFlow. All rights reserved. 25 | NSPrincipalClass 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /EngineTests/OutPortSpec.swift: -------------------------------------------------------------------------------- 1 | import Quick 2 | import Nimble 3 | import Engine 4 | 5 | class OutPortSpec: QuickSpec { 6 | override func spec() { 7 | 8 | describe("OutPort") { 9 | var process: BareComponent! 10 | 11 | beforeEach { 12 | let network = Network() 13 | process = BareComponent(network) 14 | } 15 | 16 | it("should belong to a process") { 17 | let outPort = OutPort(process) 18 | let processId = ObjectIdentifier(process).hashValue 19 | let outPortProcessId = ObjectIdentifier(outPort.process).hashValue 20 | expect(outPortProcessId).to(equal(processId)) 21 | } 22 | 23 | it("should have a unique ID") { 24 | let firstOutPort = OutPort(process) 25 | let secondOutPort = OutPort(process) 26 | expect(firstOutPort.id).toNot(equal(secondOutPort.id)) 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /EngineTests/InPortSpec.swift: -------------------------------------------------------------------------------- 1 | import Quick 2 | import Nimble 3 | import Engine 4 | 5 | class InPortSpec: QuickSpec { 6 | override func spec() { 7 | 8 | describe("InPort") { 9 | var process: BareComponent! 10 | 11 | beforeEach { 12 | let network = Network() 13 | process = BareComponent(network) 14 | } 15 | 16 | it("should belong to a process") { 17 | let inPort = InPort(process) { _ in } 18 | let processId = ObjectIdentifier(process).hashValue 19 | let inPortProcessId = ObjectIdentifier(inPort.process).hashValue 20 | expect(inPortProcessId).to(equal(processId)) 21 | } 22 | 23 | it("should have a unique ID") { 24 | let firstInPort = InPort(process) { _ in } 25 | let secondInPort = InPort(process) { _ in } 26 | expect(firstInPort.id).toNot(equal(secondInPort.id)) 27 | } 28 | 29 | it("should receive packets") { 30 | waitUntil { done in 31 | let intPacket = 1 32 | 33 | let inPort = InPort(process) { packet in 34 | expect(packet).to(equal(intPacket)) 35 | done() 36 | } 37 | 38 | inPort.receive(intPacket) 39 | } 40 | } 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /Engine.xcworkspace/xcshareddata/Engine.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | 7AD42AA1-FE84-4A10-BF88-C257BFBD81B7 9 | IDESourceControlProjectName 10 | Engine 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | 071DB5F7CAD227F044BD4D711846D4B6335BD28F 14 | github.com:CocoaFlow/Engine.git 15 | 16 | IDESourceControlProjectPath 17 | Engine.xcworkspace 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | 071DB5F7CAD227F044BD4D711846D4B6335BD28F 21 | .. 22 | 23 | IDESourceControlProjectURL 24 | github.com:CocoaFlow/Engine.git 25 | IDESourceControlProjectVersion 26 | 111 27 | IDESourceControlProjectWCCIdentifier 28 | 071DB5F7CAD227F044BD4D711846D4B6335BD28F 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | 071DB5F7CAD227F044BD4D711846D4B6335BD28F 36 | IDESourceControlWCCName 37 | Engine 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Engine.xcodeproj/project.xcworkspace/xcshareddata/Engine.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | 7AD42AA1-FE84-4A10-BF88-C257BFBD81B7 9 | IDESourceControlProjectName 10 | Engine 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | 071DB5F7CAD227F044BD4D711846D4B6335BD28F 14 | github.com:CocoaFlow/Engine.git 15 | 16 | IDESourceControlProjectPath 17 | Engine.xcodeproj 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | 071DB5F7CAD227F044BD4D711846D4B6335BD28F 21 | ../.. 22 | 23 | IDESourceControlProjectURL 24 | github.com:CocoaFlow/Engine.git 25 | IDESourceControlProjectVersion 26 | 111 27 | IDESourceControlProjectWCCIdentifier 28 | 071DB5F7CAD227F044BD4D711846D4B6335BD28F 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | 071DB5F7CAD227F044BD4D711846D4B6335BD28F 36 | IDESourceControlWCCName 37 | Engine 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Engine.xcworkspace/xcshareddata/Engine.xcscmblueprint: -------------------------------------------------------------------------------- 1 | { 2 | "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "071DB5F7CAD227F044BD4D711846D4B6335BD28F", 3 | "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : { 4 | 5 | }, 6 | "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : { 7 | "95438028B10BBB846574013D29F154A00556A9D1" : 0, 8 | "071DB5F7CAD227F044BD4D711846D4B6335BD28F" : 0, 9 | "D0725CAC6FF2D66F2C83C2C48DC12106D42DAA64" : 0 10 | }, 11 | "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "7AD42AA1-FE84-4A10-BF88-C257BFBD81B7", 12 | "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : { 13 | "95438028B10BBB846574013D29F154A00556A9D1" : "Engine\/Carthage\/Checkouts\/Nimble\/", 14 | "071DB5F7CAD227F044BD4D711846D4B6335BD28F" : "Engine", 15 | "D0725CAC6FF2D66F2C83C2C48DC12106D42DAA64" : "Engine\/Carthage\/Checkouts\/Quick\/" 16 | }, 17 | "DVTSourceControlWorkspaceBlueprintNameKey" : "Engine", 18 | "DVTSourceControlWorkspaceBlueprintVersion" : 203, 19 | "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "Engine.xcworkspace", 20 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [ 21 | { 22 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "github.com:CocoaFlow\/Engine.git", 23 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 24 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "071DB5F7CAD227F044BD4D711846D4B6335BD28F" 25 | }, 26 | { 27 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/Quick\/Nimble.git", 28 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 29 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "95438028B10BBB846574013D29F154A00556A9D1" 30 | }, 31 | { 32 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/Quick\/Quick.git", 33 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 34 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "D0725CAC6FF2D66F2C83C2C48DC12106D42DAA64" 35 | } 36 | ] 37 | } -------------------------------------------------------------------------------- /Engine.xcodeproj/xcshareddata/xcschemes/Engine-Mac.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 79 | 85 | 86 | 87 | 88 | 89 | 90 | 96 | 97 | 103 | 104 | 105 | 106 | 108 | 109 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /Engine.xcodeproj/xcshareddata/xcschemes/Engine-iOS.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 79 | 85 | 86 | 87 | 88 | 89 | 90 | 96 | 97 | 103 | 104 | 105 | 106 | 108 | 109 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2014 CocoaFlow 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Engine.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 2C0227241A52963400D5B5BC /* BareComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0227231A52963400D5B5BC /* BareComponent.swift */; }; 11 | 2C0227251A52963400D5B5BC /* BareComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0227231A52963400D5B5BC /* BareComponent.swift */; }; 12 | 2C0227271A52967200D5B5BC /* InPortSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0227261A52967200D5B5BC /* InPortSpec.swift */; }; 13 | 2C0227281A52967200D5B5BC /* InPortSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0227261A52967200D5B5BC /* InPortSpec.swift */; }; 14 | 2C02272B1A52975000D5B5BC /* OutPortSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C02272A1A52975000D5B5BC /* OutPortSpec.swift */; }; 15 | 2C02272C1A52975000D5B5BC /* OutPortSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C02272A1A52975000D5B5BC /* OutPortSpec.swift */; }; 16 | 2C0227311A52A18200D5B5BC /* NetworkSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0227301A52A18200D5B5BC /* NetworkSpec.swift */; }; 17 | 2C0227321A52A18200D5B5BC /* NetworkSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0227301A52A18200D5B5BC /* NetworkSpec.swift */; }; 18 | 2C0227341A52A23900D5B5BC /* PassThroughComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0227331A52A23900D5B5BC /* PassThroughComponent.swift */; }; 19 | 2C0227351A52A23900D5B5BC /* PassThroughComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0227331A52A23900D5B5BC /* PassThroughComponent.swift */; }; 20 | 2C0227371A52A80B00D5B5BC /* CallbackComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0227361A52A80B00D5B5BC /* CallbackComponent.swift */; }; 21 | 2C0227381A52A80B00D5B5BC /* CallbackComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0227361A52A80B00D5B5BC /* CallbackComponent.swift */; }; 22 | DA047B881A2D96290090CDDD /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA047B861A2D96290090CDDD /* Nimble.framework */; }; 23 | DA047B891A2D96290090CDDD /* Quick.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA047B871A2D96290090CDDD /* Quick.framework */; }; 24 | DA047B8D1A2D96A50090CDDD /* Nimble.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA047B861A2D96290090CDDD /* Nimble.framework */; }; 25 | DA047B8E1A2D96A50090CDDD /* Quick.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA047B871A2D96290090CDDD /* Quick.framework */; }; 26 | DA22CC0C19FD2DAF007D77E9 /* Engine.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA22CC0119FD2DAE007D77E9 /* Engine.framework */; }; 27 | DA7F11921A17CC5900B9CF77 /* Network.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7F11911A17CC5900B9CF77 /* Network.swift */; }; 28 | DA7F11931A17CC5900B9CF77 /* Network.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7F11911A17CC5900B9CF77 /* Network.swift */; }; 29 | DA7F11951A17CC8C00B9CF77 /* Component.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7F11941A17CC8C00B9CF77 /* Component.swift */; }; 30 | DA7F11961A17CC8C00B9CF77 /* Component.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7F11941A17CC8C00B9CF77 /* Component.swift */; }; 31 | DA7F11981A17CCB200B9CF77 /* Port.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7F11971A17CCB200B9CF77 /* Port.swift */; }; 32 | DA7F11991A17CCB200B9CF77 /* Port.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7F11971A17CCB200B9CF77 /* Port.swift */; }; 33 | DA7F119B1A17CCD600B9CF77 /* InPort.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7F119A1A17CCD600B9CF77 /* InPort.swift */; }; 34 | DA7F119C1A17CCD600B9CF77 /* InPort.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7F119A1A17CCD600B9CF77 /* InPort.swift */; }; 35 | DA7F119E1A17CCEC00B9CF77 /* OutPort.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7F119D1A17CCEC00B9CF77 /* OutPort.swift */; }; 36 | DA7F119F1A17CCEC00B9CF77 /* OutPort.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7F119D1A17CCEC00B9CF77 /* OutPort.swift */; }; 37 | DAEA5E3619CF1EBE004F822C /* Engine.h in Headers */ = {isa = PBXBuildFile; fileRef = DAEA5E3519CF1EBE004F822C /* Engine.h */; settings = {ATTRIBUTES = (Public, ); }; }; 38 | DAEA5E3C19CF1EBE004F822C /* Engine.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DAEA5E3019CF1EBE004F822C /* Engine.framework */; }; 39 | /* End PBXBuildFile section */ 40 | 41 | /* Begin PBXContainerItemProxy section */ 42 | DA22CC0D19FD2DAF007D77E9 /* PBXContainerItemProxy */ = { 43 | isa = PBXContainerItemProxy; 44 | containerPortal = DAEA5E2719CF1EBE004F822C /* Project object */; 45 | proxyType = 1; 46 | remoteGlobalIDString = DA22CC0019FD2DAE007D77E9; 47 | remoteInfo = Engine; 48 | }; 49 | DAEA5E3D19CF1EBE004F822C /* PBXContainerItemProxy */ = { 50 | isa = PBXContainerItemProxy; 51 | containerPortal = DAEA5E2719CF1EBE004F822C /* Project object */; 52 | proxyType = 1; 53 | remoteGlobalIDString = DAEA5E2F19CF1EBE004F822C; 54 | remoteInfo = Engine; 55 | }; 56 | /* End PBXContainerItemProxy section */ 57 | 58 | /* Begin PBXFileReference section */ 59 | 2C0227231A52963400D5B5BC /* BareComponent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BareComponent.swift; sourceTree = ""; }; 60 | 2C0227261A52967200D5B5BC /* InPortSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InPortSpec.swift; sourceTree = ""; }; 61 | 2C02272A1A52975000D5B5BC /* OutPortSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OutPortSpec.swift; sourceTree = ""; }; 62 | 2C0227301A52A18200D5B5BC /* NetworkSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkSpec.swift; sourceTree = ""; }; 63 | 2C0227331A52A23900D5B5BC /* PassThroughComponent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PassThroughComponent.swift; sourceTree = ""; }; 64 | 2C0227361A52A80B00D5B5BC /* CallbackComponent.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallbackComponent.swift; sourceTree = ""; }; 65 | DA047B861A2D96290090CDDD /* Nimble.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Nimble.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 66 | DA047B871A2D96290090CDDD /* Quick.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Quick.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 67 | DA22CC0119FD2DAE007D77E9 /* Engine.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Engine.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 68 | DA22CC0B19FD2DAE007D77E9 /* Engine-iOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Engine-iOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 69 | DA7F11911A17CC5900B9CF77 /* Network.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Network.swift; sourceTree = ""; }; 70 | DA7F11941A17CC8C00B9CF77 /* Component.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Component.swift; sourceTree = ""; }; 71 | DA7F11971A17CCB200B9CF77 /* Port.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Port.swift; sourceTree = ""; }; 72 | DA7F119A1A17CCD600B9CF77 /* InPort.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InPort.swift; sourceTree = ""; }; 73 | DA7F119D1A17CCEC00B9CF77 /* OutPort.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OutPort.swift; sourceTree = ""; }; 74 | DAEA5E3019CF1EBE004F822C /* Engine.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Engine.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 75 | DAEA5E3419CF1EBE004F822C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 76 | DAEA5E3519CF1EBE004F822C /* Engine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Engine.h; sourceTree = ""; }; 77 | DAEA5E3B19CF1EBE004F822C /* Engine-MacTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Engine-MacTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 78 | DAEA5E4119CF1EBE004F822C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 79 | /* End PBXFileReference section */ 80 | 81 | /* Begin PBXFrameworksBuildPhase section */ 82 | DA22CBFD19FD2DAE007D77E9 /* Frameworks */ = { 83 | isa = PBXFrameworksBuildPhase; 84 | buildActionMask = 2147483647; 85 | files = ( 86 | ); 87 | runOnlyForDeploymentPostprocessing = 0; 88 | }; 89 | DA22CC0819FD2DAE007D77E9 /* Frameworks */ = { 90 | isa = PBXFrameworksBuildPhase; 91 | buildActionMask = 2147483647; 92 | files = ( 93 | DA047B881A2D96290090CDDD /* Nimble.framework in Frameworks */, 94 | DA047B891A2D96290090CDDD /* Quick.framework in Frameworks */, 95 | DA22CC0C19FD2DAF007D77E9 /* Engine.framework in Frameworks */, 96 | ); 97 | runOnlyForDeploymentPostprocessing = 0; 98 | }; 99 | DAEA5E2C19CF1EBE004F822C /* Frameworks */ = { 100 | isa = PBXFrameworksBuildPhase; 101 | buildActionMask = 2147483647; 102 | files = ( 103 | ); 104 | runOnlyForDeploymentPostprocessing = 0; 105 | }; 106 | DAEA5E3819CF1EBE004F822C /* Frameworks */ = { 107 | isa = PBXFrameworksBuildPhase; 108 | buildActionMask = 2147483647; 109 | files = ( 110 | DAEA5E3C19CF1EBE004F822C /* Engine.framework in Frameworks */, 111 | DA047B8D1A2D96A50090CDDD /* Nimble.framework in Frameworks */, 112 | DA047B8E1A2D96A50090CDDD /* Quick.framework in Frameworks */, 113 | ); 114 | runOnlyForDeploymentPostprocessing = 0; 115 | }; 116 | /* End PBXFrameworksBuildPhase section */ 117 | 118 | /* Begin PBXGroup section */ 119 | DAEA5E2619CF1EBE004F822C = { 120 | isa = PBXGroup; 121 | children = ( 122 | DAEA5E3219CF1EBE004F822C /* Engine */, 123 | DAEA5E3F19CF1EBE004F822C /* EngineTests */, 124 | DAEA5E3119CF1EBE004F822C /* Products */, 125 | ); 126 | sourceTree = ""; 127 | }; 128 | DAEA5E3119CF1EBE004F822C /* Products */ = { 129 | isa = PBXGroup; 130 | children = ( 131 | DAEA5E3019CF1EBE004F822C /* Engine.framework */, 132 | DAEA5E3B19CF1EBE004F822C /* Engine-MacTests.xctest */, 133 | DA22CC0119FD2DAE007D77E9 /* Engine.framework */, 134 | DA22CC0B19FD2DAE007D77E9 /* Engine-iOSTests.xctest */, 135 | ); 136 | name = Products; 137 | sourceTree = ""; 138 | }; 139 | DAEA5E3219CF1EBE004F822C /* Engine */ = { 140 | isa = PBXGroup; 141 | children = ( 142 | DAEA5E3519CF1EBE004F822C /* Engine.h */, 143 | DAEA5E3319CF1EBE004F822C /* Supporting Files */, 144 | DA7F11911A17CC5900B9CF77 /* Network.swift */, 145 | DA7F11941A17CC8C00B9CF77 /* Component.swift */, 146 | DA7F11971A17CCB200B9CF77 /* Port.swift */, 147 | DA7F119A1A17CCD600B9CF77 /* InPort.swift */, 148 | DA7F119D1A17CCEC00B9CF77 /* OutPort.swift */, 149 | ); 150 | path = Engine; 151 | sourceTree = ""; 152 | }; 153 | DAEA5E3319CF1EBE004F822C /* Supporting Files */ = { 154 | isa = PBXGroup; 155 | children = ( 156 | DAEA5E3419CF1EBE004F822C /* Info.plist */, 157 | ); 158 | name = "Supporting Files"; 159 | sourceTree = ""; 160 | }; 161 | DAEA5E3F19CF1EBE004F822C /* EngineTests */ = { 162 | isa = PBXGroup; 163 | children = ( 164 | DAEA5E4019CF1EBE004F822C /* Supporting Files */, 165 | 2C0227261A52967200D5B5BC /* InPortSpec.swift */, 166 | 2C02272A1A52975000D5B5BC /* OutPortSpec.swift */, 167 | 2C0227301A52A18200D5B5BC /* NetworkSpec.swift */, 168 | ); 169 | path = EngineTests; 170 | sourceTree = ""; 171 | }; 172 | DAEA5E4019CF1EBE004F822C /* Supporting Files */ = { 173 | isa = PBXGroup; 174 | children = ( 175 | 2C0227231A52963400D5B5BC /* BareComponent.swift */, 176 | DA047B861A2D96290090CDDD /* Nimble.framework */, 177 | DA047B871A2D96290090CDDD /* Quick.framework */, 178 | DAEA5E4119CF1EBE004F822C /* Info.plist */, 179 | 2C0227331A52A23900D5B5BC /* PassThroughComponent.swift */, 180 | 2C0227361A52A80B00D5B5BC /* CallbackComponent.swift */, 181 | ); 182 | name = "Supporting Files"; 183 | sourceTree = ""; 184 | }; 185 | /* End PBXGroup section */ 186 | 187 | /* Begin PBXHeadersBuildPhase section */ 188 | DA22CBFE19FD2DAE007D77E9 /* Headers */ = { 189 | isa = PBXHeadersBuildPhase; 190 | buildActionMask = 2147483647; 191 | files = ( 192 | ); 193 | runOnlyForDeploymentPostprocessing = 0; 194 | }; 195 | DAEA5E2D19CF1EBE004F822C /* Headers */ = { 196 | isa = PBXHeadersBuildPhase; 197 | buildActionMask = 2147483647; 198 | files = ( 199 | DAEA5E3619CF1EBE004F822C /* Engine.h in Headers */, 200 | ); 201 | runOnlyForDeploymentPostprocessing = 0; 202 | }; 203 | /* End PBXHeadersBuildPhase section */ 204 | 205 | /* Begin PBXNativeTarget section */ 206 | DA22CC0019FD2DAE007D77E9 /* Engine-iOS */ = { 207 | isa = PBXNativeTarget; 208 | buildConfigurationList = DA22CC1819FD2DAF007D77E9 /* Build configuration list for PBXNativeTarget "Engine-iOS" */; 209 | buildPhases = ( 210 | DA22CBFC19FD2DAE007D77E9 /* Sources */, 211 | DA22CBFD19FD2DAE007D77E9 /* Frameworks */, 212 | DA22CBFE19FD2DAE007D77E9 /* Headers */, 213 | DA22CBFF19FD2DAE007D77E9 /* Resources */, 214 | ); 215 | buildRules = ( 216 | ); 217 | dependencies = ( 218 | ); 219 | name = "Engine-iOS"; 220 | productName = Engine; 221 | productReference = DA22CC0119FD2DAE007D77E9 /* Engine.framework */; 222 | productType = "com.apple.product-type.framework"; 223 | }; 224 | DA22CC0A19FD2DAE007D77E9 /* Engine-iOSTests */ = { 225 | isa = PBXNativeTarget; 226 | buildConfigurationList = DA22CC1919FD2DAF007D77E9 /* Build configuration list for PBXNativeTarget "Engine-iOSTests" */; 227 | buildPhases = ( 228 | DA22CC0719FD2DAE007D77E9 /* Sources */, 229 | DA22CC0819FD2DAE007D77E9 /* Frameworks */, 230 | DA22CC0919FD2DAE007D77E9 /* Resources */, 231 | ); 232 | buildRules = ( 233 | ); 234 | dependencies = ( 235 | DA22CC0E19FD2DAF007D77E9 /* PBXTargetDependency */, 236 | ); 237 | name = "Engine-iOSTests"; 238 | productName = EngineTests; 239 | productReference = DA22CC0B19FD2DAE007D77E9 /* Engine-iOSTests.xctest */; 240 | productType = "com.apple.product-type.bundle.unit-test"; 241 | }; 242 | DAEA5E2F19CF1EBE004F822C /* Engine-Mac */ = { 243 | isa = PBXNativeTarget; 244 | buildConfigurationList = DAEA5E4619CF1EBE004F822C /* Build configuration list for PBXNativeTarget "Engine-Mac" */; 245 | buildPhases = ( 246 | DAEA5E2B19CF1EBE004F822C /* Sources */, 247 | DAEA5E2C19CF1EBE004F822C /* Frameworks */, 248 | DAEA5E2D19CF1EBE004F822C /* Headers */, 249 | DAEA5E2E19CF1EBE004F822C /* Resources */, 250 | ); 251 | buildRules = ( 252 | ); 253 | dependencies = ( 254 | ); 255 | name = "Engine-Mac"; 256 | productName = Engine; 257 | productReference = DAEA5E3019CF1EBE004F822C /* Engine.framework */; 258 | productType = "com.apple.product-type.framework"; 259 | }; 260 | DAEA5E3A19CF1EBE004F822C /* Engine-MacTests */ = { 261 | isa = PBXNativeTarget; 262 | buildConfigurationList = DAEA5E4919CF1EBE004F822C /* Build configuration list for PBXNativeTarget "Engine-MacTests" */; 263 | buildPhases = ( 264 | DAEA5E3719CF1EBE004F822C /* Sources */, 265 | DAEA5E3819CF1EBE004F822C /* Frameworks */, 266 | DAEA5E3919CF1EBE004F822C /* Resources */, 267 | ); 268 | buildRules = ( 269 | ); 270 | dependencies = ( 271 | DAEA5E3E19CF1EBE004F822C /* PBXTargetDependency */, 272 | ); 273 | name = "Engine-MacTests"; 274 | productName = EngineTests; 275 | productReference = DAEA5E3B19CF1EBE004F822C /* Engine-MacTests.xctest */; 276 | productType = "com.apple.product-type.bundle.unit-test"; 277 | }; 278 | /* End PBXNativeTarget section */ 279 | 280 | /* Begin PBXProject section */ 281 | DAEA5E2719CF1EBE004F822C /* Project object */ = { 282 | isa = PBXProject; 283 | attributes = { 284 | LastSwiftMigration = 0700; 285 | LastSwiftUpdateCheck = 0700; 286 | LastUpgradeCheck = 0700; 287 | ORGANIZATIONNAME = CocoaFlow; 288 | TargetAttributes = { 289 | DA22CC0019FD2DAE007D77E9 = { 290 | CreatedOnToolsVersion = 6.1; 291 | }; 292 | DA22CC0A19FD2DAE007D77E9 = { 293 | CreatedOnToolsVersion = 6.1; 294 | }; 295 | DAEA5E2F19CF1EBE004F822C = { 296 | CreatedOnToolsVersion = 6.1; 297 | }; 298 | DAEA5E3A19CF1EBE004F822C = { 299 | CreatedOnToolsVersion = 6.1; 300 | }; 301 | }; 302 | }; 303 | buildConfigurationList = DAEA5E2A19CF1EBE004F822C /* Build configuration list for PBXProject "Engine" */; 304 | compatibilityVersion = "Xcode 3.2"; 305 | developmentRegion = English; 306 | hasScannedForEncodings = 0; 307 | knownRegions = ( 308 | en, 309 | ); 310 | mainGroup = DAEA5E2619CF1EBE004F822C; 311 | productRefGroup = DAEA5E3119CF1EBE004F822C /* Products */; 312 | projectDirPath = ""; 313 | projectRoot = ""; 314 | targets = ( 315 | DAEA5E2F19CF1EBE004F822C /* Engine-Mac */, 316 | DAEA5E3A19CF1EBE004F822C /* Engine-MacTests */, 317 | DA22CC0019FD2DAE007D77E9 /* Engine-iOS */, 318 | DA22CC0A19FD2DAE007D77E9 /* Engine-iOSTests */, 319 | ); 320 | }; 321 | /* End PBXProject section */ 322 | 323 | /* Begin PBXResourcesBuildPhase section */ 324 | DA22CBFF19FD2DAE007D77E9 /* Resources */ = { 325 | isa = PBXResourcesBuildPhase; 326 | buildActionMask = 2147483647; 327 | files = ( 328 | ); 329 | runOnlyForDeploymentPostprocessing = 0; 330 | }; 331 | DA22CC0919FD2DAE007D77E9 /* Resources */ = { 332 | isa = PBXResourcesBuildPhase; 333 | buildActionMask = 2147483647; 334 | files = ( 335 | ); 336 | runOnlyForDeploymentPostprocessing = 0; 337 | }; 338 | DAEA5E2E19CF1EBE004F822C /* Resources */ = { 339 | isa = PBXResourcesBuildPhase; 340 | buildActionMask = 2147483647; 341 | files = ( 342 | ); 343 | runOnlyForDeploymentPostprocessing = 0; 344 | }; 345 | DAEA5E3919CF1EBE004F822C /* Resources */ = { 346 | isa = PBXResourcesBuildPhase; 347 | buildActionMask = 2147483647; 348 | files = ( 349 | ); 350 | runOnlyForDeploymentPostprocessing = 0; 351 | }; 352 | /* End PBXResourcesBuildPhase section */ 353 | 354 | /* Begin PBXSourcesBuildPhase section */ 355 | DA22CBFC19FD2DAE007D77E9 /* Sources */ = { 356 | isa = PBXSourcesBuildPhase; 357 | buildActionMask = 2147483647; 358 | files = ( 359 | DA7F11991A17CCB200B9CF77 /* Port.swift in Sources */, 360 | DA7F119F1A17CCEC00B9CF77 /* OutPort.swift in Sources */, 361 | DA7F11931A17CC5900B9CF77 /* Network.swift in Sources */, 362 | DA7F11961A17CC8C00B9CF77 /* Component.swift in Sources */, 363 | DA7F119C1A17CCD600B9CF77 /* InPort.swift in Sources */, 364 | ); 365 | runOnlyForDeploymentPostprocessing = 0; 366 | }; 367 | DA22CC0719FD2DAE007D77E9 /* Sources */ = { 368 | isa = PBXSourcesBuildPhase; 369 | buildActionMask = 2147483647; 370 | files = ( 371 | 2C0227251A52963400D5B5BC /* BareComponent.swift in Sources */, 372 | 2C0227321A52A18200D5B5BC /* NetworkSpec.swift in Sources */, 373 | 2C0227281A52967200D5B5BC /* InPortSpec.swift in Sources */, 374 | 2C0227351A52A23900D5B5BC /* PassThroughComponent.swift in Sources */, 375 | 2C0227381A52A80B00D5B5BC /* CallbackComponent.swift in Sources */, 376 | 2C02272C1A52975000D5B5BC /* OutPortSpec.swift in Sources */, 377 | ); 378 | runOnlyForDeploymentPostprocessing = 0; 379 | }; 380 | DAEA5E2B19CF1EBE004F822C /* Sources */ = { 381 | isa = PBXSourcesBuildPhase; 382 | buildActionMask = 2147483647; 383 | files = ( 384 | DA7F11981A17CCB200B9CF77 /* Port.swift in Sources */, 385 | DA7F119E1A17CCEC00B9CF77 /* OutPort.swift in Sources */, 386 | DA7F11921A17CC5900B9CF77 /* Network.swift in Sources */, 387 | DA7F11951A17CC8C00B9CF77 /* Component.swift in Sources */, 388 | DA7F119B1A17CCD600B9CF77 /* InPort.swift in Sources */, 389 | ); 390 | runOnlyForDeploymentPostprocessing = 0; 391 | }; 392 | DAEA5E3719CF1EBE004F822C /* Sources */ = { 393 | isa = PBXSourcesBuildPhase; 394 | buildActionMask = 2147483647; 395 | files = ( 396 | 2C0227241A52963400D5B5BC /* BareComponent.swift in Sources */, 397 | 2C0227311A52A18200D5B5BC /* NetworkSpec.swift in Sources */, 398 | 2C0227271A52967200D5B5BC /* InPortSpec.swift in Sources */, 399 | 2C0227341A52A23900D5B5BC /* PassThroughComponent.swift in Sources */, 400 | 2C0227371A52A80B00D5B5BC /* CallbackComponent.swift in Sources */, 401 | 2C02272B1A52975000D5B5BC /* OutPortSpec.swift in Sources */, 402 | ); 403 | runOnlyForDeploymentPostprocessing = 0; 404 | }; 405 | /* End PBXSourcesBuildPhase section */ 406 | 407 | /* Begin PBXTargetDependency section */ 408 | DA22CC0E19FD2DAF007D77E9 /* PBXTargetDependency */ = { 409 | isa = PBXTargetDependency; 410 | target = DA22CC0019FD2DAE007D77E9 /* Engine-iOS */; 411 | targetProxy = DA22CC0D19FD2DAF007D77E9 /* PBXContainerItemProxy */; 412 | }; 413 | DAEA5E3E19CF1EBE004F822C /* PBXTargetDependency */ = { 414 | isa = PBXTargetDependency; 415 | target = DAEA5E2F19CF1EBE004F822C /* Engine-Mac */; 416 | targetProxy = DAEA5E3D19CF1EBE004F822C /* PBXContainerItemProxy */; 417 | }; 418 | /* End PBXTargetDependency section */ 419 | 420 | /* Begin XCBuildConfiguration section */ 421 | DA22CC1419FD2DAF007D77E9 /* Debug */ = { 422 | isa = XCBuildConfiguration; 423 | buildSettings = { 424 | CLANG_ENABLE_MODULES = YES; 425 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 426 | DEFINES_MODULE = YES; 427 | DYLIB_COMPATIBILITY_VERSION = 1; 428 | DYLIB_CURRENT_VERSION = 1; 429 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 430 | GCC_PREPROCESSOR_DEFINITIONS = ( 431 | "DEBUG=1", 432 | "$(inherited)", 433 | ); 434 | INFOPLIST_FILE = Engine/Info.plist; 435 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 436 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 437 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 438 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoaflow.$(PRODUCT_NAME:rfc1034identifier)"; 439 | PRODUCT_NAME = Engine; 440 | SDKROOT = iphoneos; 441 | SKIP_INSTALL = YES; 442 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 443 | TARGETED_DEVICE_FAMILY = "1,2"; 444 | }; 445 | name = Debug; 446 | }; 447 | DA22CC1519FD2DAF007D77E9 /* Release */ = { 448 | isa = XCBuildConfiguration; 449 | buildSettings = { 450 | CLANG_ENABLE_MODULES = YES; 451 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 452 | DEFINES_MODULE = YES; 453 | DYLIB_COMPATIBILITY_VERSION = 1; 454 | DYLIB_CURRENT_VERSION = 1; 455 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 456 | INFOPLIST_FILE = Engine/Info.plist; 457 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 458 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 459 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 460 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoaflow.$(PRODUCT_NAME:rfc1034identifier)"; 461 | PRODUCT_NAME = Engine; 462 | SDKROOT = iphoneos; 463 | SKIP_INSTALL = YES; 464 | TARGETED_DEVICE_FAMILY = "1,2"; 465 | VALIDATE_PRODUCT = YES; 466 | }; 467 | name = Release; 468 | }; 469 | DA22CC1619FD2DAF007D77E9 /* Debug */ = { 470 | isa = XCBuildConfiguration; 471 | buildSettings = { 472 | CLANG_ENABLE_MODULES = YES; 473 | FRAMEWORK_SEARCH_PATHS = ( 474 | "$(SDKROOT)/Developer/Library/Frameworks", 475 | "$(inherited)", 476 | ); 477 | GCC_PREPROCESSOR_DEFINITIONS = ( 478 | "DEBUG=1", 479 | "$(inherited)", 480 | ); 481 | INFOPLIST_FILE = EngineTests/Info.plist; 482 | IPHONEOS_DEPLOYMENT_TARGET = 8.1; 483 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 484 | PRODUCT_BUNDLE_IDENTIFIER = "com.cocoaflow.$(PRODUCT_NAME:rfc1034identifier)"; 485 | PRODUCT_NAME = "$(TARGET_NAME)"; 486 | SDKROOT = iphoneos; 487 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 488 | }; 489 | name = Debug; 490 | }; 491 | DA22CC1719FD2DAF007D77E9 /* Release */ = { 492 | isa = XCBuildConfiguration; 493 | buildSettings = { 494 | CLANG_ENABLE_MODULES = YES; 495 | FRAMEWORK_SEARCH_PATHS = ( 496 | "$(SDKROOT)/Developer/Library/Frameworks", 497 | "$(inherited)", 498 | ); 499 | INFOPLIST_FILE = EngineTests/Info.plist; 500 | IPHONEOS_DEPLOYMENT_TARGET = 8.1; 501 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 502 | PRODUCT_BUNDLE_IDENTIFIER = "com.cocoaflow.$(PRODUCT_NAME:rfc1034identifier)"; 503 | PRODUCT_NAME = "$(TARGET_NAME)"; 504 | SDKROOT = iphoneos; 505 | VALIDATE_PRODUCT = YES; 506 | }; 507 | name = Release; 508 | }; 509 | DAEA5E4419CF1EBE004F822C /* Debug */ = { 510 | isa = XCBuildConfiguration; 511 | buildSettings = { 512 | ALWAYS_SEARCH_USER_PATHS = NO; 513 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 514 | CLANG_CXX_LIBRARY = "libc++"; 515 | CLANG_ENABLE_MODULES = YES; 516 | CLANG_ENABLE_OBJC_ARC = YES; 517 | CLANG_WARN_BOOL_CONVERSION = YES; 518 | CLANG_WARN_CONSTANT_CONVERSION = YES; 519 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 520 | CLANG_WARN_EMPTY_BODY = YES; 521 | CLANG_WARN_ENUM_CONVERSION = YES; 522 | CLANG_WARN_INT_CONVERSION = YES; 523 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 524 | CLANG_WARN_UNREACHABLE_CODE = YES; 525 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 526 | COPY_PHASE_STRIP = NO; 527 | CURRENT_PROJECT_VERSION = 1; 528 | ENABLE_STRICT_OBJC_MSGSEND = YES; 529 | ENABLE_TESTABILITY = YES; 530 | GCC_C_LANGUAGE_STANDARD = gnu99; 531 | GCC_DYNAMIC_NO_PIC = NO; 532 | GCC_OPTIMIZATION_LEVEL = 0; 533 | GCC_PREPROCESSOR_DEFINITIONS = ( 534 | "DEBUG=1", 535 | "$(inherited)", 536 | ); 537 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 538 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 539 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 540 | GCC_WARN_UNDECLARED_SELECTOR = YES; 541 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 542 | GCC_WARN_UNUSED_FUNCTION = YES; 543 | GCC_WARN_UNUSED_VARIABLE = YES; 544 | MACOSX_DEPLOYMENT_TARGET = 10.9; 545 | MTL_ENABLE_DEBUG_INFO = YES; 546 | ONLY_ACTIVE_ARCH = YES; 547 | SDKROOT = macosx; 548 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 549 | VERSIONING_SYSTEM = "apple-generic"; 550 | VERSION_INFO_PREFIX = ""; 551 | }; 552 | name = Debug; 553 | }; 554 | DAEA5E4519CF1EBE004F822C /* Release */ = { 555 | isa = XCBuildConfiguration; 556 | buildSettings = { 557 | ALWAYS_SEARCH_USER_PATHS = NO; 558 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 559 | CLANG_CXX_LIBRARY = "libc++"; 560 | CLANG_ENABLE_MODULES = YES; 561 | CLANG_ENABLE_OBJC_ARC = YES; 562 | CLANG_WARN_BOOL_CONVERSION = YES; 563 | CLANG_WARN_CONSTANT_CONVERSION = YES; 564 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 565 | CLANG_WARN_EMPTY_BODY = YES; 566 | CLANG_WARN_ENUM_CONVERSION = YES; 567 | CLANG_WARN_INT_CONVERSION = YES; 568 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 569 | CLANG_WARN_UNREACHABLE_CODE = YES; 570 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 571 | COPY_PHASE_STRIP = YES; 572 | CURRENT_PROJECT_VERSION = 1; 573 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 574 | ENABLE_NS_ASSERTIONS = NO; 575 | ENABLE_STRICT_OBJC_MSGSEND = YES; 576 | GCC_C_LANGUAGE_STANDARD = gnu99; 577 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 578 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 579 | GCC_WARN_UNDECLARED_SELECTOR = YES; 580 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 581 | GCC_WARN_UNUSED_FUNCTION = YES; 582 | GCC_WARN_UNUSED_VARIABLE = YES; 583 | MACOSX_DEPLOYMENT_TARGET = 10.9; 584 | MTL_ENABLE_DEBUG_INFO = NO; 585 | SDKROOT = macosx; 586 | VERSIONING_SYSTEM = "apple-generic"; 587 | VERSION_INFO_PREFIX = ""; 588 | }; 589 | name = Release; 590 | }; 591 | DAEA5E4719CF1EBE004F822C /* Debug */ = { 592 | isa = XCBuildConfiguration; 593 | buildSettings = { 594 | CLANG_ENABLE_MODULES = YES; 595 | COMBINE_HIDPI_IMAGES = YES; 596 | DEFINES_MODULE = YES; 597 | DYLIB_COMPATIBILITY_VERSION = 1; 598 | DYLIB_CURRENT_VERSION = 1; 599 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 600 | FRAMEWORK_VERSION = A; 601 | INFOPLIST_FILE = Engine/Info.plist; 602 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 603 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; 604 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoaflow.$(PRODUCT_NAME:rfc1034identifier)"; 605 | PRODUCT_NAME = Engine; 606 | SKIP_INSTALL = YES; 607 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 608 | }; 609 | name = Debug; 610 | }; 611 | DAEA5E4819CF1EBE004F822C /* Release */ = { 612 | isa = XCBuildConfiguration; 613 | buildSettings = { 614 | CLANG_ENABLE_MODULES = YES; 615 | COMBINE_HIDPI_IMAGES = YES; 616 | DEFINES_MODULE = YES; 617 | DYLIB_COMPATIBILITY_VERSION = 1; 618 | DYLIB_CURRENT_VERSION = 1; 619 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 620 | FRAMEWORK_VERSION = A; 621 | INFOPLIST_FILE = Engine/Info.plist; 622 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 623 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; 624 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoaflow.$(PRODUCT_NAME:rfc1034identifier)"; 625 | PRODUCT_NAME = Engine; 626 | SKIP_INSTALL = YES; 627 | }; 628 | name = Release; 629 | }; 630 | DAEA5E4A19CF1EBE004F822C /* Debug */ = { 631 | isa = XCBuildConfiguration; 632 | buildSettings = { 633 | CLANG_ENABLE_MODULES = YES; 634 | COMBINE_HIDPI_IMAGES = YES; 635 | FRAMEWORK_SEARCH_PATHS = ( 636 | "$(DEVELOPER_FRAMEWORKS_DIR)", 637 | "$(inherited)", 638 | ); 639 | GCC_PREPROCESSOR_DEFINITIONS = ( 640 | "DEBUG=1", 641 | "$(inherited)", 642 | ); 643 | INFOPLIST_FILE = EngineTests/Info.plist; 644 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; 645 | PRODUCT_BUNDLE_IDENTIFIER = "com.cocoaflow.$(PRODUCT_NAME:rfc1034identifier)"; 646 | PRODUCT_NAME = "$(TARGET_NAME)"; 647 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 648 | }; 649 | name = Debug; 650 | }; 651 | DAEA5E4B19CF1EBE004F822C /* Release */ = { 652 | isa = XCBuildConfiguration; 653 | buildSettings = { 654 | CLANG_ENABLE_MODULES = YES; 655 | COMBINE_HIDPI_IMAGES = YES; 656 | FRAMEWORK_SEARCH_PATHS = ( 657 | "$(DEVELOPER_FRAMEWORKS_DIR)", 658 | "$(inherited)", 659 | ); 660 | INFOPLIST_FILE = EngineTests/Info.plist; 661 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; 662 | PRODUCT_BUNDLE_IDENTIFIER = "com.cocoaflow.$(PRODUCT_NAME:rfc1034identifier)"; 663 | PRODUCT_NAME = "$(TARGET_NAME)"; 664 | }; 665 | name = Release; 666 | }; 667 | /* End XCBuildConfiguration section */ 668 | 669 | /* Begin XCConfigurationList section */ 670 | DA22CC1819FD2DAF007D77E9 /* Build configuration list for PBXNativeTarget "Engine-iOS" */ = { 671 | isa = XCConfigurationList; 672 | buildConfigurations = ( 673 | DA22CC1419FD2DAF007D77E9 /* Debug */, 674 | DA22CC1519FD2DAF007D77E9 /* Release */, 675 | ); 676 | defaultConfigurationIsVisible = 0; 677 | defaultConfigurationName = Release; 678 | }; 679 | DA22CC1919FD2DAF007D77E9 /* Build configuration list for PBXNativeTarget "Engine-iOSTests" */ = { 680 | isa = XCConfigurationList; 681 | buildConfigurations = ( 682 | DA22CC1619FD2DAF007D77E9 /* Debug */, 683 | DA22CC1719FD2DAF007D77E9 /* Release */, 684 | ); 685 | defaultConfigurationIsVisible = 0; 686 | defaultConfigurationName = Release; 687 | }; 688 | DAEA5E2A19CF1EBE004F822C /* Build configuration list for PBXProject "Engine" */ = { 689 | isa = XCConfigurationList; 690 | buildConfigurations = ( 691 | DAEA5E4419CF1EBE004F822C /* Debug */, 692 | DAEA5E4519CF1EBE004F822C /* Release */, 693 | ); 694 | defaultConfigurationIsVisible = 0; 695 | defaultConfigurationName = Release; 696 | }; 697 | DAEA5E4619CF1EBE004F822C /* Build configuration list for PBXNativeTarget "Engine-Mac" */ = { 698 | isa = XCConfigurationList; 699 | buildConfigurations = ( 700 | DAEA5E4719CF1EBE004F822C /* Debug */, 701 | DAEA5E4819CF1EBE004F822C /* Release */, 702 | ); 703 | defaultConfigurationIsVisible = 0; 704 | defaultConfigurationName = Release; 705 | }; 706 | DAEA5E4919CF1EBE004F822C /* Build configuration list for PBXNativeTarget "Engine-MacTests" */ = { 707 | isa = XCConfigurationList; 708 | buildConfigurations = ( 709 | DAEA5E4A19CF1EBE004F822C /* Debug */, 710 | DAEA5E4B19CF1EBE004F822C /* Release */, 711 | ); 712 | defaultConfigurationIsVisible = 0; 713 | defaultConfigurationName = Release; 714 | }; 715 | /* End XCConfigurationList section */ 716 | }; 717 | rootObject = DAEA5E2719CF1EBE004F822C /* Project object */; 718 | } 719 | --------------------------------------------------------------------------------