summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--swift/Rakefile39
-rw-r--r--swift/ice.xcodeproj/project.pbxproj20018
-rw-r--r--swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme10
-rw-r--r--swift/ice.xcodeproj/xcshareddata/xcschemes/Ice macOS.xcscheme10
4 files changed, 10103 insertions, 9974 deletions
diff --git a/swift/Rakefile b/swift/Rakefile
index 39ef4905714..909f5498bd6 100644
--- a/swift/Rakefile
+++ b/swift/Rakefile
@@ -2,6 +2,18 @@
require 'xcodeproj'
+module Xcodeproj
+ class Project
+ module Object
+ # This class represents a custom build rule of a Target.
+ #
+ class PBXBuildRule < AbstractObject
+ attribute :dependency_file, String
+ end
+ end
+ end
+end
+
$projectVersion = "3.7.5"
$macOSDeploymentTarget = "10.14"
$iOSDeploymentTarget = "12.0"
@@ -613,21 +625,34 @@ def target_add_slice2swift_build_rule(project, target, projectPrefix, srcPrefix:
if test then
rule.script = <<~EOF
#{slic2swift}
+ "$SLICE2SWIFT" -I"$SRCROOT/../slice" -I"$INPUT_FILE_DIR" \
+ --depend --depend-file "$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d" "$INPUT_FILE_PATH"
+
+ echo "$INPUT_FILE_BASE.ice: $SLICE2SWIFT" >> "$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d"
+
"$SLICE2SWIFT" -I"$SRCROOT/../slice" -I"$INPUT_FILE_DIR" --output-dir "$DERIVED_FILE_DIR" "$INPUT_FILE_PATH"
EOF
rule.input_files = find_files(srcPrefix, ["*.ice"]).map { |p| "#{srcPrefix}/#{p}" }
rule.output_files = ["$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift"]
+ rule.dependency_file = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"
else
rule.script = <<~EOF
#{slic2swift}
BASENAME=$(basename -- "$INPUT_FILE_PATH")
BASENAME="${BASENAME%.*}"
mkdir -p "$DERIVED_FILE_DIR/#{projectPrefix}"
- "$SLICE2SWIFT" -I"$SRCROOT/../slice" -I"$INPUT_FILE_DIR" --output-dir "$DERIVED_FILE_DIR/#{projectPrefix}" "$INPUT_FILE_PATH"
+ "$SLICE2SWIFT" -I"$SRCROOT/../slice" -I"$INPUT_FILE_DIR" \
+ --depend --depend-file "$DERIVED_FILE_DIR/#{projectPrefix}_$INPUT_FILE_BASE.d" "$INPUT_FILE_PATH"
+
+ echo "$INPUT_FILE_BASE.ice: $SLICE2SWIFT" >> "$DERIVED_FILE_DIR/#{projectPrefix}_$INPUT_FILE_BASE.d"
+
+ "$SLICE2SWIFT" -I"$SRCROOT/../slice" -I"$INPUT_FILE_DIR" --output-dir "$DERIVED_FILE_DIR/#{projectPrefix}" \
+ "$INPUT_FILE_PATH"
mv "$DERIVED_FILE_DIR/#{projectPrefix}/$BASENAME.swift" "$DERIVED_FILE_DIR/#{projectPrefix}_$BASENAME.swift"
EOF
rule.input_files = find_files(srcPrefix, ["*.ice"]).map { |p| "$SRCROOT/#{srcPrefix}/#{p}" }
rule.output_files = ["$(DERIVED_FILE_DIR)/#{projectPrefix}_$(INPUT_FILE_BASE).swift"]
+ rule.dependency_file = "$(DERIVED_FILE_DIR)/#{projectPrefix}_$(INPUT_FILE_BASE).d"
end
target.build_rules << rule
end
@@ -659,7 +684,16 @@ def target_add_slice2cpp_build_rule(project, target, prefix)
BASENAME=$(basename -- "$INPUT_FILE_PATH")
BASENAME="${BASENAME%.*}"
mkdir -p "$DERIVED_FILE_DIR/#{prefix}"
- $SLICE2CPP -I"$SRCROOT/../slice" -D ICE_SWIFT --include-dir #{prefix} --output-dir "$DERIVED_FILE_DIR/#{prefix}" "$INPUT_FILE_PATH"
+ $SLICE2CPP -I"$SRCROOT/../slice" -D ICE_SWIFT --include-dir #{prefix} \
+ --output-dir "$DERIVED_FILE_DIR/#{prefix}" \
+ --depend --depend-file "$DERIVED_FILE_DIR/#{prefix}/$INPUT_FILE_BASE.d" \
+ "$INPUT_FILE_PATH"
+
+ echo "$INPUT_FILE_BASE.ice: $SLICE2CPP" >> "$DERIVED_FILE_DIR/#{prefix}/$INPUT_FILE_BASE.d"
+
+ $SLICE2CPP -I"$SRCROOT/../slice" -D ICE_SWIFT --include-dir #{prefix} \
+ --output-dir "$DERIVED_FILE_DIR/#{prefix}" \
+ "$INPUT_FILE_PATH"
mkdir -p "$SYMROOT/$PLATFORM_NAME/include/#{prefix}"
mv "$DERIVED_FILE_DIR/#{prefix}/$BASENAME.h" "$SYMROOT/$PLATFORM_NAME/include/#{prefix}/$BASENAME.h"
EOF
@@ -669,6 +703,7 @@ def target_add_slice2cpp_build_rule(project, target, prefix)
rule.input_files = inputs.map { |p|
"$SRCROOT/../slice/#{prefix}/#{p}.ice"
}
+ rule.dependency_file= "$(DERIVED_FILE_DIR)/#{prefix}/$(INPUT_FILE_BASE).d"
target.build_rules << rule
end
diff --git a/swift/ice.xcodeproj/project.pbxproj b/swift/ice.xcodeproj/project.pbxproj
index a3984092fd7..9eb1b7948f0 100644
--- a/swift/ice.xcodeproj/project.pbxproj
+++ b/swift/ice.xcodeproj/project.pbxproj
@@ -7,2082 +7,2200 @@
objects = {
/* Begin PBXBuildFile section */
- 002B4B51CE7F23C20EB992F3 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5F9951678F470F12C213085 /* Instance.cpp */; };
- 00581EF9117C31B6A4E8FA38 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 0070621DDA54D90071353B1A /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9B074A6A8908048DAE95EBCA /* Test.ice */; };
- 00AEDE024F314B781DC98445 /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D17047642664F3ADD4EF85D9 /* FormatType.swift */; };
- 00C5A0AF8A667C5772085C6F /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17440D04F7DAE85D3D43E242 /* BlobjectAsync.swift */; };
- 00F422904A625A9F4FF94969 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 70BF5BD1E0899C46253D13EE /* RouterF.ice */; };
- 0120489ADBD0D3D098FE3777 /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0364945BE497EB41753D11E1 /* FactoryTableInit.cpp */; };
- 0145884ED398E9345E7F38CB /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 015B780909C5FCFADD50590E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 01BAD06C13EB6A3DA5A6A408 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D0DC93B091DBEFF7FE8E604F /* Test.ice */; };
- 021174749D707C869B7A369F /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97BB4C9ABE94E3DC15D15C74 /* WSConnector.cpp */; };
- 022E39BD4FD8D06110F1AA62 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 41C480006CA91E286A5DCD77 /* ServerPrivate.ice */; };
- 02AC9A1AE9BFF01E4275C2FA /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 02B3F95D456A7B97551C31D6 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 02D2DCF2D758DE15A572E72F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 02E4EB061167574086A1422F /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D1875F559842A9D7E7AAFEA /* UdpEndpointI.cpp */; };
- 03252F832C08D31B9F39C617 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D99433C106AE10804BD3CFDA /* Test.ice */; };
- 038DF8CD7484D7B5CD06C570 /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AC337C228145DA2BDA97C70 /* WSEndpoint.cpp */; };
- 03ADDE4339DE9FAFAFC29708 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = DD8BE18EC250A1A64787067E /* Test.ice */; };
- 03E204E3B0B88D2C335FB40C /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDCA8B1E59D2612ED83D81BB /* CommunicatorI.swift */; };
- 0409A3A313961A42AF4D6F90 /* ConnectionF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B8DC2C52549E7BE254AE5AD5 /* ConnectionF.ice */; };
- 040CEF83AB1C5FB4AC66C191 /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63786455698CC010D5E23870 /* RouterInfo.cpp */; };
- 040E185DB065C5FD84A41E3C /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = B765395F779020FC5A5487F2 /* Process.mm */; };
- 0414432482BE28DB14FB3B27 /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1783729E7EF7417321B68CBA /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 0429332E8DAFC6A90C320838 /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = A02E61AC41C5A07BE70796C5 /* EndpointInfoFactory.swift */; };
- 04ACE36995C8D84CC2499A1B /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5A5BCF475EA7FB8C43E528DB /* LocalObject.mm */; };
- 04ADDFB95B1FB44902A997D5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 76699AC2F244DA402D7D78F9 /* Test.ice */; };
- 05029BD03DAF176150C7E92C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC8D81DC4E22E249C0DD3842 /* Server.swift */; };
- 052732AFD9B04C3B58E3B501 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = 94855C851EE72D36CB469925 /* certs */; };
- 05588123334BA3D12EBCF886 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF2ED98FA8B64E0AADEFAB7D /* ConnectionI.swift */; };
- 05602C9E1C454250AB0D64BB /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9CC6A0D58EF34E75E8886700 /* Thread.cpp */; };
- 0563FD5166A0D33DA5F351B9 /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76D2C9478917EE70EA6C1EC8 /* Connection.mm */; };
- 05E476A174DBBF39EB61CAAB /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9CAE747331B4404A63FE18A /* Collocated.swift */; };
- 06579484500F82F33E259464 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 06920315CC83BAB86D795E5D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 06B9D6BD93EB834C100B6F94 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 06E2339341AB1E54B393689C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDCEDCD14224AE9E77D6485D /* TestI.swift */; };
- 06E3CCC4965BC5D8977239DD /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6D1875F559842A9D7E7AAFEA /* UdpEndpointI.cpp */; };
- 074E2AF046CE3EE08DFFDEE0 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 22BFB6FDB6B68D3C3AFE5007 /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 07CC5B26F406B3A9C79F7CAA /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2703F6DB8B1EDE26B743784A /* LocatorI.cpp */; };
- 07D23F325FD34745EECD49F2 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47F5CF26C0AE1F89B6636870 /* AllTests.swift */; };
- 07D657393862A2857C09E437 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 422312FEC2781FF24FC912DC /* AllTests.swift */; };
- 083D60D31B1B10C2BD6DAC9D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DE81360A81D49D120B6B4B5 /* Test.ice */; };
- 08561EEC1D308D4FE5EA548F /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3EAF7BFE9FA00B536E33DBF9 /* Registry.ice */; };
- 08A0810B507EB60AD7D372AB /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48274B4B5C7A372D63FBDBDD /* Client.swift */; };
- 08A586EE6A3C5F99771378AB /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C54D77862357F5D5EBB46E3 /* AllTests.swift */; };
- 091088D7936D389D5F01A6A7 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DBD11846C6A0B8CB5794F9F /* Network.cpp */; };
- 09251D573514ACD0BDD19081 /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = B99D534A8CA5522365B9B4D7 /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 094962416E856DC118DC9CB9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A59F882486D21E98C368D3C8 /* Client.swift */; };
- 097CA20550662FDDFA36595B /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CB079155D6B2B714CD02C702 /* ConsoleUtil.cpp */; };
- 098E370ACDC471B3DBA66DCE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 099D3E2EA64617F3C89C70F8 /* Communicator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 22B8F11BF7DF3C7A9FCC50EE /* Communicator.ice */; };
- 09C4A08E6CC1ED15FB853576 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A69BC365372EB27631A886EC /* ServerAMD.swift */; };
- 0A0B9D26FF1F4C0534F99FE8 /* Connector.mm in Sources */ = {isa = PBXBuildFile; fileRef = C69408EA18903F90CF12E137 /* Connector.mm */; };
- 0A1E9C080FC5BCE647B99CEF /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B57BB1B00847273287A8173F /* Timer.cpp */; };
- 0A4AA5D48CEA9FEB0FA346E2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 744D55EEF1A3510BDDD8BD3A /* Test.ice */; };
- 0A8986CB14AA829985256EAA /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FF0F98E6AF1E0870BEB89E7A /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 0AAADC97B9827FFBD47A3929 /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60FC1B97E8333ECD56618EFD /* MetricsObserverI.cpp */; };
- 0AAB923DAA7C77D3F2C5E92D /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 0ACB571EBDFEEED622A41D81 /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5FBA5C3DA77A619F58782F7 /* PropertiesAdminI.swift */; };
- 0AD4B5BA4887EE267133FAE9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FD34596289445D5D953E2D1 /* Server.swift */; };
- 0B0031E7709A813B802724B6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 0B512C4A3FC6B36B1B39F4F1 /* CommunicatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = CD14CFE67744C5F820EF9517 /* CommunicatorF.ice */; };
- 0B8694FA9A5E762BCFE37DEA /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 09CD9498FF6E5A10C898C57D /* TraceUtil.mm */; };
- 0BAB33B4AD68AB2B344A61A0 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 341C025BDAE25FEE0B7FC5BC /* RemoteLogger.ice */; };
- 0BF43289F618A298D2FF025E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = FA07C456CDC45581C13A3139 /* Test.ice */; };
- 0C0AC23B036867DD0D098E4A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 0C631055A72AE4ED31C6FD58 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 0C84F4F63B8F2FFC65B61772 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 889F33329EA3D8479FFC0479 /* Client.swift */; };
- 0CAA00030C5BD8F79E51DD0D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 476ABE3234D05812619CD33C /* AllTests.swift */; };
- 0CE48A28E4A1C709526351C5 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30EFA157E8237328FE7BBC82 /* AllTests.swift */; };
- 0D12FEB5796F0C9678EE2C2B /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30EB9BBF93E3D0A41ECF8A7E /* CtrlCHandler.cpp */; };
- 0D2B3A1667F8D25E92449989 /* ImplicitContext.ice in Sources */ = {isa = PBXBuildFile; fileRef = AE9D2B607B5204A4D8E9624F /* ImplicitContext.ice */; };
- 0DE422437BB4476D96E42ADD /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 20E8394869BBE3A6A0E8B73A /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 0E11037FB96714061852E600 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8BC8E349B2D4DDB3153DF69 /* ServerAMD.swift */; };
- 0E2CD8D3FF556C952214042D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 0E33574D322A2DD90AFC9C01 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 0E9D11EA433DA6A4EDF095D3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 813816EAFE765EBDEB00023C /* Server.swift */; };
- 0EBDC1D3EDA102C4A1A6A542 /* Instrumentation.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3BEE997F490F1B90AE8FF904 /* Instrumentation.ice */; };
- 0F2EE34839E9E21D764A8123 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 0F5B3EDAF350CC583070B5DD /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 0F6CB443B170158CB0C2D1DB /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30EF39EE8BEC9D00D24DC208 /* LocatorInfo.cpp */; };
- 0F721B1227AF0B471077DF27 /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B59BE30057C1D6398E3853C /* OptionalFormat.swift */; };
- 0FA249AADA5E0C13A3981CAB /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 0FA864CABBA0F608885180C6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 0FE20D528094695D951F75AC /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = ABB07381540E04817390A3ED /* TestAMD.ice */; };
- 103A736DE168A09BB0E93548 /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A945CF34D00CD45A128D1D /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 1047F99BA469998DE5FAEC39 /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D9D35236C0D3E070BF1A2FC /* RequestHandlerFactory.cpp */; };
- 1076C8E7CE0F4361D11A249C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 10BE80FD775AB46B9ACB3435 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D1138147C3E8462D27C7917 /* Client.swift */; };
- 111EFC95A4197F80240352C4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 1168B9BA753BA5A5D03A0051 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 1181F3FEF3577E15715240C9 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9D9AAADD7F79C7BC26E00BB1 /* LocatorF.ice */; };
- 118FDE391D35AAF8F09A34A0 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 812538EE9C39FA7D928A56CE /* ImplicitContextI.swift */; };
- 119C5AE7CEA2346E2A583524 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 1225D938193A1ABE5512618F /* Properties.ice in Sources */ = {isa = PBXBuildFile; fileRef = 14187A00ECA6E25D40B21B3D /* Properties.ice */; };
- 12435442CEBD35B28DCFBD47 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 1298FAB9E2D6512738B6651A /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 129FDDD989D45A6B5F12EA88 /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DFEA80D8F03282B1A5F1A49 /* Initialize.swift */; };
- 12A04227CD8FEE4CAE863FFC /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = A52B06D312D79F5422D0081A /* TestAMD.ice */; };
- 12BDAA1D687EE9D849D73925 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 12EC5805B2C9C9040226FDA0 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9D9AAADD7F79C7BC26E00BB1 /* LocatorF.ice */; };
- 130480896A56271D2BDDAEBC /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5341AD79B0696BDEF6F41101 /* LocalObject.cpp */; };
- 13368126ABF2435E00241C3D /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82517F3B6E20C15F5332436C /* ThreadPool.cpp */; };
- 133D28E23376FB0DACACF472 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89F30B8D1202CAD2F2CD7C65 /* TwowaysAMI.swift */; };
- 134E688B3DE1734A17E011FB /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 138F3139C4CEF51858766A43 /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 152C6962CBD63C02057179CD /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 13F78BE71CB95A3FB9A2F6AB /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 13F95BE8B524D53C6C58FE4B /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5A05394CC1EFA4C1C9619075 /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 14801415796FAA599198125E /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 148774CCF7C941B058C2C443 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD091EA548CF51A8AB261E4 /* AllTests.swift */; };
- 15325AD131DA10FC4A2ABAD1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 155E62AF779301659FF32A01 /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BD3B63910D4CB7D40D357BE8 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 15A3E7806CCB0EE962CB1312 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA74DA0687BFE8C109976FF5 /* AllTests.swift */; };
- 15B8237C5B5B0022B1DE85D1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A59F882486D21E98C368D3C8 /* Client.swift */; };
- 15E2A7503462AE5565FDD50B /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F179019ED3F072B2C479ECD /* Server.swift */; };
- 15F2F5556E365DBC88FBFE00 /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C325488C328D211818F373 /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 168E57152979BD75BFD8EB0F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 16B0F207C40D23764326BFB1 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 16C6702F93ADA7BFE45414BE /* Logger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E12E6EDB9DBD7DA624D4BBF /* Logger.ice */; };
- 16CD29A341CA984D87ABD30B /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 061B78B43B4D93F17EE8EA1F /* SecureTransportEngine.cpp */; };
- 17051CA00D1D4AB4B9F06D48 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 170691E111BB6C70FD49B552 /* Connection.ice in Sources */ = {isa = PBXBuildFile; fileRef = E5F69164D6EF6D67644585DE /* Connection.ice */; };
- 1707D4EB5764FDA7C886DF6F /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 17927C9F2C24CD0434DDBC15 /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE04BC59D9267C53B2E2E426 /* MetricsAdminI.cpp */; };
- 17DF0C396C8DF6F02AD54111 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 18478B3EF57D08C926D9FC95 /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15CF7EB078034B9AD74C30C0 /* CountDownLatch.cpp */; };
- 187689D145A1D35540D046E9 /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3FFD751D514266DA7C58D2E0 /* Exception.ice */; };
- 18C49B24F84F90DFF1B073CD /* ObjectAdapter.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9C03AE788FB60178B55DA0DC /* ObjectAdapter.ice */; };
- 190C1041694BCFC0B548324C /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15DB23B1A38B3EDC5027330E /* Collocated.swift */; };
- 1955F65D66BFF62B4EAF42D6 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = A982546A8BFEC96551798AFC /* Collocated.swift */; };
- 19664746B652BF3D7D288C95 /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = 762D926265F709AAFABAE603 /* Descriptor.ice */; };
- 1A2EBDB39C70E13BEC1DB74B /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 94296D6FA0B4EAD77524CA74 /* Metrics.ice */; };
- 1A3893E97DA7C95AD0EA799C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 1A65CEC1C37315AAF56E5C83 /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5B9FC9AA6346E56C974A0E0 /* CollocatedRequestHandler.cpp */; };
- 1A8B0920F2B72F074683E475 /* ObjectFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = CC29C4495F4355C22DAE2870 /* ObjectFactory.ice */; };
- 1AB8067A778FA7D0BDE26CB5 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = EAEA6F78056CA0855F0D7E27 /* PropertiesAdmin.ice */; };
- 1AE5F4BC3AC894BCD73BB500 /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0557DD89BF16A3F68732BD7E /* PermissionsVerifier.ice */; };
- 1AE9127B568423D32D44346D /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E2229E45A7997941DA6BE77 /* StringUtil.cpp */; };
- 1B523DEB7DB56BD61876B491 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E825C7A580DEC5B44856C0FB /* TestI.swift */; };
- 1B9E66DB9FB34291A2B94E75 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4B3C0B4156CE5D3101AA5A41 /* Router.ice */; };
- 1B9F4EAD8DDB00AA22DCDA9D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 1BBCA4F07DFEFEDA890F3A82 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 52B82665E4CA54E9C28CC521 /* IceImpl.framework */; };
- 1BE364A90F89383B8C811DF6 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30651437FA2FDCBF346659C0 /* Value.cpp */; };
- 1BE8FF63C32F2206D38DDBD4 /* EndpointF.ice in Sources */ = {isa = PBXBuildFile; fileRef = D6BE4397021F3C34B7564B4E /* EndpointF.ice */; };
- 1C05D8AAAC0FA742B4567E58 /* LocalException.ice in Sources */ = {isa = PBXBuildFile; fileRef = DF32ECF6778150AC88459CEF /* LocalException.ice */; };
- 1CA2843FD34A93155C5B2593 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = 772409D1E7437F7872F894D7 /* Value.swift */; };
- 1CE7FBC7A9F12F4AD7134449 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 633A5792AB562E47E7D9B487 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 1CFE06CC24E4A963F2E6ADB4 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 540F2D25E70EBD9203E8BBB7 /* ServerAMD.swift */; };
- 1D0633A078A064347A37D53F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 1D7F1B6842BF4C85E5BAD3A2 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 147D40176DDCC60B8AE883A8 /* IPEndpointI.cpp */; };
- 1E0C412E06FA7F8D7BE47BFA /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4FFFF62292DDE44557B4482 /* SliceInfo.swift */; };
- 1E0FED36DA0F593829BB981E /* ConnectionInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = FBA6181009014692E2D8957F /* ConnectionInfo.ice */; };
- 1E292CC9032DE26BB4471311 /* libIceSSL C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 21B195F543EFC2F193A1DD0C /* libIceSSL C++11 iOS.a */; };
- 1E65C28158248C31B9D831A4 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC2DD492B9AE60EC7E84873B /* Initialize.cpp */; };
- 1E758C89D87EFDF83C55BB1E /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1163261D5D5B1E89E8CD4F19 /* ServantLocatorI.swift */; };
- 1EE233D194D829CCA51074B6 /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 02A653BDDFE566D6362AC794 /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 1F40A06CB984F22ED2BFCC53 /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 376FEFA66EA60F109FCF6D7D /* SSLEngine.cpp */; };
- 1F69920AD89FA30F1D16306B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 1F69F4843B839154DA977CD6 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 710469C3B6096B0FE2B59B88 /* LookupI.cpp */; };
- 1F6A7DF488F0748FDA0501CA /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 710469C3B6096B0FE2B59B88 /* LookupI.cpp */; };
- 1F92F1289840A5046DA13457 /* Endpoint.ice in Sources */ = {isa = PBXBuildFile; fileRef = 04D0F68E7D927E1D94AF8316 /* Endpoint.ice */; };
- 1F9472ABEA6EE0216BFC7776 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3AF6048FF1364F79B74A51B /* AllTests.swift */; };
- 1FECCCCBFEF6F43E2438CC2E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 848EB2CE9593C1D8F923FD8C /* Server.swift */; };
- 2008E62C32AE82345C3DDD66 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D0142D4874A0F09238F6358 /* TestAMDI.swift */; };
- 2020B9284D0B6AFAA2407B1F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 20390482D3195AD5032F4187 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01DB1D21D9147DC0B4A2C592 /* InstrumentationI.cpp */; };
- 203AF720F5810E99D10477E5 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 210854216185F85D38D52A7E /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C486A2A63E827BCDB5D00E12 /* StringConverter.cpp */; };
- 214DFBE3E8110E6FBFE456EB /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1163261D5D5B1E89E8CD4F19 /* ServantLocatorI.swift */; };
- 22203943354A017FA28C42EA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0470353BC071A5E153B343AB /* TestI.swift */; };
- 2261F9429A6220CC156A2BC5 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DDC3DDCA9986ADA036C197B /* TestI.swift */; };
- 22CB82F9FC29A40A1A5062BD /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 874074FB03119B3A6BA9EFC1 /* Protocol.cpp */; };
- 233CC8F0C3E20FD2A9412B77 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 2342AD14850A4192FD3E0B82 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 239A9D722BC04C85E672B595 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8E6A82D7E03BC98B98FD1BD9 /* EndpointTypes.ice */; };
- 23B8ED6B8358489EC7D29881 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8735A9A652C31C2A3CC241E1 /* AllTests.swift */; };
- 23DE1CF914C10ABD29F17D23 /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B2834C54144051028FC3E38 /* IceLocatorDiscovery.ice */; };
- 23F9058146C9C7BDCB2FD231 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34401CC6421E5D0E724E88FE /* Collocated.swift */; };
- 23FC3693AD4E447DC17B7975 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30651437FA2FDCBF346659C0 /* Value.cpp */; };
- 24030A95E040584EC0A3286A /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = AFCD7006F87053DD280B355D /* Test.ice */; };
- 2448967A7B41568E77982F19 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8A655E25C1FF11282E3A8F6 /* AllTests.swift */; };
- 24583FFA4EFAD90D988B8573 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC9E443E70BA5034FEFCD21E /* TestI.swift */; };
- 2465182F3E5F2011BEF005A1 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9F567597B3E2656038F84F4 /* TestI.swift */; };
- 24CE6A5E48BAA1A34B8A651A /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDCA8B1E59D2612ED83D81BB /* CommunicatorI.swift */; };
- 24D4C119BCDDFC794FC14D91 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 11143767904B7C97DBFD073E /* Test.ice */; };
- 24EA29EDA7A289947665B23D /* libIceDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FEEB7A710CB728ED1FC66D6 /* libIceDiscovery C++11 macOS.a */; };
- 24F82D37DDEAE90F037D4DF4 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F18C23F990FBF94BB8B7FE60 /* TestI.swift */; };
- 25391A02E66E78169EC08F03 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 253BF05C1621EC8067ACCE7F /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E3061B136FE7ADBB8DB9114 /* TraceLevels.cpp */; };
- 254F3783D370046B3B1834E7 /* EndpointF.ice in Sources */ = {isa = PBXBuildFile; fileRef = D6BE4397021F3C34B7564B4E /* EndpointF.ice */; };
- 2584E393AED6AA56EC29E2A9 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29608E038E5A3187528EA62D /* ProcessI.swift */; };
- 25A9FCFF4A194607DD0D5207 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F19C4044C942EC16995BEEF /* AllTests.swift */; };
- 25E11525246AAC9D55DBB00F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 26058FC56B057422D632A997 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 2676125CD036B3E6917AF03C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = EE522B8340CE3A4E595DDA94 /* Test.ice */; };
- 268583FA7028BA48421BE0B4 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9D9AAADD7F79C7BC26E00BB1 /* LocatorF.ice */; };
- 26EB5E3E2F52261CB4B3A649 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3704FDBEECAE57DB98E459C8 /* Client.swift */; };
- 2706E135626B3780C6864FBC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 270B7042608ADBF44242D91F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39DB31123BB2D5E35D2235EF /* Server.swift */; };
- 272F4FDF4BBB63E0948F7BE3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 27665A4F3DF13E36881964CE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 276E84589152303191500328 /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FA7AC1292C0E991DF4BA8E4 /* Incoming.cpp */; };
- 27AB1993D310A2E120067744 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 61F2BD2F23764D117F1428E8 /* Locator.ice */; };
- 27B90EFADD014F6C52EF6666 /* InstrumentationF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B171708BCC523826FFA93B00 /* InstrumentationF.ice */; };
- 27E985321490B56A32768A9F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 283ADF69092FE038DF57DB38 /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB53D7F75100F4CF52B8DC8F /* RegisterPluginsInit.cpp */; };
- 2863D226E2BDC6F914597714 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 28F66F19F68B27C96EF6C83F /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73F31FDC9B8AF9605CA88F5C /* Collocated.swift */; };
- 2900ECAF60565D3ADAF830CC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 134A1DF02D07DE1B48BDD9E5 /* Server.swift */; };
- 2934EDEBC40A2BC0C764D831 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C235CDCE4E60CE8402C56D30 /* ProxyFactory.cpp */; };
- 294A47FFFC2CC877890E7C66 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8A655E25C1FF11282E3A8F6 /* AllTests.swift */; };
- 29864D3CDA4DF760EBBE3859 /* ServantLocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0B14E705E07F0D0D4EA85665 /* ServantLocatorF.ice */; };
- 29A28184C0F75AC57E882681 /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = E63D1778300CEBCA0A19515A /* Blobject.swift */; };
- 29C6F7FC36959219237EC1DB /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = 762D926265F709AAFABAE603 /* Descriptor.ice */; };
- 29CCE37FA2FA4DB16389035A /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7124A0C4FF563256CECFFD11 /* Acceptor.cpp */; };
- 2A00EAFE6C32EA07ACEC1B3E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 889F33329EA3D8479FFC0479 /* Client.swift */; };
- 2A6C25EA8977F8EF82E7ABE0 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = C2A22B3B3EF5EE88BDA1C081 /* FileParser.ice */; };
- 2A6EF59EFED6D6DA35CD8700 /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3EC2422F7DF9807B4B59F69E /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 2A6F11B7BB7745D9D239CDFC /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D0030849F57FCFF88081EB6 /* Random.cpp */; };
- 2ADF6DEA5C6AA882731872CE /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAE305163CFD14F81D434502 /* ProtocolInstance.cpp */; };
- 2ADFD84C7BDF8F0E42A9FDD5 /* SliceChecksumDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0E6E56298993D5697BF2E4ED /* SliceChecksumDict.ice */; };
- 2AE219EDEF4B01F33A2765C2 /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = EB2B3D47708A5B8E3B97922A /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 2B17A70937361DA096A55624 /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E4EC875DEC29DB7D493FABC /* ProtocolPluginFacade.cpp */; };
- 2C196C6DAA4E2343DD0EC788 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 578762DACAF19CAE80B60584 /* BatchOneways.swift */; };
- 2C463E19F9795BAD307C60AE /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDCEDCD14224AE9E77D6485D /* TestI.swift */; };
- 2C6D52485900E7F8ABA01997 /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 02DEAA767E87169F7169F463 /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 2CC05427029FC5C94810545C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93FE3BB13A699CC144FAE518 /* TestI.swift */; };
- 2D07227B495C60C9C12CF4B9 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 2D8ABB3AF423D02536D8EDCE /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FBA8D76866321E998D2E5C6 /* ObjectAdapterI.cpp */; };
- 2D8B0AAC5FAE65B24C1200A6 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30085C9646A152B2D6C70FB0 /* Object.cpp */; };
- 2DB67A3CDF5B98DCC2304E39 /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC75B16FF436AC4A5D2A1B23 /* TestCommon.swift */; };
- 2DC74A778CE7D4FD6DF5664F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82A629797B7B8BB12073531E /* Server.swift */; };
- 2DE4008DC47DE57A8E972FF9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1EB1A3E272FDA0AEB67EF78 /* AllTests.swift */; };
- 2DFDB3F74A5149DD421A37CD /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE4C4F56D4DAB1733638A5C6 /* TestAMDI.swift */; };
- 2E441740374CE7237E83527D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 2E723DB037CA3504A30A715B /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = B99D534A8CA5522365B9B4D7 /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 2E8137785C86603FC13D5783 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D61FF69C82E45F50A9E57E6 /* Service.cpp */; };
- 2ED1EDD9FDCF2D47A51C7B69 /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = AA6BB836B7BFC1BFB90E33B7 /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 2F55DAA8DCC42125090ABEAB /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9657545DF1F8621BB42054C9 /* Exception.swift */; };
- 2F6C7E2092D8AB978BDF876E /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DBD11846C6A0B8CB5794F9F /* Network.cpp */; };
- 2FB00EFEC5EA20871CF18C1F /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D198723359CE7598DAED2EEB /* IceStorm.framework */; };
- 300576D94593E3EF51B7CF74 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 3028420543A662AF64CB26DA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 302DDC00C790754C696869EA /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = EAEA6F78056CA0855F0D7E27 /* PropertiesAdmin.ice */; };
- 3041D3BDF8F3D7CC7F4E5F71 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC36BC6D1565E1D09AFAE38F /* Server.swift */; };
- 30702A828BEB53FDB2D9D74D /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FF0571D193794236BC596A7D /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 3077347FA5717EA507E3ACC2 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9D9AAADD7F79C7BC26E00BB1 /* LocatorF.ice */; };
- 30C1DE4F74A0485FB0673C25 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 84ECCCF740467E67DFD0E89F /* TestAMD.ice */; };
- 30C77BFB7DC63EEBAC6D2DB9 /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D37101549BEDABD23E8A508F /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 30EB44AA21666F128A36749C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA74DA0687BFE8C109976FF5 /* AllTests.swift */; };
- 30F0505A07777386690AD45E /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A69BC365372EB27631A886EC /* ServerAMD.swift */; };
- 30F124A3D9DEA06964AB4C81 /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5346CCCFF12A71D81795AD83 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 311A422F9634CCEB4B5F2A75 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 070D5938E6B942DCE7794856 /* EndpointI.cpp */; };
- 3147646229C4E278F79B0C5C /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0D695F59B98F23481D6A838 /* PluginI.cpp */; };
- 315475FAAE588AF9347F100A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 319023261FAE09FC123433D7 /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 061B78B43B4D93F17EE8EA1F /* SecureTransportEngine.cpp */; };
- 31A8D950C4B1CC2D58E6D062 /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F94D68149D88079DA1A291D5 /* LoggerAdminI.cpp */; };
- 31B09F76595C50EFA69F2655 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 31D1EDEF2E73AB1751150B25 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0DDDA40A28D90D0803610374 /* Test.ice */; };
- 31D5C1B249976516DDA6C2D6 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5AAF5AB8C9CB904F380E26BA /* Security.framework */; };
- 31D8F1AF06E381E38703F4B6 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC9E443E70BA5034FEFCD21E /* TestI.swift */; };
- 31E4A35D5D72F6550932496D /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B74FA74740DAA7C3B4E0242 /* Collocated.swift */; };
- 320298FB58F5FD2278ED721E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 3206E969CB3AD29FA1919C44 /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95D89375D28F76DDF26C3903 /* RetryQueue.cpp */; };
- 32134B081BE389660FE1F80F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 338881AF6EF560BF91024571 /* Client.swift */; };
- 322D328FC5A97D4C3A505D73 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8F0C2E31D1A2B60BC0B612B7 /* Test.ice */; };
- 32407C1FD2DF157154036006 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 3264E5C71D1E412A8D205CF3 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DDC3DDCA9986ADA036C197B /* TestI.swift */; };
- 32AEFDA3EDDC8DF993BDC2F5 /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CB079155D6B2B714CD02C702 /* ConsoleUtil.cpp */; };
- 32E465B571F55F414AF94CE8 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 330045FA2FB0D9A15EF46058 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C7EED74A36BBFBB80D7586D /* TestI.swift */; };
- 33167221DB8AF7ADA0217F6F /* ImplicitContextF.ice in Sources */ = {isa = PBXBuildFile; fileRef = ADE87D0700232F5E9EC96C80 /* ImplicitContextF.ice */; };
- 332E7D0D78D173CF302869E6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 333FB9858A6E3AEDB32A08C0 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 336A2F6065E27D67073F69A7 /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E1A2C7F234AB794104399BAA /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 33A1543A9492FB7057B32EEA /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = FBF01BA38FA6128BB69D22F8 /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 33B40D6F673718E2F9F02EF4 /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F739FD7322F6B60CFCF49B80 /* PluginManagerI.cpp */; };
- 340610C5A68674A2C87A9972 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 342C1682CCC4389FF8A227F4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 343191AFCB69EA5B0BC21AB7 /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3FFD751D514266DA7C58D2E0 /* Exception.ice */; };
- 34A4DFC2D94D87419C9E5AFE /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E19DC19296ABDDB29732AEB2 /* RecMutex.cpp */; };
- 34A9ACC8F3BBE1F8C4B7F675 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 34DAE2AD829804ECED6643E3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 352B1B3CBCA41A3BE4409470 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6222468F2E3276D9AE70AA72 /* TestAMD.ice */; };
- 3552F0A11B06BB389FAB5F7F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0470353BC071A5E153B343AB /* TestI.swift */; };
- 35857E533F462D4B80DE18A1 /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 535F8D91A4A19A5BFDA99EE5 /* ConnectionI.cpp */; };
- 35BCAF06C7BA9B1302309927 /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D33BA2168DC65471FF754DE9 /* ReferenceFactory.cpp */; };
- 35E2EF7A615B052190B8CA10 /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = B2375B428874B348D86BD212 /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 35F0745FAD324EB3AE613DCF /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 35FFF484D4A52783BBA83327 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D1138147C3E8462D27C7917 /* Client.swift */; };
- 363985B44F4F8721B3FF0E0C /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 52660B66383EDC81626C3C67 /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 3640CA9EB071500F762A9010 /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51AADD84F9FA058A6B272117 /* SecureTransportUtil.cpp */; };
- 36A9A6DE46DFF03F4AEE930D /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = C0CD22B04F5BAB9D3EC504A9 /* ServerPrivate.ice */; };
- 36B6ABDC9E320D676FAEBE8F /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 3786AFF90936E9F87B82A6CF /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 37AA3E7FEABA4E9801A49FFF /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 61F2BD2F23764D117F1428E8 /* Locator.ice */; };
- 37AE7C25BB00410631BE0436 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C8E60A264C8456DE0ED5C966 /* Test.ice */; };
- 37BA725D677A982D2215C079 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 78E541B6D2455480311DA7B4 /* ServerPrivateAMD.ice */; };
- 37C04D5523D068A5BAD629A1 /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91BD324C4B2EF75A964F7C98 /* RFC2253.cpp */; };
- 38072BDF862E99E1AD76BEF4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 3818C0A772722ADE56982136 /* ControllerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1894208F6C1914A62E4E9BDC /* ControllerI.swift */; };
- 38544EAD2EAB2907767CFB5F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = D287C5BD715B37D926214E22 /* Server.swift */; };
- 385C4D9B3B316FF599742382 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89F30B8D1202CAD2F2CD7C65 /* TwowaysAMI.swift */; };
- 386BB638F6D9B4DB84046B78 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E11927D502E93CF55F23E448 /* IncomingAsync.cpp */; };
- 386E3BF5DC5F8A31ED882653 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 16B802BE4C8C5176C6AAD741 /* RouterF.ice */; };
- 3885FFE7EC326B47D84A8206 /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC0001929385A130EAFD24B /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 38899291F86F88353D5D77C2 /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F0A2495853FF103040F35EB7 /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 38CCBB713451FD10CBD1C0FE /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = E63D1778300CEBCA0A19515A /* Blobject.swift */; };
- 38DB5A670EB0DC59952E915C /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EBDA0CFEACD3987EFAD6252 /* UUID.cpp */; };
- 38F37C0378CB525C004AB09A /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3EEFF728E276BAA633A852DB /* PropertiesAdmin.mm */; };
- 390DD43D84005F7885637A0B /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9DBAFB63AB99E112958DDC68 /* TestAMD.ice */; };
- 39226317391BA3B3B017FF50 /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEC4D11C0BB2ADEB582AFD3E /* DefaultsAndOverrides.cpp */; };
- 39DE1C8393E7435766F59ED0 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BAB9C69CF7FC392AAF1BFC4 /* Collocated.swift */; };
- 3A0CF8939D9F572432B2453A /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5036FDEC396D3BE548AFD8BD /* BlobjectFacade.mm */; };
- 3A2F57D1887EFFCC058EA413 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 3A2FB42C705B9E7F36DB7480 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 3A310975DC01B31D101D5BB2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F18C23F990FBF94BB8B7FE60 /* TestI.swift */; };
- 3A412DB07E18C0A26FBF8D8E /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C1B28D6DE78776F9C8B0E3D /* Incoming.swift */; };
- 3A556B53ADFE1965A1710665 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9C2EC602112629E6DBF7B880 /* Session.ice */; };
- 3A959EDAFC8DFC583FE66488 /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC75B16FF436AC4A5D2A1B23 /* TestCommon.swift */; };
- 3AA1CE7F7C23551891E8F7F2 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 3AA1D71DD1215892EDB98FD5 /* ProcessF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DC0C622594F31649B4E5A2D /* ProcessF.ice */; };
- 3B2EE646A48DDCD0A8A2CCAC /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 86E120D7592D593667241A60 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 3B3F1C777C64087BE211E7A7 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A27B0F345D951957A21F772 /* SHA1.cpp */; };
- 3B50BE4A6AE01764D7EB506C /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81952BA176E8390931A31646 /* ObjectAdapterI.swift */; };
- 3B5780BC982B5AB1CA546DE5 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 3B65B1809B29065930169C83 /* ConnectionF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B8DC2C52549E7BE254AE5AD5 /* ConnectionF.ice */; };
- 3BBDDB6320ABA175D11F4388 /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FD15FDDBA73FF5502EBB212 /* SlicedData.swift */; };
- 3BC7140AA45B1A6A6D822275 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 3BD642B6B465FD1671970AF7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 3BDDFD833776B03A14CCE602 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = D8B59B23A4678E945FD1C27A /* TestAMD.ice */; };
- 3BE9BDBF2C0B6C39B5360E4E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F905AD0AE255FB45823B63F4 /* Server.swift */; };
- 3BEB779165BCDCAF79274CAA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 3C06041CD8A8828758610431 /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3EAF7BFE9FA00B536E33DBF9 /* Registry.ice */; };
- 3C3C822B514B69ED6447AACF /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A039512AF1CC9B8A5825882 /* TrustManager.cpp */; };
- 3C7017593E03B38FE5686017 /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1974A9DFCD5CE75829EEDDB /* StreamSocket.cpp */; };
- 3C7A125B270792C48DDBAC1D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 3CB470259808FF2BAA07354D /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = E03F4146023712CCF5C90907 /* Process.ice */; };
- 3CCFB556F101BBC98C56EA7B /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 229B9CB20575480C7011720F /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 3D05FE265C49D4A7E8A74EC2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E82B90F980D1160E663F4054 /* Test.ice */; };
- 3D0CB1164097FCC9602E52BD /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0F400D91B52F6ED22A761CAF /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 3DDB2CFA2BD7359E6107B58C /* ProcessF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DC0C622594F31649B4E5A2D /* ProcessF.ice */; };
- 3E368C8CD09EC556262C6534 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9F567597B3E2656038F84F4 /* TestI.swift */; };
- 3E70A6B2C1F4134EA4A0E2F6 /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97F3894AB33DBF74E3804C48 /* ConnectionRequestHandler.cpp */; };
- 3E7DC0621BD5A3FB8222342D /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80341A9A47F4D0BAA1DB2C05 /* Collocated.swift */; };
- 3E83D9DC0FCBD9E249CE56BC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC8D81DC4E22E249C0DD3842 /* Server.swift */; };
- 3ED1E469F552077BA338B66E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 05CCFAC55D71DB3861715464 /* Test.ice */; };
- 3EDC5423053CA60077044EB0 /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66591C1991E7BEA609899269 /* Oneways.swift */; };
- 3F24AD36C3CC55805543A803 /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB7DA486D9F91B070B84F439 /* WSAcceptor.cpp */; };
- 3F379B7AD708E3FC656B83B3 /* Properties.ice in Sources */ = {isa = PBXBuildFile; fileRef = 14187A00ECA6E25D40B21B3D /* Properties.ice */; };
- 3F67DEE924A9B1A86310455F /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = F622A140E6FAD50298A18A5C /* BuiltinSequences.ice */; };
- 3F8CFE4BA90EB6A53875E339 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05F39D9B55130C164A5DD5F3 /* Client.swift */; };
- 3FE11C28F7DDCD3D6D75E658 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 400FC3C61B885629541C86E2 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0C6303C93DFEDECE6EB5DEF /* AllTests.swift */; };
- 4016EB1332F196C393A7BE98 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59B7C9A405B6E7E1BDC347E2 /* InitializationData.swift */; };
- 4019CF488ED09148F537755C /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96C14F92E4BD1A78F04D6B73 /* PropertyNames.cpp */; };
- 4020AC1CA075B39038D78E9A /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AC337C228145DA2BDA97C70 /* WSEndpoint.cpp */; };
- 402ABB1125F5580FFDC069BF /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0B463F676E7D216881CBD82 /* TestAMDI.swift */; };
- 4051D7E7881D7AA555E93744 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 40F21E313B7C8A2C85631918 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 4100B4F23177A3BBDE5B502B /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7DEA75801F4667F22FBB0E23 /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 413E76ED0135D1B9490EBA01 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 414E84C8DBFD93AFDF7747FA /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 416F308ECDC1498181DAD7A1 /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5036FDEC396D3BE548AFD8BD /* BlobjectFacade.mm */; };
- 4172434198461E24704AEDDC /* FacetMap.ice in Sources */ = {isa = PBXBuildFile; fileRef = D3EE1B4FEF0422D2F4B67156 /* FacetMap.ice */; };
- 4199FAF6AC70DF976098BE69 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0C6303C93DFEDECE6EB5DEF /* AllTests.swift */; };
- 41B4E9340711A973EE5ACC9A /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 41BBC2801A99DAD5AFD8D445 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE4C4F56D4DAB1733638A5C6 /* TestAMDI.swift */; };
- 41DCC3C89594B666C0CF9522 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5341AD79B0696BDEF6F41101 /* LocalObject.cpp */; };
- 42112F4DD06761E6292DC163 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 42D13604C73B01FA4EAAB3C9 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4822C67556D463404A0882AD /* Collocated.swift */; };
- 42D1E8BAEC4911642C7790EA /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A039512AF1CC9B8A5825882 /* TrustManager.cpp */; };
- 42D5EC156DE0CEE38CB9F3CF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 43266F0C56A9B9801A3B028D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 436EF214B572B49B6820BC70 /* Notifications.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D864A3AEB83284835B73866 /* Notifications.mm */; };
- 4392F7DD390E6415BFFE2725 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 43D08C5AD6403785D4F2E432 /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 202045998BA207BE21F9742F /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 43F2353CD2F33888D16C141B /* Endpoint.ice in Sources */ = {isa = PBXBuildFile; fileRef = 04D0F68E7D927E1D94AF8316 /* Endpoint.ice */; };
- 440AC22AD519DC1C90E042FB /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 441574B9128D76543EAB6134 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 44173FAA4E6D8A35A81379E5 /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 52B82665E4CA54E9C28CC521 /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 4425991B4B08B2E777529ACC /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C1B28D6DE78776F9C8B0E3D /* Incoming.swift */; };
- 44337066342F809F0BC3C2A6 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC9D24A849C7A636BD399949 /* ServerAMD.swift */; };
- 444A486D0864D60AEBBC7C6F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 333B004D083BA02A84489B27 /* TestI.swift */; };
- 4485C0CE4B09C67B7B99E212 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 44AB41A6DC8B20BE76334F39 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 44AFFBCDA7179E2BCE66B44D /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B57BB1B00847273287A8173F /* Timer.cpp */; };
- 44CA0C666ED4D0C49AB8EED5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39DB31123BB2D5E35D2235EF /* Server.swift */; };
- 44D785D79D91D02A66E3D8C1 /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 006D663BDD6E4FFF082691DE /* UnknownSlicedValue.swift */; };
- 44F3C5727CE7AD864AE22D24 /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0CF1A05BFD1DFE952E400A29 /* Key.ice */; };
- 452BFD551BF10D123D326D27 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A656B7EA027D8EED38F05BA9 /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 4571C5D7CFA9713095D78989 /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = EBD0BA0C20BD4A72616B55A7 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 46325AA2AB0497C0E7CBC71A /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FCC4DC0402E212F3FA567F5 /* UnsupportedAdminFacet.mm */; };
- 464B7DAFDBFFDE8BFEB2613F /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = FAD293D61093C51F5D7F2162 /* IceStorm.ice */; };
- 464FED65C06030DFBFAF3147 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C54D77862357F5D5EBB46E3 /* AllTests.swift */; };
- 46947EC2E9AE88C7E3790BBF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0DDDA40A28D90D0803610374 /* Test.ice */; };
- 46ABD7EEDBEE6E512AB16818 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = F0BBA7C1DD8C98341168BF4B /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 46EA2B136FC9C5D4F81447A9 /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0551639DEFF9603D6E191663 /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 473062EA04E853444853045F /* SliceChecksums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBAFB9130DA7AD0BDA89BEAF /* SliceChecksums.cpp */; };
- 4763637FC2C4E330C4FE7254 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 476AE20FAE2EFC1FD155A733 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 477DCD400D37825D09A30852 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4BA3625B23FF8B62705AFE7 /* Client.swift */; };
- 4786C59A98F0A9CA9FA30BC7 /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96CA3097D4D2A913A3FB3E8F /* ClassResolver.swift */; };
- 47A3869D2C04F8C00F8C4D3F /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91D514977778BE3BB6D79A7B /* AllTests.swift */; };
- 47C863C7B33E2D958CB54717 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 486C0572146A4561DC3EFB1E /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 13F8DEDC3CF968015BFABDE6 /* Glacier2.framework */; };
- 488514E943CDEECB4588875A /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BB6BC7C53DEDF3D635D3357 /* RequestHandler.cpp */; };
- 48917B64B3C8663AB35F18C3 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 48A6ED83540A88B3C11A7DD7 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A46D91D6CD644BB8B5950A /* Server.swift */; };
- 491C803F2AB0D1A85A184F90 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9DBAFB63AB99E112958DDC68 /* TestAMD.ice */; };
- 494661AD16143FF0503ECC88 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91FCB36988ECF92BF0E1B88A /* IceUtil.mm */; };
- 49B6291578D9B5FD0C7466AC /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1388C42229ECE520D4DE4E0A /* Client.swift */; };
- 4A24D3FD3FDB431D9DD91F3D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 4A395A7D68C4AD5A4F890D38 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EECE59D208760AAEF8F05D43 /* UdpTransceiver.cpp */; };
- 4A55A7BD094FD0EDBD68999E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 4A6AC9DE22EC8B3E12666B11 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8E6A82D7E03BC98B98FD1BD9 /* EndpointTypes.ice */; };
- 4AB6E7053F431E2F038DDD8C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E82B90F980D1160E663F4054 /* Test.ice */; };
- 4AB9AF5F1BB0AD9D2B8B1A53 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 4AD234CB51D2BF61B44D28C5 /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 19751DD4AAFD07FFE294832E /* Convert.mm */; };
- 4AD4842C6DA97559622CC71F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAC631A855367CC829C10BE /* Client.swift */; };
- 4B068D9C705A3CF34E061C8C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93FE3BB13A699CC144FAE518 /* TestI.swift */; };
- 4B260CD736742306F7B3615A /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C7EED74A36BBFBB80D7586D /* TestI.swift */; };
- 4B2EB506B67F56C31A3CA134 /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63786455698CC010D5E23870 /* RouterInfo.cpp */; };
- 4B4816ED42CD395653D37E21 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 4B8D45D8F3190F81217707D0 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6B6F7D8170ED48B12F0B6F7 /* Server.swift */; };
- 4BADE1D2D3E9FC7CC5AB4FC3 /* ValueFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = BD42BAADD50274E65B29EE2F /* ValueFactory.ice */; };
- 4C08105A7C0209CF918480E4 /* LocalException.ice in Sources */ = {isa = PBXBuildFile; fileRef = DF32ECF6778150AC88459CEF /* LocalException.ice */; };
- 4C11999558C878D0E617D469 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 4C1D6BEEB72D8985E0E2D469 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7851F7E848C61460B1283AFA /* UdpConnector.cpp */; };
- 4C3824C2F820CBF01F606420 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2AD126C492934CEB62BD83 /* Server.swift */; };
- 4C4D6E81AABAA1D95DD99C0C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 4C6D8422A7B701A310F2E47C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 4C733E974A4910F1BE94EFD5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 4C8E583897BCD2E30FA05A62 /* TcpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5B9882C199FA2525680ED41 /* TcpTransceiver.cpp */; };
- 4D526313E5310D5A76B57D5F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = AED68CB5181C8322535C8B0F /* TestI.swift */; };
- 4D8747A6BDBDFBEA49EC5AFA /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 09CD9498FF6E5A10C898C57D /* TraceUtil.mm */; };
- 4DABC6C69281C19B49C0C26D /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9433B4B70F6482C4CE2C7037 /* WSTransceiver.cpp */; };
- 4DB9A5E05790C87387EA8302 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 84ECCCF740467E67DFD0E89F /* TestAMD.ice */; };
- 4DBC9457F4B55846C431F86D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F8F6196067871FC2BD34A24 /* Client.swift */; };
- 4DC0ABBD0F50CA3ECD176079 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = 26922D4B3BD8D332A7E61B62 /* Version.ice */; };
- 4DF02D9C9893D08710303AC8 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3EC2422F7DF9807B4B59F69E /* Glacier2.framework */; };
- 4E1EFECD69A1DFCAF8DC8219 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 4E60ED1D9B664E4028D40647 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F54102FD9173D5948F3DB693 /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 4E6861EE4CA93F8E9B05955F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F905AD0AE255FB45823B63F4 /* Server.swift */; };
- 4E775FAADA5DDB72B2BCDE43 /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 25D23CB8F54EFB2A4493A943 /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 4EB06ED95E3134609A9AA8AA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70D8F4B545E7DB529C8B6466 /* AllTests.swift */; };
- 4F099F3905DAD3C44048E26C /* ObjectAdapter.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9C03AE788FB60178B55DA0DC /* ObjectAdapter.ice */; };
- 4F0FE96E61CE2750E99DB93A /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FBE1ABE84062848AA5FCF44 /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 4F26FED6A58A2BC0BAF5A06C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 4F74EBC430E031CE392DEB82 /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 5060292DACF9A97B1540ACD9 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D0142D4874A0F09238F6358 /* TestAMDI.swift */; };
- 50A2A8DD9C763049DC819BF7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 50AAC8AE5F65704C8458AE7C /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C65B6C7BED85697CBEA44EAA /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 50F81838E6DC21149DE0DF93 /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDBEBA80F9238CA9CBFB341A /* SysLoggerI.cpp */; };
- 510A580CA503E9A3DF0EA3D8 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C81E1C63F2ECA36BFF45C065 /* Server.swift */; };
- 514E8B2F09C5A01AD80F5135 /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0FBF93F2D51FCD340542AF0C /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 5152A5991175211E6A3F4FB5 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B16B70F3C1E50EC4C26CF18 /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 51678477E469860916FB8D30 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F825FBF238DF5D758C3B255E /* Client.swift */; };
- 51C3F21559D4591FDD1282B6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B6D02010D405B25EDD70A6A /* Client.swift */; };
- 51DEA9C58535A7AAB97C439C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BD61767B51929724F9CE9AF /* Server.swift */; };
- 51F31953E153B52832B0CC20 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47F5CF26C0AE1F89B6636870 /* AllTests.swift */; };
- 5267F7C6749D746537A2B8FF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 52CBC49A476F096C197EE10D /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 07C19BFF26EA2D5A9BFF11C2 /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 534B34FED2BC5B1D8B0B7C0C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 53E21F08903A88AD3B58A30A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 53E33768C8680D7DF69F8819 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 548E1A225649E2B88CB10544 /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5B9FC9AA6346E56C974A0E0 /* CollocatedRequestHandler.cpp */; };
- 5490F4B15F02242559504589 /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3D8DF4CB3647850A85D5025 /* BatchOnewaysAMI.swift */; };
- 54AE55170857E75A0A26FB14 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 54B296E5079624C658152962 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDE8895B8D3A8C48B371CB17 /* AllTests.swift */; };
- 54B2A4EA58EFA8A52D918048 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AAF4AECDF16E4E1A198E5F6 /* Server.swift */; };
- 54B8DD04D36068A5287215A9 /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A9AF41322A6116F0AC78A561 /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 54CBD95D8384BAE3F13105D9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 54D6A7A29349CDC7CA5AB73B /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 54EFAD7E12E193F30EB15500 /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09F67F6A3286C045388B9AB4 /* ConnectRequestHandler.cpp */; };
- 54F7B117432056088DD99C39 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 5504EF77A28EB756821258CC /* PermissionsVerifierF.ice in Sources */ = {isa = PBXBuildFile; fileRef = FD2995A6E792AC39FFA9D59A /* PermissionsVerifierF.ice */; };
- 550C7D5572FB9BFD51811717 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 550DDDE4AE0AEFB8F7545939 /* ProcessF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DC0C622594F31649B4E5A2D /* ProcessF.ice */; };
- 551A9FF7BA53150587D0B8A2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F179019ED3F072B2C479ECD /* Server.swift */; };
- 553C32F969587162BDC32E5E /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 553FD281CACC41EBFA7E0414 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 172906A275B3BCFD142CB7F0 /* Test.ice */; };
- 55F23CB97D53738787940D52 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4BA3625B23FF8B62705AFE7 /* Client.swift */; };
- 5620AE775D4FFC27AF9DFF49 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E239CF9DF24E5B58D95D4D1 /* Client.swift */; };
- 566889F6F4FF7530D81B43EA /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 848EB2CE9593C1D8F923FD8C /* Server.swift */; };
- 5670EE11E11467ED75B1DB36 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 570AD12CC670C9104CD56EFA /* Endpoint.ice in Sources */ = {isa = PBXBuildFile; fileRef = 04D0F68E7D927E1D94AF8316 /* Endpoint.ice */; };
- 576B3E4FAE550263125F3B9F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 5771C1DDE9E7D68C8ADFC6F0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 5778EFD5DE0B53AC01009197 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B224AB6DD347E466648E1E0A /* TestI.swift */; };
- 57AA67273A59CFBDC85F6F05 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DCD33B375F6BD8CCFDC4458 /* Client.swift */; };
- 57F539B946F0DFC72A65B4BD /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3CDF6C5A2CDF07A6BFA1616 /* PluginI.cpp */; };
- 58077432CE35511159DC691D /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93A149AA95BCE53B8FFC7805 /* ThreadException.cpp */; };
- 580B9B8E65370ED756529386 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8F0C2E31D1A2B60BC0B612B7 /* Test.ice */; };
- 583EA09FAC3310C450E5CFD2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D0DC93B091DBEFF7FE8E604F /* Test.ice */; };
- 58581AD46BFC9257484E1D70 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = 26922D4B3BD8D332A7E61B62 /* Version.ice */; };
- 586F67E83B4AC45C60895F02 /* ObjectAdapter.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9C03AE788FB60178B55DA0DC /* ObjectAdapter.ice */; };
- 589C54161664723DF1868CC1 /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6B3F64CC2D6760BFCBC3E16 /* InputStream.swift */; };
- 591A45248C920C04E7675B01 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 59292A69E5BA8CE4CD3EA906 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 592EB88892B9B8C13FE0A01C /* ServantLocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0B14E705E07F0D0D4EA85665 /* ServantLocatorF.ice */; };
- 593B2FE306BDCBE8FE03EAE3 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 812538EE9C39FA7D928A56CE /* ImplicitContextI.swift */; };
- 594E17E597375211F3E6C4E9 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB595DC33109E5DA276AC0DF /* ViewController.swift */; };
- 596DEA01085B21ED05A9CC45 /* Properties.ice in Sources */ = {isa = PBXBuildFile; fileRef = 14187A00ECA6E25D40B21B3D /* Properties.ice */; };
- 59CA677DF995495D4B1A4D76 /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A80AB46F43494F47663DC7C /* OpaqueEndpointI.cpp */; };
- 59E19D00E2BF47717F936862 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E2A4E9B62EE2D64338BEB6E /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 59F6A05998D523341AE33290 /* SliceChecksumDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0E6E56298993D5697BF2E4ED /* SliceChecksumDict.ice */; };
- 5A69746C41905BB31FA6E3E2 /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97BB4C9ABE94E3DC15D15C74 /* WSConnector.cpp */; };
- 5A8B8184CBC86B47A7202BC8 /* Plugin.ice in Sources */ = {isa = PBXBuildFile; fileRef = E45CA56C87B74048C2351B64 /* Plugin.ice */; };
- 5AA8B193C298FBD8A466552A /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A34C37443D800851EE183689 /* Test.ice */; };
- 5AE7C5E576F97FD114CDB43F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 5AF175E819610CD0C1166F34 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 172906A275B3BCFD142CB7F0 /* Test.ice */; };
- 5AF444445AECB876FA7C88A6 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 97BEA79F0125D279F22C3183 /* Test.ice */; };
- 5B332D5EDAD824B60A19F78E /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = C8694BDBD11F2B3C0C6735E3 /* Endpoint.mm */; };
- 5B4BDB53CA30C85BA4204300 /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19329E19D18D022FA95D9623 /* Twoways.swift */; };
- 5B7DBF38E1C7452A3221709E /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 16AA78E32597072B631DE358 /* Forward.ice */; };
- 5BA2BD0709731C570C12DA4C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = EE522B8340CE3A4E595DDA94 /* Test.ice */; };
- 5BAC36B88DBC9C194C209D00 /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEC4D11C0BB2ADEB582AFD3E /* DefaultsAndOverrides.cpp */; };
- 5BB806FDEFE424A7CA657EC6 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BEC7B17F4C2963599CD0381 /* TestAMDI.swift */; };
- 5BC0A25B00B652E3798D6BC3 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E087939A5341BEBE076ABE3 /* TestI.swift */; };
- 5BEDF987D4ED0D974FB436A1 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E087939A5341BEBE076ABE3 /* TestI.swift */; };
- 5BF2848D8E3CD61302AA3A05 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 5BFD1130F1375E83B0971BCB /* ImplicitContext.ice in Sources */ = {isa = PBXBuildFile; fileRef = AE9D2B607B5204A4D8E9624F /* ImplicitContext.ice */; };
- 5C09B99CF1E0ADEDF2E4A4D5 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4087F86ADF581D0B2D02509D /* Client.swift */; };
- 5C7DD532A6E24C7FD912D70A /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9FD8EEEC96A3E1539F3ED89 /* ConnectorI.cpp */; };
- 5CD04D94DFB2A5A7FE4F0822 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 5CD59DB663223F10EF6A3DB8 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95BF6E1AA2CD495DABDDD13E /* ServerAMD.swift */; };
- 5D1E5AD36F75313883B50C39 /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = FBF01BA38FA6128BB69D22F8 /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 5D82C8C16D78F8C27431F671 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 5DB674C70C26A3FFC5DF6A3C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F825FBF238DF5D758C3B255E /* Client.swift */; };
- 5DC5DEE07D6DAD131A95BF4E /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9433B4B70F6482C4CE2C7037 /* WSTransceiver.cpp */; };
- 5DD1C7C38668813460444440 /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1659DF4E83656B630CFEB6BE /* ImplicitContext.mm */; };
- 5E3967694FD4D15510263A3C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 5E9BB88F4FA07F1EEAE19AB9 /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6C044ED53A7D3CF886C85EB /* ObserverHelper.cpp */; };
- 5EC4C33DCDC87657720B9C87 /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6C044ED53A7D3CF886C85EB /* ObserverHelper.cpp */; };
- 5EF17FB80912E6B165C491B8 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 5F0371106AAD025E0F3D2900 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 5F2C485274B7684059BBE7A2 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B945AE7D2A5E38D6EF889CCE /* HttpParser.cpp */; };
- 5F44424CEA4CBB33E27BB2F1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 925DB5248C14B77BC3D63815 /* Client.swift */; };
- 5F6493B8C8C2EB567D390A40 /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD4858602F52D9C980D4A055 /* ImplicitContextI.cpp */; };
- 5FD87DF90241E6CC9FD36D5C /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1163261D5D5B1E89E8CD4F19 /* ServantLocatorI.swift */; };
- 600DD9B8C6C209C579FB35D7 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30294CCCA80848D1D31F2B4D /* AdminFacetFactory.swift */; };
- 603AED11305ACD0E28F7B8F5 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E3CDF6C5A2CDF07A6BFA1616 /* PluginI.cpp */; };
- 60692780C2E5EA0C1ED8269A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 608A571494656A2CA48B052C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 6095A2C65D9C1FEBEE0E3371 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = A982546A8BFEC96551798AFC /* Collocated.swift */; };
- 609F394F7709CB431106626C /* PluginF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3ACC00EC3978AA2856397560 /* PluginF.ice */; };
- 60A463B15F3EFA6495CA7343 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1EB1A3E272FDA0AEB67EF78 /* AllTests.swift */; };
- 60CB68790E77131B0D4C5B5F /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91BD324C4B2EF75A964F7C98 /* RFC2253.cpp */; };
- 60D38157DB2B0341A60C6351 /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD4858602F52D9C980D4A055 /* ImplicitContextI.cpp */; };
- 60F504D997DC2A646A59E8AC /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 11143767904B7C97DBFD073E /* Test.ice */; };
- 610B5709C463ABBDA283DAA9 /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7124A0C4FF563256CECFFD11 /* Acceptor.cpp */; };
- 615FC455E6733A54DD2ED2F8 /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 879A4949935A71A19295C582 /* SystemdJournalI.cpp */; };
- 618169E2E136D62E22096BFE /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 06DF4B6E97814A6B7777C17B /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 61937CC7DFD13FDAD3690128 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E91DC3598F5343C8C478FFA /* AllTests.swift */; };
- 61F05A86627116302E09E9DE /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0FD20AA29FA651CD5E40BA /* TestI.swift */; };
- 61FAB11914AEAB70EAC97FF9 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E45B0F3A37E9A497981BFBA /* TestAMDI.swift */; };
- 62081BCD9F553D06A795A91C /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BEEA6951A353148A9BEC38D /* SlicedData.cpp */; };
- 62B22BB9BBD312F90DD84957 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 62B3ECB6FA5947A660DAAA4A /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC8267215D8D6D9C5B4EF6CD /* OutputStream.cpp */; };
- 62B9D76E8372128E4618947B /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = FECF8197B2391C644A0DBBAE /* Metrics.ice */; };
- 62C1248AD58EE64FE19B614D /* ImplicitContextF.ice in Sources */ = {isa = PBXBuildFile; fileRef = ADE87D0700232F5E9EC96C80 /* ImplicitContextF.ice */; };
- 62E91FF77F62D8C8005C689D /* Instrumentation.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3BEE997F490F1B90AE8FF904 /* Instrumentation.ice */; };
- 6300D99A33A6DE986A9057BB /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01A223FD456711580DCF691D /* EndpointI.swift */; };
- 63CC541D2727A8DDEE1A44E9 /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 605659C3453F483E3F0728C9 /* LoggerWrapper.swift */; };
- 63CF71F5705213471BB4F6F8 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88A754C6553122C38633A5A1 /* TestI.swift */; };
- 63E728E78CD0B9CB234E3698 /* ConnectionF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B8DC2C52549E7BE254AE5AD5 /* ConnectionF.ice */; };
- 63F4DB291163CDD74DE09011 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 640AFD74ED41D88BB148E04B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 925DB5248C14B77BC3D63815 /* Client.swift */; };
- 641B8CFD07BEF0E93700B5FB /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 874074FB03119B3A6BA9EFC1 /* Protocol.cpp */; };
- 64255BA206BDBEC5EE7BBE53 /* ConnectionInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 09D1CEBFECBBCC3BE50933C6 /* ConnectionInfo.ice */; };
- 642B55420A967F22E3DDBF0C /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9090E70CCAD0C33985B09965 /* Identity.ice */; };
- 642E773D8D7FF82CA52A4BB5 /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F990810B7617DA7106535C4 /* LoggerUtil.cpp */; };
- 643B4CDD5D9D12D7717A65F5 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 52B82665E4CA54E9C28CC521 /* IceImpl.framework */; };
- 6485D40D94E3AA304DB4C753 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5F7E6B658E93B0786448C7D2 /* ClientPrivate.ice */; };
- 6490A06B380484887D1E7E99 /* Logger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E12E6EDB9DBD7DA624D4BBF /* Logger.ice */; };
- 64918F42FB16C08CE64EA461 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 649CADFDC5348427A88BCDF8 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 446EFF7ADC4B5939C4305AAC /* Server.swift */; };
- 64AEC57FC17BB5D16706F02E /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 64B51A06351A1DFB4F685AFD /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DE81360A81D49D120B6B4B5 /* Test.ice */; };
- 64C41FE8704FC794736200FA /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05F39D9B55130C164A5DD5F3 /* Client.swift */; };
- 64DFB4D35B093C8983B188D4 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB6228EBC14451C32B3FABAF /* Client.swift */; };
- 6503552BC1503EDCB9CE9D2E /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0557DD89BF16A3F68732BD7E /* PermissionsVerifier.ice */; };
- 6525CD5C9CB1C4E5ACFF83CD /* PluginFacade.ice in Sources */ = {isa = PBXBuildFile; fileRef = 66C88F295990C3B47386A522 /* PluginFacade.ice */; };
- 6540ABD403CE8E1C4A53FA97 /* ObjectAdapter.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9C03AE788FB60178B55DA0DC /* ObjectAdapter.ice */; };
- 6551ABF0F7B5DD767EEBA07A /* PluginF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3ACC00EC3978AA2856397560 /* PluginF.ice */; };
- 655718E02352FD1D5D606474 /* ObjectAdapterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 41A2A5BB85973F3BAD4272A9 /* ObjectAdapterF.ice */; };
- 6558B916E9007EAB38EAC202 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = FA07C456CDC45581C13A3139 /* Test.ice */; };
- 6586CB75891F51DE8077BEE1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4087F86ADF581D0B2D02509D /* Client.swift */; };
- 65A30E14B4D35C17346B2BC6 /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F96B6725563EBB8A4C22C9FE /* OnewaysAMI.swift */; };
- 665B2CA50DB7AC7A0A72C540 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 66885675BDD0DD7E2AFB0A35 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30EFA157E8237328FE7BBC82 /* AllTests.swift */; };
- 66BBC950B5C3C58EFB3B04CB /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 66D17D08A93618BE507487E6 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E5BEE9FCD147249B52EA9011 /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 66D403FBDDD1939363FC2044 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F3677CB2FA10D16B41580F8 /* PluginI.cpp */; };
- 6701C96474ADED3A25C8441C /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4B9C7AF49DDB6092DD82BC68 /* ServerPrivateAMD.ice */; };
- 67371FE4C62F1A29EA73635F /* EndpointI.mm in Sources */ = {isa = PBXBuildFile; fileRef = 98437340B4E11617BBA3F01A /* EndpointI.mm */; };
- 67A1B7743580FD240A811A30 /* Current.ice in Sources */ = {isa = PBXBuildFile; fileRef = 62E33380F585921F9A5DC522 /* Current.ice */; };
- 67E1D9AB513BB18478350DA2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 681379F69647D2A420E40DC8 /* EndpointInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = B5D8735FF60B61D4FC93C43B /* EndpointInfo.ice */; };
- 68298F9570C00E17B56DD3DE /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 972219A24F2C5C5705191006 /* TestI.swift */; };
- 688832FE0323B8144A72135E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 68C4863E0969994A67AA8C3C /* ConnectionInfoF.ice in Sources */ = {isa = PBXBuildFile; fileRef = F7DF8CD98667A56B105D8ADD /* ConnectionInfoF.ice */; };
- 68F1A88AFD001F1F6ED07CB8 /* ConnectionInfoF.ice in Sources */ = {isa = PBXBuildFile; fileRef = F7DF8CD98667A56B105D8ADD /* ConnectionInfoF.ice */; };
- 68FB86D06E858E54BFB78225 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 12FA5204D52643D5E55E36CA /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 6931640FC2BDA75AAB4CC52B /* LaunchScreen.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = 8981DD5DCA70CBDB4DF515AB /* LaunchScreen.storyboard */; };
- 6952C30C540827877DF4B06D /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE7536F921A465ACD1F7FA00 /* InputStream.cpp */; };
- 696FD382D56F1887DC2E5CE5 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C86D9EB201376B093A888135 /* Client.swift */; };
- 69B3930A3A66ECEBA052C732 /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6474371F9D4B7F7290A2EFB9 /* ConnectionFactory.cpp */; };
- 69B79A0433006704B21A6C83 /* ObjectFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = CC29C4495F4355C22DAE2870 /* ObjectFactory.ice */; };
- 69D69113C7DCC545F48893CB /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 034D5FF825FFE2A304A95FEB /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 69EBAAFA8200B607D58C72DE /* Communicator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 22B8F11BF7DF3C7A9FCC50EE /* Communicator.ice */; };
- 69F51AC2B241264F5CF40A9A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC36BC6D1565E1D09AFAE38F /* Server.swift */; };
- 69FB3E8E8FE33D8FFCE3EC7D /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3AF3636501CCEBD661504929 /* Exception.mm */; };
- 6A0C0ED660D99E9B73205C45 /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B041A98294800176C75C97EF /* Connector.cpp */; };
- 6A28EC29C0D34D518A673CD0 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C8E60A264C8456DE0ED5C966 /* Test.ice */; };
- 6A6B9A5D502DD82721F92BCA /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B74FA74740DAA7C3B4E0242 /* Collocated.swift */; };
- 6A8F8524F8C8BFF04E778C02 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 742F61019388E32D5A1F50AA /* Test.ice */; };
- 6AB5E2E35E1CA7DA58AA6B99 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FD34596289445D5D953E2D1 /* Server.swift */; };
- 6AD07565CFE7442086AFDA70 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 333B004D083BA02A84489B27 /* TestI.swift */; };
- 6AFF9834BD95FB50EBC66198 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 6B26878EB45EB14EBCF96988 /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B6450679899F9D620764A08 /* Base64.cpp */; };
- 6B3273D3693BCDD9FC81F842 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 228CABBDAD2E4CB85FA7A1C8 /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 6B5347B5084CE13DF766BBE9 /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17440D04F7DAE85D3D43E242 /* BlobjectAsync.swift */; };
- 6B5B5F59B724358081451EB2 /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CCC6391BF44ABA9EA371F984 /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 6B631830ACE16953A27F8760 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 532CA154F23513782E12F0A9 /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 6B8B80932A29A17396B9226D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06D16CE3A5EE261D52409F5D /* Client.swift */; };
- 6B923A83FDEF036FDD5323C2 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = 772409D1E7437F7872F894D7 /* Value.swift */; };
- 6BC0B3554B47D03BB8002871 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8BC8E349B2D4DDB3153DF69 /* ServerAMD.swift */; };
- 6BD30ACCF617D59322DF133A /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4A12F6C795182A146C127E41 /* Test.ice */; };
- 6C5DF668420BAF073617EB31 /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F4AA714EDBBA725022DE32AB /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 6C6A494E3AE23FBD09A6E947 /* libIce C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B2D710C4A79835F70B72D08A /* libIce C++11 iOS.a */; };
- 6CA67099B72C8E4F66ED0812 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 361E8C29CA5E426DB25B7890 /* AllTests.swift */; };
- 6CB4883291B4AB577AFA7A26 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = 26922D4B3BD8D332A7E61B62 /* Version.ice */; };
- 6CCBD9C24595F6D50FAC3847 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDE8895B8D3A8C48B371CB17 /* AllTests.swift */; };
- 6D2765DDBE9279B9821D99CE /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99666CECEA6438765B394579 /* CertificateI.cpp */; };
- 6D36B43597323169D423D4F9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA3A0EB2D8C3D84B1A3E88 /* Client.swift */; };
- 6D8EB8581084DBEFFD79648A /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D198723359CE7598DAED2EEB /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 6D9836E62C8D5D17FBAFA759 /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = A564D8841C0E4D61A91B76D4 /* LocalExceptionFactory.swift */; };
- 6E7AF7A72DDE58DF1F60FA74 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62D24BEFA55328A8DBA6A3F4 /* Client.swift */; };
- 6E8B2E718BD9D980967B4159 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74414740EAAC22AD8701B446 /* Client.swift */; };
- 6EB492711748AA4C7AA2ACD8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA3A0EB2D8C3D84B1A3E88 /* Client.swift */; };
- 6ED30242B77E6169037B5EE6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BD61767B51929724F9CE9AF /* Server.swift */; };
- 6EEA4EED28C5D43552DA6492 /* ImplicitContext.ice in Sources */ = {isa = PBXBuildFile; fileRef = AE9D2B607B5204A4D8E9624F /* ImplicitContext.ice */; };
- 6EF2EB32DBA9B09522E6B1C0 /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0308C33B62C738A6BCCA5F8C /* Proxy.cpp */; };
- 6F2327539355FC45EB1F9347 /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = A0662C2D0BCCED8D856B24A3 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 6F4E96D3D35D093CC6DD29C1 /* Main.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = 65FF5D01B46A1B78D9156A2B /* Main.storyboard */; };
- 6F58FC210AC7A575FBC66FE5 /* ServantLocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0B14E705E07F0D0D4EA85665 /* ServantLocatorF.ice */; };
- 6FDAA2291B14E3E7D2FE837B /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4E0AA9FBEC424181F02EF258 /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 6FE9282F3F4933BA02371F0F /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 688BF037AD7D7B8AEEC5D1BF /* ServantManager.cpp */; };
- 700153A0C07B639ADC3E4029 /* ValueFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = BD42BAADD50274E65B29EE2F /* ValueFactory.ice */; };
- 70028BBB8E930ECAF32F3596 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 633A5792AB562E47E7D9B487 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 701C97AEFAA664D7FEB07E15 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB6F34328505B8307EF4E2DC /* Client.swift */; };
- 705280204DB4DFF6A35027CB /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = 407F44656B90271C8A2F226F /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 708549C06C95B3C2FC52FB69 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 70C35F619BF5F5C3D98EA732 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 70CF299CF108872709974CB9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D5813108D63FD32A1C3EF34 /* AllTests.swift */; };
- 712C2E5128E1CB683B941B16 /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0308C33B62C738A6BCCA5F8C /* Proxy.cpp */; };
- 71604ADCD5D16A1B920D78C4 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0A0FB5971AA10641F5FFDF /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 7162F73F6D2BC9A3E37D02E1 /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 316C45F32FFF05031C96287D /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 716C48A19582C6F8B96C1953 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 7185824B76F97B4907D512DA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 719B0130CE73E10113A5458D /* ObjectAdapterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 41A2A5BB85973F3BAD4272A9 /* ObjectAdapterF.ice */; };
- 71D353CEC21B4A0BDE489094 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70D8F4B545E7DB529C8B6466 /* AllTests.swift */; };
- 71DD9307AF20B5B211870E7A /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAE305163CFD14F81D434502 /* ProtocolInstance.cpp */; };
- 71DE517C29AD16C6BC829B3C /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8E6A82D7E03BC98B98FD1BD9 /* EndpointTypes.ice */; };
- 71F9907830CFC8D24DF1BF72 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A99EED2576E4B2717BF7F69 /* TestAMDI.swift */; };
- 7204DD0A01D871C36C424B01 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D0030849F57FCFF88081EB6 /* Random.cpp */; };
- 7217FCB6DB4D5172F79E9A0C /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6856EAB3EE7EA36D427CBC6B /* SecureTransportPluginI.cpp */; };
- 721E54AA66517735C89B582C /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = F25EF4101674FED1FCFD03A8 /* Object.swift */; };
- 724D828385D720284796F517 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9CDFC4CF614616375CE09C76 /* Exception.cpp */; };
- 729FE15A31066558852A83AA /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1750BB621C7A498239A5F893 /* Properties.mm */; };
- 72D7A8D1D83783B4592AE5DF /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 794CB5C40C28921A7F8899C9 /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 72E632D9B3ACA247937351AB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 72FAC2D735524D995932B204 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 731A3B2EB4D0E0DBFC5402B0 /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3D8DF4CB3647850A85D5025 /* BatchOnewaysAMI.swift */; };
- 731E9918A631E48DA9E24944 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1163261D5D5B1E89E8CD4F19 /* ServantLocatorI.swift */; };
- 73657CAC5EECC0DB18485783 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 76699AC2F244DA402D7D78F9 /* Test.ice */; };
- 7386416904F42C08FDB2BA9B /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B16B70F3C1E50EC4C26CF18 /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 738E8F7FD7B0AEDA07304DFE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 739F425E7825CB9260DB270D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 73FD6C80D25E74B38CA4A27F /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E565EEA036FCDFE7E2231B17 /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 7449AF9F12B24B130E78657A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 750A26A721C8B84056389E48 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B945AE7D2A5E38D6EF889CCE /* HttpParser.cpp */; };
- 750B36F9818F802F75F5064E /* ConnectionInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = FBA6181009014692E2D8957F /* ConnectionInfo.ice */; };
- 7538E7A83F9AEC954E427888 /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = BC022737AB290471B0DB3DD4 /* Admin.ice */; };
- 75F7594DA6C2D727A79E3789 /* ConnectionInfoF.ice in Sources */ = {isa = PBXBuildFile; fileRef = F7DF8CD98667A56B105D8ADD /* ConnectionInfoF.ice */; };
- 75FB639744152270317EFEE5 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7851F7E848C61460B1283AFA /* UdpConnector.cpp */; };
- 7605A56C2B9EE9C4C7435C4E /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = BC022737AB290471B0DB3DD4 /* Admin.ice */; };
- 761EC015470DBC155131FC21 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB6F34328505B8307EF4E2DC /* Client.swift */; };
- 762B84AC8461ADD22D3BEEDA /* Assets.xcassets in Sources */ = {isa = PBXBuildFile; fileRef = C7E63AE45231F2F2078ED04A /* Assets.xcassets */; };
- 763E3AF02CCB2E6F66942804 /* ValueFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = BD42BAADD50274E65B29EE2F /* ValueFactory.ice */; };
- 76B756DA47BC1896288FDE46 /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D33BA2168DC65471FF754DE9 /* ReferenceFactory.cpp */; };
- 76CC9AB042A96179C77C2BC2 /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81952BA176E8390931A31646 /* ObjectAdapterI.swift */; };
- 76CE3F0C1A83651E7366CED5 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 341C025BDAE25FEE0B7FC5BC /* RemoteLogger.ice */; };
- 771E4D880F29EFEFB1DED85A /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA3BC4A8C6D8692B2DF2AA9 /* Instance.cpp */; };
- 77244686C7A4170C5AB0DCA6 /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 535F8D91A4A19A5BFDA99EE5 /* ConnectionI.cpp */; };
- 7732E22078DE9590E68C3C20 /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1750BB621C7A498239A5F893 /* Properties.mm */; };
- 775C516D008C810A3CA0344A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 77A9D957AEFF645C4C3D9A70 /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F6F943274DED61792E50D25A /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 77ADD5BC943261E117AFD8AC /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D7D240CBFD7A18DC4A68866 /* ConnectionInfoFactory.swift */; };
- 77C26EBAEF42E3E52EB8F0FE /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2196E4A5420376F7F320400 /* Reference.cpp */; };
- 77C957C2DF414CB1B90CC745 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30294CCCA80848D1D31F2B4D /* AdminFacetFactory.swift */; };
- 77CABCCD16D76F4526A0AE0D /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0C28D3AB8568CED3044958A9 /* Router.ice */; };
- 77D2D004EBB6489E3ED2DBA9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E97BD444178119BC32E07B8F /* Test.ice */; };
- 77DEE8FB1E2DDC0703809438 /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0AD95718A26B63BB13863BA /* Proxy.swift */; };
- 78109C3486535A002582E4D8 /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96C14F92E4BD1A78F04D6B73 /* PropertyNames.cpp */; };
- 783B385557C8B5E081BC33AB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 785D4A0DB5DE2E26B05F036A /* PermissionsVerifierF.ice in Sources */ = {isa = PBXBuildFile; fileRef = FD2995A6E792AC39FFA9D59A /* PermissionsVerifierF.ice */; };
- 788166A177E99EBA476B2FAF /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66ADCED501F072AE2B41A2C1 /* DynamicLibrary.cpp */; };
- 78A7DA813FA4F84F99EA128D /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = 07FB3A14A7C0F45E500CDD83 /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; };
- 7923C416400F47B059780FB0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88C3EA2CCA4EBF7644C76309 /* TestI.swift */; };
- 798F29F7A3945A44937BB774 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 79DCB796CB9CE890A50F5DEB /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91FCB36988ECF92BF0E1B88A /* IceUtil.mm */; };
- 79FD41D8A0E6738D16DCB6C5 /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC8267215D8D6D9C5B4EF6CD /* OutputStream.cpp */; };
- 7A825BF9546A11230EDCFF29 /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC0001929385A130EAFD24B /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 7AC7C8D9E9C1D20AFAF50D3F /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29608E038E5A3187528EA62D /* ProcessI.swift */; };
- 7AF32E930EE8A9DF0A662C53 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 7BA6B9170F7E9CE3B9035F66 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88A754C6553122C38633A5A1 /* TestI.swift */; };
- 7C1EBA677D2C11D8F6EF10C5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 7C3118F3FA99D53B567B4F1A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 7C31BC52D57C1D75E063015F /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = ABB07381540E04817390A3ED /* TestAMD.ice */; };
- 7C4BA0EF9A290CBE73322B1C /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4D476AE3362B76958AE23E2E /* Communicator.mm */; };
- 7C57EF3273681C4DF3EBAA55 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 59BDA919B81B67B5D58B445E /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 7C5AF2BF3DFC5FB66C11F223 /* Instrumentation.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3BEE997F490F1B90AE8FF904 /* Instrumentation.ice */; };
- 7C7D091B19607600C225FBCB /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E2229E45A7997941DA6BE77 /* StringUtil.cpp */; };
- 7CE893D567DA03442A189DB3 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 27F5894F948B4EABD275EA37 /* IceDiscovery.ice */; };
- 7D063EEF271A17689C3F80CD /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7CAC785DC6DD5CF3D1EBDF /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 7D677CCFD16F3333251C0067 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E11927D502E93CF55F23E448 /* IncomingAsync.cpp */; };
- 7D9B04AF11C410E3FA59B35D /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 7DC2C6A815F0FBE9A372D3CC /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6272F7EF8D6AB7F8554B4EF5 /* Util.cpp */; };
- 7E36D86CDB57DC7B42C9B1E8 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 7E63E756DB0957DD9AC346AC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 7E96B404E0B27963BC11540B /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 7EEBA3FB68E32D80041A0693 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 7EF134618AC224C907B79423 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7671A9B2009FB71C4C5844 /* Server.swift */; };
- 7EFB790E7F5F0AA192819A6A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB85FA1A85C83E850BEB6B6D /* AllTests.swift */; };
- 7F0F7528AC0CE30B40C48C14 /* InstrumentationF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B171708BCC523826FFA93B00 /* InstrumentationF.ice */; };
- 7F4B5B56DB560EBDCD27282A /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A99EED2576E4B2717BF7F69 /* TestAMDI.swift */; };
- 7F6C7BF618900293EE746C1F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DCD33B375F6BD8CCFDC4458 /* Client.swift */; };
- 7F70DA48F204FC66F1053437 /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91DCFB9FB66B3F09AD4D70C9 /* Cond.cpp */; };
- 7FEE79916B57CA87818C161F /* Communicator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 22B8F11BF7DF3C7A9FCC50EE /* Communicator.ice */; };
- 80109DA2658F8EF1B4846ABE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9688D2BFFD3AB9CA38696B81 /* Test.ice */; };
- 802105298F22AE2B330BEC44 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 8039A4DBC6B2B5DF2247E0FC /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFCBE8EAA93ED627F6C1336D /* Client.swift */; };
- 803D2402606DBE2A16195FF9 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = A7B013E5D11F9D9B67E1C837 /* UserAccountMapper.ice */; };
- 8092868ADE658959C0BABA27 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 8094FD5FCDEF265D590A8307 /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = C8694BDBD11F2B3C0C6735E3 /* Endpoint.mm */; };
- 80F2C0D12B1F57310C1CC9BB /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDBEBA80F9238CA9CBFB341A /* SysLoggerI.cpp */; };
- 80F379217EBC666184C9E5F6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 811524042B94B8EA461D3629 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C6244048BFBCED451F04E34 /* TestI.swift */; };
- 814CFD2F34FBFDF2B2E64265 /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66ADCED501F072AE2B41A2C1 /* DynamicLibrary.cpp */; };
- 814FB37F5CB10EA501A31E44 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 81589CC7D54C9613E135278B /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 60648E86C0107835E62067FD /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 827893060CDDC3BE2EBE624F /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = EE16F167CC49EDDC79F69F5F /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 82CC05B3566DEDE31E2B0B96 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BF1C026046DF91425D0C38C /* AllTests.swift */; };
- 83211946775D1E21DA20BE77 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E24BC43BD797306F62D06810 /* StringConverterPlugin.cpp */; };
- 833F837CB16FBA3BB6EF63C4 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65102DC69C890429DD83B912 /* Client.swift */; };
- 83639B8515CF762B2C17BE05 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 63A75A7C192FABC8F78F064A /* Metrics.ice */; };
- 839127A9FC2C0B237EC83DEB /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E239CF9DF24E5B58D95D4D1 /* Client.swift */; };
- 83C2205A9D39664DAFC27958 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F3677CB2FA10D16B41580F8 /* PluginI.cpp */; };
- 83E16D85F807753AD8AD1DCF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D8E357652C5E3E692CCA7295 /* Test.ice */; };
- 83ED49E3C8427649F106766E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 83EF171F3C15F9EB1A8B221C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56C3F3F779CF422987DC4B6A /* Server.swift */; };
- 8432169407A6B95348CDC6DC /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95BF6E1AA2CD495DABDDD13E /* ServerAMD.swift */; };
- 845246051CF3918C88D34327 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 8453296DB4F064A240A848D2 /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7AED884E1A03A999C4E251E5 /* Transceiver.cpp */; };
- 859762D8F01EA096500EBA1E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 97BEA79F0125D279F22C3183 /* Test.ice */; };
- 85AEB78708B4EB62281B5E37 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 85B91B9E13D8C3FF2C915BBD /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8915DEC95041AA153E5919EE /* TestI.swift */; };
- 85BB1690D87F444AE5F98D22 /* Endpoint.ice in Sources */ = {isa = PBXBuildFile; fileRef = 04D0F68E7D927E1D94AF8316 /* Endpoint.ice */; };
- 85EB7F2BCE3411BBB33D1EF7 /* Plugin.ice in Sources */ = {isa = PBXBuildFile; fileRef = E45CA56C87B74048C2351B64 /* Plugin.ice */; };
- 8626A33CD4D9034BB6DEFB60 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 864DA378A7B1BC1AA1A0E132 /* FacetMap.ice in Sources */ = {isa = PBXBuildFile; fileRef = D3EE1B4FEF0422D2F4B67156 /* FacetMap.ice */; };
- 8667ECFFEA53DBC95F7BFAC4 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A46D91D6CD644BB8B5950A /* Server.swift */; };
- 868DF4AD48DE8CE6024E04C2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 134A1DF02D07DE1B48BDD9E5 /* Server.swift */; };
- 86AF70F6D8DB4435A2F7A712 /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 688BF037AD7D7B8AEEC5D1BF /* ServantManager.cpp */; };
- 86B5210F07AE6DF54353831F /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5A5BCF475EA7FB8C43E528DB /* LocalObject.mm */; };
- 87032F3435B57F076B22B06C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E456B634781CC6536E96BA61 /* Test.ice */; };
- 872F8D162562E2AFD32AD4FB /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D032685700F557C2A42FC11 /* AcceptorI.cpp */; };
- 8732BBA19CC4134C81D3C62C /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = D8B59B23A4678E945FD1C27A /* TestAMD.ice */; };
- 873A13381FCAE6AA26891DAB /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 8741298BBC0DD27F48D566F1 /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C57C835F74C40FCAAC884ED /* ValueFactoryManagerI.swift */; };
- 878C8D4E684309EB5ED408B3 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 87B190044829C3F2177B5517 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0AC87AC3932C89B1E8784540 /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 87D26FE9BA5C33473E55C3BF /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 632C58E40F3481563D19816D /* UtilException.cpp */; };
- 87D541263CF3BC692291E655 /* PromiseKit.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 88535F107BDD5E0E4367B555 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 070D5938E6B942DCE7794856 /* EndpointI.cpp */; };
- 888EDD756B5DAB3CA683CF22 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 8891C23B457EA8F398F2483C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC91A6274871AB414E3DF146 /* Server.swift */; };
- 88B6A1F202506947B5326057 /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = FAD293D61093C51F5D7F2162 /* IceStorm.ice */; };
- 88BBADE5CADF2936A5C41194 /* ServantLocator.ice in Sources */ = {isa = PBXBuildFile; fileRef = D75D40BC53137EF8657BC4EE /* ServantLocator.ice */; };
- 88C284CD469B597965D70A28 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 88E0AD692B60C950CBB0C870 /* ServantLocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0B14E705E07F0D0D4EA85665 /* ServantLocatorF.ice */; };
- 88F47A9DEDB3BF05F8C3705B /* ValueFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = BD42BAADD50274E65B29EE2F /* ValueFactory.ice */; };
- 89195EC516C16B5740621FE0 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = EAEA6F78056CA0855F0D7E27 /* PropertiesAdmin.ice */; };
- 891C91DF3632196214D0B7A5 /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E4EC875DEC29DB7D493FABC /* ProtocolPluginFacade.cpp */; };
- 894717415CE8670F958BE142 /* ServantLocator.ice in Sources */ = {isa = PBXBuildFile; fileRef = D75D40BC53137EF8657BC4EE /* ServantLocator.ice */; };
- 8965C9F45883C9F5DCD12B90 /* PropertiesF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B3977282F7A97C8FAFAC2272 /* PropertiesF.ice */; };
- 896707A3866189FE9604C6C1 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DE422E2E8A03B7162B8A1B1 /* CFNetwork.framework */; };
- 89ABA2C8B9671AD91EADA8DF /* StreamConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9BA1FB81A16EBA643FD14FD /* StreamConnector.cpp */; };
- 89E476CF96658C3F1153534B /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30085C9646A152B2D6C70FB0 /* Object.cpp */; };
- 89F915D5FC8DD60A40814426 /* Connection.ice in Sources */ = {isa = PBXBuildFile; fileRef = E5F69164D6EF6D67644585DE /* Connection.ice */; };
- 8A156E5A56A0A715877F13E3 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 63E5E1D78291FE22A632016E /* UIKit.framework */; };
- 8A1E8C425FCCE1C06DE459CE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48274B4B5C7A372D63FBDBDD /* Client.swift */; };
- 8A21B10A9CF811CF6632B347 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 444E24597A92CC772C9E7CC1 /* ServerAMD.swift */; };
- 8A2F030D51E6C2DF1AF0539E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 8A6CDDEB639F85FBCED15B8C /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 605659C3453F483E3F0728C9 /* LoggerWrapper.swift */; };
- 8A7DFFC830CD552359F494C5 /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = C16D3B2B5C0920A104C079FF /* Clash.ice */; };
- 8A9160FAC92352AD0C7D05FE /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 734A694F78C0E5DB148EC8DF /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 8A94F78C7761A3839CAD1E28 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35304D3B36A6003F44E7DB80 /* Shared.cpp */; };
- 8A994E04EC899DBAF6A3A8C0 /* ConnectionInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 09D1CEBFECBBCC3BE50933C6 /* ConnectionInfo.ice */; };
- 8AA8F52FCA75ED26D482FE87 /* LocalException.ice in Sources */ = {isa = PBXBuildFile; fileRef = DF32ECF6778150AC88459CEF /* LocalException.ice */; };
- 8AD386A1BA988E999BA3724D /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 084D0AE194DE5B466ECB36A8 /* ObjectAdapter.mm */; };
- 8AD5D0E5AD8EC604ED3671E6 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28567530F9E0A117AC6E5ADD /* TestI.swift */; };
- 8AF0355E332538FCA5552A77 /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7AED884E1A03A999C4E251E5 /* Transceiver.cpp */; };
- 8BFECA761648A58F3B36383D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 8C9C92E6A14C3E4C214BB350 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 8CA363E06459CC47FE221D81 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 8D15B9941004F1A577E56CEE /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B9E64C4322C1EE4927BC863 /* PropertiesI.cpp */; };
- 8D3F9714B8C5C2DBADFC47DC /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D858BF30039875BFFF7B4678 /* Time.cpp */; };
- 8D69AAB435F0F766FDBF30C2 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = 26922D4B3BD8D332A7E61B62 /* Version.ice */; };
- 8D7347C0FE166EEC6D67EBEF /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 8D741451F644DD691B56B4A5 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 8D7B476812F8307B3E899070 /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D7D240CBFD7A18DC4A68866 /* ConnectionInfoFactory.swift */; };
- 8DA67CE61EC2521F273035C8 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = F622A140E6FAD50298A18A5C /* BuiltinSequences.ice */; };
- 8DE9E417AD6EB7537B91EC97 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D5813108D63FD32A1C3EF34 /* AllTests.swift */; };
- 8E37830E978896E7C5883A71 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 94296D6FA0B4EAD77524CA74 /* Metrics.ice */; };
- 8E66255116CBABB5AD0D23FF /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4910D3CB2B4F6A0F1A13C73E /* OutgoingAsync.cpp */; };
- 8E742E8FABF8E67CF0892A3A /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15CF7EB078034B9AD74C30C0 /* CountDownLatch.cpp */; };
- 8E82B1AD6E3F892B120E00E0 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = A7B013E5D11F9D9B67E1C837 /* UserAccountMapper.ice */; };
- 8E9311C49765A5DDB222ECF2 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73F31FDC9B8AF9605CA88F5C /* Collocated.swift */; };
- 8ECD9503A3FF35020FC70748 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4B3C0B4156CE5D3101AA5A41 /* Router.ice */; };
- 8F30C85D0C80E51F4320E765 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEDDC5B3EF92448FC0068999 /* TestAMDI.swift */; };
- 8F4C2847C897A5FDCF09A47D /* ServantLocator.ice in Sources */ = {isa = PBXBuildFile; fileRef = D75D40BC53137EF8657BC4EE /* ServantLocator.ice */; };
- 8FAFA5BE62F62DB5DD279DF8 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6272F7EF8D6AB7F8554B4EF5 /* Util.cpp */; };
- 8FC25EC94FC0B4A2A48C680B /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ABAFBED8C90A204AFA67BBF4 /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 8FDFEC1BEF5F8B5C90FD4ED8 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 90051D8CE444BD236EF17610 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 9013ECC26187C431BE27D562 /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8E8BB0CB5BF9A48E9E7CC2BF /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 9070D019E4D72FB4353DEE02 /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8257492D8853CD3D7B39FDB7 /* PropertiesAdminI.cpp */; };
- 9133D23A530719E0746F4364 /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 731F2E91CB97626EE8C88C79 /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 9141955D160DF69F3CCE02A9 /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 414F23E2600D35845151776A /* LocalObject.swift */; };
- 9216B08CF5D847C6ADD1EAB3 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 41C480006CA91E286A5DCD77 /* ServerPrivate.ice */; };
- 922DE878739C3FCB56842609 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 926F73E49F1D7F812FD6675D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 928328B6299ABE507C98FCEA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = AED68CB5181C8322535C8B0F /* TestI.swift */; };
- 92D160E56A3BCA991F0822AB /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0B4A2E3C7C18AD9170E2DFEC /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 92DFD3619F4AAA66A13EAD07 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 05CCFAC55D71DB3861715464 /* Test.ice */; };
- 92EF3B05EEA2585534B46599 /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B331105BF98C61980A1A1C39 /* LoggerI.cpp */; };
- 9309F58619FF54CDABE40A31 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F0A2495853FF103040F35EB7 /* IceGrid.framework */; };
- 935B2FE8038A045CF2520EB3 /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD9A7AAD93C61A24508A0108 /* Mutex.swift */; };
- 9375198C4737222DE78053FB /* ConnectionInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 09D1CEBFECBBCC3BE50933C6 /* ConnectionInfo.ice */; };
- 93AFE41C43DD950A0EC52F69 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 93FAB59C5922A149C8EBE309 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88C3EA2CCA4EBF7644C76309 /* TestI.swift */; };
- 9404CE665BB6F8F718E5D25D /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BEC7B17F4C2963599CD0381 /* TestAMDI.swift */; };
- 944B0EF7F8E6EC930934613E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 94FAA78E6C6108FE7B175D6A /* EndpointInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2CAAB9F27FD8B9C3DBD01B84 /* EndpointInfo.ice */; };
- 9543E6BC2500744E63DAD61F /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 02DEAA767E87169F7169F463 /* IceStorm.framework */; };
- 95691AFE7B103A0599B3E838 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB16C7E23D561A45A823E737 /* Client.swift */; };
- 956C41E1539F1EF42B4580C9 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 532CA154F23513782E12F0A9 /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 95E16A6701D5A70C77D9635D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9B074A6A8908048DAE95EBCA /* Test.ice */; };
- 95FCDCDA168DF72971E9C87F /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0B463F676E7D216881CBD82 /* TestAMDI.swift */; };
- 963B1E199F497D7BF606E036 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0D21CD021F167AEAD53D54A /* AllTests.swift */; };
- 9673C8E790CD6C1BBA803602 /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B164AFAD89E661E862701E3 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 96BFAEED52F6401122AC35D0 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 96D56ACDC818355095D76231 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 9743399E90C250F9E92AE631 /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60FC1B97E8333ECD56618EFD /* MetricsObserverI.cpp */; };
- 9799C395B67768E7AB9ECA68 /* SliceChecksumDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0E6E56298993D5697BF2E4ED /* SliceChecksumDict.ice */; };
- 97EEAC73B0EAD3A2641C53FB /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2996F3F1F4CBAF613DAE139D /* EventHandler.cpp */; };
- 981D4F091C6B3DE7242F4312 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98F5968AA05F599244249E40 /* TestI.swift */; };
- 981FE6361D4788EE5CF941D9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 982A8D27FFF3D9494D60A7E9 /* Properties.ice in Sources */ = {isa = PBXBuildFile; fileRef = 14187A00ECA6E25D40B21B3D /* Properties.ice */; };
- 985FD86F7C86870A15348404 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFB394B08836052CA7E4B822 /* Util.swift */; };
- 98A747B07EB0C80D2C4FCDE6 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67E0822E520FD5EE3BCFA0E1 /* ServantManager.swift */; };
- 98AABE262A4428383B116F3E /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E99C484A830F853F840DA09 /* EndpointFactory.cpp */; };
- 98B0F91E264ED3A4ED99D587 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C86D9EB201376B093A888135 /* Client.swift */; };
- 98B7F7C100F56ADD4C9C474B /* PluginF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3ACC00EC3978AA2856397560 /* PluginF.ice */; };
- 98C8A9BE4F0D788403BF3A7F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- 98E5B16EC582CA869C935C7D /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = EB2B3D47708A5B8E3B97922A /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
- 992386A54D1B669DAD92BBEF /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC91A6274871AB414E3DF146 /* Server.swift */; };
- 998238BE7058B7C81D9FCA6C /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 61F2BD2F23764D117F1428E8 /* Locator.ice */; };
- 99AA4B20D773C243AC47B972 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9CDFC4CF614616375CE09C76 /* Exception.cpp */; };
- 9A0467DC813510537079200A /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3EEFF728E276BAA633A852DB /* PropertiesAdmin.mm */; };
- 9A186DDF9ECC5A18A39628CD /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B041A98294800176C75C97EF /* Connector.cpp */; };
- 9A33192F1F4E1E1224C55044 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- 9A5C17625D8265169E146210 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 444E24597A92CC772C9E7CC1 /* ServerAMD.swift */; };
- 9A679A6ECCCB225C623D3069 /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B11CCA200A0ADBCA9854BA2E /* IconvStringConverter.cpp */; };
- 9A6C60AD4A383DFE6EFBB063 /* ObjectAdapterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 41A2A5BB85973F3BAD4272A9 /* ObjectAdapterF.ice */; };
- 9A9EE511CC310844E5CE3585 /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3C1C6EE40F63454C782F7A99 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 9AC3CA301DF5CA4CFDDC2C66 /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = C16D3B2B5C0920A104C079FF /* Clash.ice */; };
- 9AD0A80EC2A1EDD05755860F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B586192AD27D885AC465F3CE /* Client.swift */; };
- 9AD5A1DDD96326402D938EDD /* InstrumentationF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B171708BCC523826FFA93B00 /* InstrumentationF.ice */; };
- 9B1575D9015CF2AD5D8F03EE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 9B287770D5B53CF962394ACB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- 9B47AB28530E5C1B1BBF8F54 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 9B74FFBE1BB93550923175B7 /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 414F23E2600D35845151776A /* LocalObject.swift */; };
- 9BD183C2021C52983E3B41CC /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5FBA5C3DA77A619F58782F7 /* PropertiesAdminI.swift */; };
- 9CBC6D6C903233613DA50B09 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- 9CEA20183F09714D60FF0D61 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3AF6048FF1364F79B74A51B /* AllTests.swift */; };
- 9CF0C4AFDE4FD59345982317 /* PluginFacade.ice in Sources */ = {isa = PBXBuildFile; fileRef = 66C88F295990C3B47386A522 /* PluginFacade.ice */; };
- 9D0C8EB77EA5C01D69D758CD /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 9D0F2970BD8E59C14973448F /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E565EEA036FCDFE7E2231B17 /* IceGrid.framework */; };
- 9D2B1958AC2D265D5154B5F2 /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E2221223DDFEC20D1310DB77 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- 9D4761E17CECA1C1A394D18C /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01A223FD456711580DCF691D /* EndpointI.swift */; };
- 9D47C81EA4C359302C07BD29 /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1442BF82598B6CA3BA82A542 /* Options.cpp */; };
- 9D8688F9ED59D8928FBDA963 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD7671A9B2009FB71C4C5844 /* Server.swift */; };
- 9DB82121D979CA1600CAEB97 /* LoggerF.ice in Sources */ = {isa = PBXBuildFile; fileRef = C3EB1A27FAA5ACE22108F3FA /* LoggerF.ice */; };
- 9E36EA3A0B691FDA20A23D8D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 9E5C5F0CA691D5BE11A69922 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- 9E8F100CEE002672F4D21E84 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 147D40176DDCC60B8AE883A8 /* IPEndpointI.cpp */; };
- 9F35258C7D128FDD98EEA83C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- 9F406EA5B6FBDE9700D3224B /* PropertiesF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B3977282F7A97C8FAFAC2272 /* PropertiesF.ice */; };
- 9F569FCDB2B250AFCAE321E2 /* ConnectionInfoF.ice in Sources */ = {isa = PBXBuildFile; fileRef = F7DF8CD98667A56B105D8ADD /* ConnectionInfoF.ice */; };
- 9F9AE3472F189FF8CA3A1750 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 9FAA067E31E901AF579CD017 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- 9FCA19443E13F4279D9F7208 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EBDA0CFEACD3987EFAD6252 /* UUID.cpp */; };
- 9FE76287384445DEB3DC1308 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- 9FE8D7062C96D3CFD60B0BB9 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC9D24A849C7A636BD399949 /* ServerAMD.swift */; };
- A0109330F6E0EA98DE3ECC7E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = DD8BE18EC250A1A64787067E /* Test.ice */; };
- A0886BB9C59C0E17E8322B1D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- A0A18E53113890A2BD5A8DE6 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D198723359CE7598DAED2EEB /* IceStorm.framework */; };
- A0EEFB807B34A8ECE4682A6A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FAC631A855367CC829C10BE /* Client.swift */; };
- A117BC110DD5BBDC1F37A4F8 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- A155BA887F907B71955E9DD9 /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0CF1A05BFD1DFE952E400A29 /* Key.ice */; };
- A1A620E9DB84462184315B22 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EECE59D208760AAEF8F05D43 /* UdpTransceiver.cpp */; };
- A220FE867D11E6AB55B176D0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- A24FF1D4788E30A1CE4206B8 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- A25CC69AC08BF7DD465EF0E8 /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = EB7F09E370CF39B0DC8F9EED /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- A2663F13085DC6EE69965B2E /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = E03F4146023712CCF5C90907 /* Process.ice */; };
- A26875C1CED10366B2D594E0 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 20E8394869BBE3A6A0E8B73A /* IceImpl.framework */; };
- A281CC63F38D6F0F439ECA13 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5F9951678F470F12C213085 /* Instance.cpp */; };
- A2BA50BBEBE11C1C85DA9BD1 /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 21101A4A8B29F9285DA12AC8 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- A2C553DBD89CDFA82E9F4251 /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D80900AAE1BA05236D22A848 /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- A3860938A1EC0A2909BF0FBA /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = D287C5BD715B37D926214E22 /* Server.swift */; };
- A3BE3F1ABE0396063FF5584F /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DFEA80D8F03282B1A5F1A49 /* Initialize.swift */; };
- A3DCA54B5E5C455A52E937D1 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4A12F6C795182A146C127E41 /* Test.ice */; };
- A3EE196609ABAED6BC450CC2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- A418F7544F8C3061C299B5A2 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4BFAEBBA896E626D1112663 /* main.swift */; };
- A4ADC2F3DEA003CEA38D801D /* TcpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33B27BAFFD57E6205ECED1F3 /* TcpConnector.cpp */; };
- A4AE832A7D8ED88D3B30381D /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51AADD84F9FA058A6B272117 /* SecureTransportUtil.cpp */; };
- A4C9A0E32A1125891A276902 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59B7C9A405B6E7E1BDC347E2 /* InitializationData.swift */; };
- A5128EBF0B37ACD4DCC1AA8E /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9CAE747331B4404A63FE18A /* Collocated.swift */; };
- A536372C408EE4D8F5F38C5A /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3EC2422F7DF9807B4B59F69E /* Glacier2.framework */; };
- A54727F431BC298674263855 /* Current.ice in Sources */ = {isa = PBXBuildFile; fileRef = 62E33380F585921F9A5DC522 /* Current.ice */; };
- A56E6386FCEB0F807CA1CE3D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0D21CD021F167AEAD53D54A /* AllTests.swift */; };
- A5A998167C67C67F8FFEB089 /* Instrumentation.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3BEE997F490F1B90AE8FF904 /* Instrumentation.ice */; };
- A5D91D7B065BF0E10CA9F7F7 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- A5F986219A48C42901767E81 /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A07ED7D698A3B54594C912 /* SecureTransportCertificateI.cpp */; };
- A61A68DF2694EF866B556630 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- A6253A99C1D07525B72700F9 /* Connection.ice in Sources */ = {isa = PBXBuildFile; fileRef = E5F69164D6EF6D67644585DE /* Connection.ice */; };
- A65119A8143A7478D1CD3BA4 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9FD432169D0F2D2F20892D4D /* Test.ice */; };
- A6BE1645FB7B0B6D7BD7E61E /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BCC9499232F3ED821955D3F /* Buffer.cpp */; };
- A6CD51C42649A6CE9C059B23 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 338881AF6EF560BF91024571 /* Client.swift */; };
- A708E6AA802F6E9094DB3114 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 996ABE607D675178248C81FC /* Security.framework */; };
- A7373F94BF056BF204BD716B /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBAA9F213C418E18F89E8552 /* LocalExceptionDescription.swift */; };
- A767CFF55AE751A58BCB787C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- A819C21DB09268A2B2C584AD /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- A81BB1ACE817320018701973 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 972219A24F2C5C5705191006 /* TestI.swift */; };
- A88B99A39F0E40347696E100 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- A8B4B250FDA8D21046296359 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- A8F555AA283DCB17C7D3DA91 /* EndpointInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2CAAB9F27FD8B9C3DBD01B84 /* EndpointInfo.ice */; };
- A91830602073CFFC81906084 /* libIceSSL C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 43EBC589686D2144CFD9CB97 /* libIceSSL C++11 macOS.a */; };
- A95D2F39E4812174049B925F /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2B59DE6E7E31115EA6E52219 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- A969A0A31471D83E98E5EF74 /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B164AFAD89E661E862701E3 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; };
- A99CB209DC7D9ED75029DC54 /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BEEA6951A353148A9BEC38D /* SlicedData.cpp */; };
- A99DCF609EEE269725883222 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 97F654181891F3B80AA29092 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- A9BA17D3D6B7AAE85E45AD86 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- A9C5591D6C67D20EBED93CD5 /* ImplicitContext.ice in Sources */ = {isa = PBXBuildFile; fileRef = AE9D2B607B5204A4D8E9624F /* ImplicitContext.ice */; };
- AA5A4567B2B64F2DA135A0F8 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1D63C4A474EDCB9B48A8908 /* NativePropertiesAdmin.swift */; };
- AA73293FF1A5696216BC3293 /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3F187CE3CC99555A8AA5B48A /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- AABC516A8EC57988EA018BD1 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- AB4F5E4D6BF589AB3A2280CF /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FBE1ABE84062848AA5FCF44 /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
- AB5A829EF960B61C366FE918 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- AB5C0561EC268909D996F551 /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 676957D87A84B482C7552C1D /* ArgVector.cpp */; };
- AB78F23EF2B0C21E3E634DB5 /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99666CECEA6438765B394579 /* CertificateI.cpp */; };
- AB900A1E7F4480C5880CC00C /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 13F8DEDC3CF968015BFABDE6 /* Glacier2.framework */; };
- ABBA67992758752B990DFDD5 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF2ED98FA8B64E0AADEFAB7D /* ConnectionI.swift */; };
- ABC9B8D3BFFF3212D80739EC /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- ABE0DC77034659354B74160E /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- ABE22B535412338252E46332 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0C28D3AB8568CED3044958A9 /* Router.ice */; };
- ABED9D557D47ED7C23900F2C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- AC1D1B6CD1D8AA221498CCB1 /* FacetMap.ice in Sources */ = {isa = PBXBuildFile; fileRef = D3EE1B4FEF0422D2F4B67156 /* FacetMap.ice */; };
- AC6C8F5A6B384888CD6A623E /* LoggerF.ice in Sources */ = {isa = PBXBuildFile; fileRef = C3EB1A27FAA5ACE22108F3FA /* LoggerF.ice */; };
- ACABAC72D78356DBFB2C5788 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- ACB0460A04C5038FD384C365 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- ACC856EAE367A0225C8E21C4 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2996F3F1F4CBAF613DAE139D /* EventHandler.cpp */; };
- ACDBE393BF81993E3E5ADC21 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EB484467B2D88A84FDF24C /* Server.swift */; };
- ACEDA94B5EBDA2B34BCBCA3A /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- AD8740829AA2EFD92599603E /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E3061B136FE7ADBB8DB9114 /* TraceLevels.cpp */; };
- AD8F99134E8450AF42AAFF76 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- AD9DDEFA6621AD566091FF09 /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB53D7F75100F4CF52B8DC8F /* RegisterPluginsInit.cpp */; };
- ADE19EE47631D8F8839EF0D7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9684550CFCD0DCA46C26AAD0 /* Test.ice */; };
- ADEF3E98E381F4712262A991 /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D9D35236C0D3E070BF1A2FC /* RequestHandlerFactory.cpp */; };
- AE0D805B6D4744ED785EA903 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A10F2C3A2F308F94F3EA3DD /* AllTests.swift */; };
- AE59FFCCA692305CFFB7B02E /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 731F2E91CB97626EE8C88C79 /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; };
- AF1C01631C288B9A063BC455 /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C0BE5A338AFE985D3EC4A10 /* BatchRequestQueue.cpp */; };
- AF5F88F19BB6046EBF26DD46 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D99433C106AE10804BD3CFDA /* Test.ice */; };
- AF85903DE913FC1F3A57E288 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = E03F4146023712CCF5C90907 /* Process.ice */; };
- AF914883661479EE2005C201 /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F95AC7A675CA60BB2ABF448A /* DispatchInterceptor.cpp */; };
- AF93821C653629CE6A457A84 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- AFA64AF1FD4EDA79BC52593D /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC9FE3389D154DFEBBC55491 /* Selector.cpp */; };
- AFD7A65C926EEBF100A0C982 /* Current.ice in Sources */ = {isa = PBXBuildFile; fileRef = 62E33380F585921F9A5DC522 /* Current.ice */; };
- AFD8806EBE95EBEBBB81AAED /* ConnectionF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B8DC2C52549E7BE254AE5AD5 /* ConnectionF.ice */; };
- AFE83CFF55224B997C1285A1 /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8232FBA739FC5D5AE2064B88 /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; };
- B031002E5E92D83F48D0F0F9 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- B0B3B1502FF8C750F9BF2250 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E565EEA036FCDFE7E2231B17 /* IceGrid.framework */; };
- B0B96BC28B64E0E3827DF726 /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F94D68149D88079DA1A291D5 /* LoggerAdminI.cpp */; };
- B0F79D9CBBD07B1B6B09D13A /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3EC2422F7DF9807B4B59F69E /* Glacier2.framework */; };
- B0FA55BA8FC2CD1E6C6AF266 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 12FA5204D52643D5E55E36CA /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; };
- B10AA70BA09D72071FA60DB2 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- B117263F59BA4765F0D5E70A /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 905AE808B7C689F60497E5CB /* TestI.swift */; };
- B1323C2B7E7607F18F93003A /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 879A4949935A71A19295C582 /* SystemdJournalI.cpp */; };
- B13FF28463938343AF39E014 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- B1B399E274A8290C9C4B4866 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 63A75A7C192FABC8F78F064A /* Metrics.ice */; };
- B1BFCCF5A1158F5B74ECFF47 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = 2ACDB6B6A5E97650FDC72203 /* certs */; };
- B1D22AD4A6EC261B5135AF98 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E45B0F3A37E9A497981BFBA /* TestAMDI.swift */; };
- B2031FBD54CC50E85555B248 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- B2B40EBE0BFEA2920EC3A03F /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B49E3D640D575476EDF754DE /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- B2E55554F4A196D93E63209C /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBC949A8BF16F44AE0A65971 /* InputUtil.cpp */; };
- B3548BEFA41BC65A60F64D9C /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1659DF4E83656B630CFEB6BE /* ImplicitContext.mm */; };
- B38D34E19D19D9EF90BC307C /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = F622A140E6FAD50298A18A5C /* BuiltinSequences.ice */; };
- B3983AA7D21AA6025F8B694A /* ServantLocator.ice in Sources */ = {isa = PBXBuildFile; fileRef = D75D40BC53137EF8657BC4EE /* ServantLocator.ice */; };
- B4000A5EAB6E27547C5D8E34 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9FD432169D0F2D2F20892D4D /* Test.ice */; };
- B419F712F081D02D35405631 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADA3BC4A8C6D8692B2DF2AA9 /* Instance.cpp */; };
- B42C20050BB8E6F8D0EFBF8D /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D41DC672B44BACE0CFB6341 /* SliceFlags.swift */; };
- B436F9959C5E61BF24119A9C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- B44D0EF102A64C1E764CABC6 /* libIceIAP C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2283D69713D5C7438C9D5292 /* libIceIAP C++11 iOS.a */; };
- B4655B8BE90D1C15843140E2 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8744E07211FFA1299AF62ED5 /* ClientPrivate.ice */; };
- B4A404571B785388223D488F /* Current.ice in Sources */ = {isa = PBXBuildFile; fileRef = 62E33380F585921F9A5DC522 /* Current.ice */; };
- B4CD80A816E90082C5412583 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = FACFC7BA89D5443063D59EC3 /* Collocated.swift */; };
- B4D2F6960F818209557CB8F7 /* PropertiesF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B3977282F7A97C8FAFAC2272 /* PropertiesF.ice */; };
- B4F0A88C37A32E081226F08F /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8257492D8853CD3D7B39FDB7 /* PropertiesAdminI.cpp */; };
- B50A87BE92A6A72A73EA1CAE /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- B520B55791788AAD9EAA2C6D /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0DD700D41041F13457102359 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- B59664655DE9A9EEE78BF5A7 /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5EF983122BD6F435855FC204 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- B5B94B5082A0BBE9BF1A6597 /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E19DC19296ABDDB29732AEB2 /* RecMutex.cpp */; };
- B61E39FEE7B4AB8A92EDCA2F /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91D514977778BE3BB6D79A7B /* AllTests.swift */; };
- B64B7A45E00D3915C944335A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F8F6196067871FC2BD34A24 /* Client.swift */; };
- B65893D9D646379987D05DF9 /* PluginF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3ACC00EC3978AA2856397560 /* PluginF.ice */; };
- B66B93D165FE1B1B36693234 /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 217D1B8BD2609F6135197ED9 /* libIceLocatorDiscovery C++11 macOS.a */; };
- B68C76FBA77E64F94CCE9CD6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- B690B90129B5D8B0FB8D374B /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = A02E61AC41C5A07BE70796C5 /* EndpointInfoFactory.swift */; };
- B6B1C0C9682A7FF61A5C7C18 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- B6BA7E95D08CF0BCFD65BE8A /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BCC9499232F3ED821955D3F /* Buffer.cpp */; };
- B6BB45E2A9CDE04D797985A1 /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 863C25418E5FE7D05B9868CC /* OSLogLoggerI.cpp */; };
- B6E69A038383A012F2D831F7 /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FD15FDDBA73FF5502EBB212 /* SlicedData.swift */; };
- B7039AD108613D0A78555D1E /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 70BF5BD1E0899C46253D13EE /* RouterF.ice */; };
- B7662AF38CD718B01DDDBE53 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = FACFC7BA89D5443063D59EC3 /* Collocated.swift */; };
- B78EEA6AEC06C881823D58EA /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 676957D87A84B482C7552C1D /* ArgVector.cpp */; };
- B7C86A146160996EB67A255C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 905AE808B7C689F60497E5CB /* TestI.swift */; };
- B7F71B128D1D84054816B354 /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88ABB01C5CFBF55B5120743F /* NetworkProxy.cpp */; };
- B8B644B9D0B01CF8E9F841B7 /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 632C58E40F3481563D19816D /* UtilException.cpp */; };
- B8F5DCA7C5BEDA2EE0103930 /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 25D63C9C027B6F0B799F1B46 /* Logger.mm */; };
- B8F5F15EDCC6642E084F7AF8 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- B917948B9CBD1C423CB1A2CF /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- B929D4D62B700C3EF5482E7D /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- B9488C4D6FD2FFD6AE6681A7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- B949923C9A6808EA9023E260 /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = 75667BF18FEF533899F00773 /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; };
- B98D2AF8E4CAF7135368A070 /* StreamTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAE9EBCEE41A733F7CEE2C57 /* StreamTransceiver.cpp */; };
- B9AF25A22825EEAB028BF25E /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFB394B08836052CA7E4B822 /* Util.swift */; };
- B9ECC3C439E21F2FC326AC83 /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 58C2EB6C86D346799E4DE444 /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- B9F9A75D70D56CE52564B64B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B224AB6DD347E466648E1E0A /* TestI.swift */; };
- B9FAEF1DDAF948A7EDD38037 /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFCF742514A3DC3E7B51E0D7 /* ValueFactoryManagerI.cpp */; };
- BA43442D52C46129B7E310B4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- BA46EDACC11C8D5F1C9F341C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- BA63B9DCE996CEF6A166AD05 /* ProcessF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DC0C622594F31649B4E5A2D /* ProcessF.ice */; };
- BA6735E014000B3B32E4F6E6 /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95D89375D28F76DDF26C3903 /* RetryQueue.cpp */; };
- BAB304E986CB0B44BDA83B8A /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- BAE377EF4CFB07C59DA9B443 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- BAEBA65C9789791C41F4069F /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B1276DE9905199A2B5214F9 /* CommunicatorI.cpp */; };
- BB11FB8D047EF0BE3184B256 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- BB245D011B61E22D34B0C735 /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 757CAAFA705B2AD13DCED72B /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- BB29A83C3D4C6018BF26D11F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- BB71980527A2562C0B39243B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8C85A49004476632B254372 /* Client.swift */; };
- BB8A3010AAA973A78B80D900 /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = 77A945CF34D00CD45A128D1D /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; };
- BB94549DA517F06E7A49CF17 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- BBA886440CD25D59038893F2 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24040ECF3C403E5A3612408E /* ServerAMD.swift */; };
- BBADE7E5D44600BD7C1CED39 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA692E2EA6088AE2EAA1411D /* Server.swift */; };
- BBB5065C889F0A74DB03DB69 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- BBB69BF71ADA4325D7A2E17F /* InstrumentationF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B171708BCC523826FFA93B00 /* InstrumentationF.ice */; };
- BBCA80C141DE87ABB672DC22 /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9A0CD78B16D57E052BF40A4B /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- BBEB0C7539A8F20341252670 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 692BD56989D55425DA5EE6FB /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; };
- BC01ACA1BFCE4D7A5065E63B /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82A629797B7B8BB12073531E /* Server.swift */; };
- BC7C4CD2FE5865909D0F216D /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 341C025BDAE25FEE0B7FC5BC /* RemoteLogger.ice */; };
- BCBA4389A7779B5C362F5DBE /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB7DA486D9F91B070B84F439 /* WSAcceptor.cpp */; };
- BCC60B099668C4418CDE0ADE /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2AD126C492934CEB62BD83 /* Server.swift */; };
- BCC6B863028FD77CCCE7007F /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 540F2D25E70EBD9203E8BBB7 /* ServerAMD.swift */; };
- BCF9195D15CCCB56BACDBA33 /* Plugin.ice in Sources */ = {isa = PBXBuildFile; fileRef = E45CA56C87B74048C2351B64 /* Plugin.ice */; };
- BD1AE27E627B50C7630393D2 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9090E70CCAD0C33985B09965 /* Identity.ice */; };
- BD2C744B8777A8E116599FE4 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C486A2A63E827BCDB5D00E12 /* StringConverter.cpp */; };
- BD4E75E28E63171268AD5C24 /* ObjectFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = CC29C4495F4355C22DAE2870 /* ObjectFactory.ice */; };
- BD58C026EFF1D30C2EBFDC19 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DF1B0A92A1D0B1F6195641C /* TestI.swift */; };
- BD70B3BB4BB302B91D9EEC36 /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0471648078F278BE3C56ED32 /* TraceUtil.cpp */; };
- BD8C954B8FDE4BDB0BC37BDE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- BDBEF6AF72C96C362AE69209 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 422312FEC2781FF24FC912DC /* AllTests.swift */; };
- BDD8F0B2F3D74314B86B5647 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- BE25C54B34D0C140FD6841DB /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8232FBA739FC5D5AE2064B88 /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; };
- BE5E2762741B5ADFBA5CA0D7 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8735A9A652C31C2A3CC241E1 /* AllTests.swift */; };
- BE9AC6556EBADC0DB3695FA7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- BEA9B7722DFA7C95E9AB7693 /* SliceChecksums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBAFB9130DA7AD0BDA89BEAF /* SliceChecksums.cpp */; };
- BEA9F2022CAB05445EDAE981 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58001B947CD78939BE9CBFAD /* OutputUtil.cpp */; };
- BECCF7A43E8D705BA4AD8E05 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1D63C4A474EDCB9B48A8908 /* NativePropertiesAdmin.swift */; };
- BEE5AE47D2B69ACCADC8DCF6 /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9FED4EE7B5090FE0DAE755DC /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- BF1D7E5A2C1E73FBB9D35A4A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62C9721EA6BFBD908FF0AACF /* Client.swift */; };
- BF2A31706695C97D389DA270 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- BF41C9EE85DE1069983D77CC /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 20E8394869BBE3A6A0E8B73A /* IceImpl.framework */; };
- BF54E96162C81D5AFF42732F /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3AF3636501CCEBD661504929 /* Exception.mm */; };
- BF7916D9064A82ACDBD15053 /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 085ADF4042B82804E463AD53 /* SecureTransportTransceiverI.cpp */; };
- BF7F468624E1A8933A32FB27 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- BF804E944831E9E56D371540 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AAF4AECDF16E4E1A198E5F6 /* Server.swift */; };
- BF82B85EB4F2E3572A7C9056 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9688D2BFFD3AB9CA38696B81 /* Test.ice */; };
- BF84AD4ACD6C2A4133A1587D /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 73A97154F0F1D051F4D4077F /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- BFA35421F243D7A3333D83C6 /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19329E19D18D022FA95D9623 /* Twoways.swift */; };
- BFB130C5057A1747B229DE1F /* StreamEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57B0874282316DB417FD6AAD /* StreamEndpointI.cpp */; };
- BFC5C3013C1A77B21EE48903 /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE7536F921A465ACD1F7FA00 /* InputStream.cpp */; };
- C01FD66D96C027D2E6E495B7 /* CommunicatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = CD14CFE67744C5F820EF9517 /* CommunicatorF.ice */; };
- C03A7494340F90A1809EC392 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- C043FFF2545D972FA745417B /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- C09040F88FB6AE1190F11DB7 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6222468F2E3276D9AE70AA72 /* TestAMD.ice */; };
- C0BC4621AD2C431E911F15C4 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = 2ACDB6B6A5E97650FDC72203 /* certs */; };
- C138D56A19C2823942AAEE02 /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9A124033A824161B2DFDF12 /* MutexProtocol.cpp */; };
- C1494E22B31C8E9A40A68A43 /* EndpointF.ice in Sources */ = {isa = PBXBuildFile; fileRef = D6BE4397021F3C34B7564B4E /* EndpointF.ice */; };
- C14B9FE2080964AF572C02DF /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28567530F9E0A117AC6E5ADD /* TestI.swift */; };
- C14F685E6EEF121E5BECE49E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- C17625269BE98BC38342767E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F19C4044C942EC16995BEEF /* AllTests.swift */; };
- C19FE4610B895E7E0034202F /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A10F2C3A2F308F94F3EA3DD /* AllTests.swift */; };
- C201AD53FB35EBD7DE676500 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- C26392F29D2B368F6CB86461 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0C28D3AB8568CED3044958A9 /* Router.ice */; };
- C2C0B8031D2BEB0FFBF44380 /* EndpointInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2CAAB9F27FD8B9C3DBD01B84 /* EndpointInfo.ice */; };
- C338162EBB15B8DCAD393B07 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- C39EC66B5DBACE09FD934D1C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- C3A3B693D82B7222F1C1D58F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E029349141DF6DF8F2B6BA54 /* Test.ice */; };
- C3CB9A2D449C4C32C4A911F1 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 095EE31DB49AA69220A140AE /* AppDelegate.swift */; };
- C3E9684A00DD334E0E703D67 /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6474371F9D4B7F7290A2EFB9 /* ConnectionFactory.cpp */; };
- C3F56376FE4608A8F0C51932 /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 163218AF8429A93CC6DB516A /* ObjectPrx.mm */; };
- C40989C717F1A574C69E6E57 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 140ED17FF6BC91F62945A7CD /* ExternalAccessory.framework */; };
- C41E168446904363CA97B72D /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 13F8DEDC3CF968015BFABDE6 /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- C45444D5841F413308691279 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1388C42229ECE520D4DE4E0A /* Client.swift */; };
- C4B4B1949D3D024D55B2CB31 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- C4F88F0086B961D58C4F6847 /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 48E3BED1D96A31F2947B3802 /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- C50ACFDDC4FF7871AF584AC9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AC18A896A122DA629C069E6 /* AllTests.swift */; };
- C53A7B0F9353E22328C21366 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12ED27C9D65B6E6DE0A5F8E3 /* ObjectAdapterFactory.cpp */; };
- C5599915BE1DCDB9771C57AA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- C55A085D0980ECD5611647C1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- C59A083B86BD87A1DC8410B6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 553A566BD014B379277E2FEE /* Server.swift */; };
- C5BBD5928425EB93F32A125B /* LocalException.ice in Sources */ = {isa = PBXBuildFile; fileRef = DF32ECF6778150AC88459CEF /* LocalException.ice */; };
- C6057D4F88785E98D527341E /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = FECF8197B2391C644A0DBBAE /* Metrics.ice */; };
- C6159AF0DD0450F2149944EC /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D8E357652C5E3E692CCA7295 /* Test.ice */; };
- C6883E21842F4DC08F187F32 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- C6DD6ABAED75BE35D2DEE871 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C235CDCE4E60CE8402C56D30 /* ProxyFactory.cpp */; };
- C707FF62C967279A712B08BF /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- C7B19060BBB2C08045512ADB /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4D476AE3362B76958AE23E2E /* Communicator.mm */; };
- C7B805B43BFCFA3326A6A999 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67E0822E520FD5EE3BCFA0E1 /* ServantManager.swift */; };
- C7E69973A15EB7B8A458EB2B /* SliceChecksumDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0E6E56298993D5697BF2E4ED /* SliceChecksumDict.ice */; };
- C80ED3FA4FC251BEA3EF7FF2 /* CommunicatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = CD14CFE67744C5F820EF9517 /* CommunicatorF.ice */; };
- C86D38ED757D8A03EC07C642 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62C9721EA6BFBD908FF0AACF /* Client.swift */; };
- C88B507FB37DE8174B5A3544 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9C2EC602112629E6DBF7B880 /* Session.ice */; };
- C8E287D86987596C0DB86F61 /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F95AC7A675CA60BB2ABF448A /* DispatchInterceptor.cpp */; };
- C9378A3351EB232BD9140F6E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- C94D1D3CBCA94A45F30845D0 /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6B3F64CC2D6760BFCBC3E16 /* InputStream.swift */; };
- C98CD6AE4FAC4E07994D9CBB /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB85FA1A85C83E850BEB6B6D /* AllTests.swift */; };
- C99F254C648A4C8D17152126 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- C9A2212328C491117DA4F85A /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2703F6DB8B1EDE26B743784A /* LocatorI.cpp */; };
- C9A73C2F3C7F65F6983DC2DF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 311D4B7DADBD8F5B6AAFCCD3 /* AllTests.swift */; };
- CA16B252E9C26987375F2A48 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9DF9BA893942F5D6906B77C /* TestI.swift */; };
- CA27A10C7B11977A7FACB98E /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = AA6BB836B7BFC1BFB90E33B7 /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
- CA68946B9271EC459276D2BC /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B0ED3F4472239D27B9CDAC15 /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- CAAE59AE0D57B6CC95F339FE /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8744E07211FFA1299AF62ED5 /* ClientPrivate.ice */; };
- CAD458157BD8D0FD0F587035 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BF1C026046DF91425D0C38C /* AllTests.swift */; };
- CAEF49B4EB4A0F1383D91E0D /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = 07FB3A14A7C0F45E500CDD83 /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; };
- CB1C5FD37C87E42F3462B668 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C6244048BFBCED451F04E34 /* TestI.swift */; };
- CB2928680D93E44E3B33E1E6 /* TcpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C66D3DAD3E482FD08A3DA82F /* TcpEndpointI.cpp */; };
- CB2B7645B2BD43953CB82FE6 /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBAA9F213C418E18F89E8552 /* LocalExceptionDescription.swift */; };
- CB6DBE394F54E049688377C1 /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B6450679899F9D620764A08 /* Base64.cpp */; };
- CB95E846142B06F22774953C /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 809AE206F2AB806E345F2005 /* PropertiesI.swift */; };
- CB9A11AC455FAAA28FB65E56 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- CBA632BEB6E73F0272DA0C95 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 476ABE3234D05812619CD33C /* AllTests.swift */; };
- CBD8766F0F7C228D36A0AA9D /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82517F3B6E20C15F5332436C /* ThreadPool.cpp */; };
- CBE6AC93DE32E57A21686246 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 692BD56989D55425DA5EE6FB /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; };
- CC58B0506AE61F446A06D96D /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- CCDF31E0CD49D0CEE99BC380 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D858BF30039875BFFF7B4678 /* Time.cpp */; };
- CD229799F5F56DE31166670D /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8FA7AC1292C0E991DF4BA8E4 /* Incoming.cpp */; };
- CDA7DDA6CD73C87D9938E24C /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0364945BE497EB41753D11E1 /* FactoryTableInit.cpp */; };
- CDB7451B49093C312A625944 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- CDBAB764092FE81CE49C4B5F /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0471648078F278BE3C56ED32 /* TraceUtil.cpp */; };
- CE183203C46BB0FBC20BC9E2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- CE1ADB64AFE1A2E42A51F709 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCC228ED34AB80D8D5D263C0 /* Server.swift */; };
- CE8C3C167F79FCC1DC023B19 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1EC3D745718F997AFE79335D /* Session.ice */; };
- CEB476DEDC668A0C69419980 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = A52B06D312D79F5422D0081A /* TestAMD.ice */; };
- CEBD1FEFD121958796BC2B5C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC1CAC41F32D3AFB526FA69F /* Client.swift */; };
- CEC88818CD901C919DC50AAE /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 318B4362356CAEAF664C3474 /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- CECF9C9C5F56BFBA94F56E52 /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FBCCFC5733CBDD1381BB260 /* OutputStream.swift */; };
- CF026317644223AD3F02F9CE /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0FD20AA29FA651CD5E40BA /* TestI.swift */; };
- CF2E1019AC786892DF2E6B43 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56C3F3F779CF422987DC4B6A /* Server.swift */; };
- CFD4BCBCA67A4FB047651C72 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9DF9BA893942F5D6906B77C /* TestI.swift */; };
- CFDB4C9FDDD2D5668472A6F9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6B6F7D8170ED48B12F0B6F7 /* Server.swift */; };
- CFF936ED8E1CD735CF02F635 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3098E4273D7B3498F83FD430 /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- D00F7C1560DE548DB8EBF4D9 /* libIceDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 09A77AFA5D366FAFD7CDC0D5 /* libIceDiscovery C++11 iOS.a */; };
- D014BD0DC195C59B464713C0 /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 084D0AE194DE5B466ECB36A8 /* ObjectAdapter.mm */; };
- D041A660414D5DE82C29E19E /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5A4773F9B5A0740C005F9730 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- D04EB6C796FFE00C888C89E4 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 361E8C29CA5E426DB25B7890 /* AllTests.swift */; };
- D0550B69D074F57B71548646 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BAE10E904FEE12EA4322283 /* AllTests.swift */; };
- D0E87A816851AF7044DD6FC8 /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 085ADF4042B82804E463AD53 /* SecureTransportTransceiverI.cpp */; };
- D105CD7E8D18B6CEC463CB5B /* StreamAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 002A1F93B04C21ED5D7D0A59 /* StreamAcceptor.cpp */; };
- D10FD0221D92E16570AD663F /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9090E70CCAD0C33985B09965 /* Identity.ice */; };
- D116AB40E2D17FEB3E82ED3B /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96CA3097D4D2A913A3FB3E8F /* ClassResolver.swift */; };
- D11E77D0595CDBBB532EDF0F /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 095FD037AD9F4A3D5CE458DF /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- D1717F8E00679A730384DB71 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- D17CDD00E1A746AC62BE4FFD /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA692E2EA6088AE2EAA1411D /* Server.swift */; };
- D1A6B57AA71AFCBE18080BC9 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0A0FB5971AA10641F5FFDF /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; };
- D1AD8412C81561854BAE9B8B /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A354429E9BF7539C167CEB8 /* libIceLocatorDiscovery C++11 iOS.a */; };
- D1CDCA031DC2E8D0021C6FBD /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0FCC4DC0402E212F3FA567F5 /* UnsupportedAdminFacet.mm */; };
- D1D4155B898A953C90C95019 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- D1DBF45130DB1C04170072C9 /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7CAC785DC6DD5CF3D1EBDF /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; };
- D1E754DBF4060915F4E0B281 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- D20DD2EF6D0048617A54C54F /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = FECF8197B2391C644A0DBBAE /* Metrics.ice */; };
- D24AF24B356BE137052F5788 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- D2614B9B53569928FE44536A /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = B2375B428874B348D86BD212 /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; };
- D2A06423ED493FFC783E7DBC /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F0A2495853FF103040F35EB7 /* IceGrid.framework */; };
- D30CF87E76A8BDC3D35B9F8E /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- D318FBF6F0B09A51396E988B /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6856EAB3EE7EA36D427CBC6B /* SecureTransportPluginI.cpp */; };
- D35C59C86C6CABEDC43373E9 /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4910D3CB2B4F6A0F1A13C73E /* OutgoingAsync.cpp */; };
- D38191DE0663F833BDE727D5 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5F7E6B658E93B0786448C7D2 /* ClientPrivate.ice */; };
- D388AFC0124FC2F2B07AE83D /* EndpointF.ice in Sources */ = {isa = PBXBuildFile; fileRef = D6BE4397021F3C34B7564B4E /* EndpointF.ice */; };
- D3E9703B7CA0C48F9175036F /* ImplicitContextF.ice in Sources */ = {isa = PBXBuildFile; fileRef = ADE87D0700232F5E9EC96C80 /* ImplicitContextF.ice */; };
- D44DAD4B54637DF1817A448F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- D4717EC0944737C43AC62E39 /* EndpointInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = B5D8735FF60B61D4FC93C43B /* EndpointInfo.ice */; };
- D48BF999B376F6706DAA6FAD /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = C2A22B3B3EF5EE88BDA1C081 /* FileParser.ice */; };
- D49C89E3F247166A5C1B264F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- D49C8D0C4A05C20B9D265992 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- D4B54310A688B6CDADE686D5 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- D4B807E394AFE5AE9971B4AF /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 13F8DEDC3CF968015BFABDE6 /* Glacier2.framework */; };
- D4D32F44683093FD16C22602 /* Logger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E12E6EDB9DBD7DA624D4BBF /* Logger.ice */; };
- D535ACEB450486BE82E42EC6 /* ObjectAdapterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 41A2A5BB85973F3BAD4272A9 /* ObjectAdapterF.ice */; };
- D5C2445DDD7EB3509C066C48 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BAE10E904FEE12EA4322283 /* AllTests.swift */; };
- D620FA8AAD089DF1FA8D339E /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E24BC43BD797306F62D06810 /* StringConverterPlugin.cpp */; };
- D6C5508C2A5B64A82A1A313F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- D6DDF699BF800B677F45AD3F /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66591C1991E7BEA609899269 /* Oneways.swift */; };
- D715C60C72FC16D746FA405C /* Logger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E12E6EDB9DBD7DA624D4BBF /* Logger.ice */; };
- D75A88575CE951BB8C403448 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58001B947CD78939BE9CBFAD /* OutputUtil.cpp */; };
- D776AB0DC73B366E7DF921DC /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 863C25418E5FE7D05B9868CC /* OSLogLoggerI.cpp */; };
- D7986ABA9A3E8A67E8735DD2 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AC2DD492B9AE60EC7E84873B /* Initialize.cpp */; };
- D79A90364DDE55149CC5DAFB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- D7B3E46711A5315C5C38CCAD /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30EF39EE8BEC9D00D24DC208 /* LocatorInfo.cpp */; };
- D7CD4F6DE4371D975F072A83 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- D80F20E185000C3C99C5421B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- D8314D739D3EB1534809B3AB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- D83E58516B8FC749B04F4B2A /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 16AA78E32597072B631DE358 /* Forward.ice */; };
- D8837EBDB16F98B9F32E85B3 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- D8A3BA49E17476D54E345278 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98F5968AA05F599244249E40 /* TestI.swift */; };
- D8AB6BB790D0E4F91BAFAD96 /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F96B6725563EBB8A4C22C9FE /* OnewaysAMI.swift */; };
- D8C06F9F0B5D4C1402BB1F54 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCC228ED34AB80D8D5D263C0 /* Server.swift */; };
- D8F8B5A48CB6814E7E28AD58 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- D900D7CBAF11BF59921E9108 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 41FE28E72BC1880B2DE5D510 /* TestAMD.ice */; };
- D929699A91BADA4771EC48F9 /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F739FD7322F6B60CFCF49B80 /* PluginManagerI.cpp */; };
- D93106F3225CFA4377913CEE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- D96293D971F57A39EB9FCE1B /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7B6D005E02B69AF9FE56313C /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- D9952965F295F34FA4D9BFF3 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 89A51B23E16E26B5745CD61F /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- D9B56600DEE8EA6B24CEAA98 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 61F2BD2F23764D117F1428E8 /* Locator.ice */; };
- D9C9CC7E628C1813320D5234 /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 376FEFA66EA60F109FCF6D7D /* SSLEngine.cpp */; };
- D9E6D6D7283E5748BF19336E /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35304D3B36A6003F44E7DB80 /* Shared.cpp */; };
- DA121A3EC02D415237E9FFF8 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 553A566BD014B379277E2FEE /* Server.swift */; };
- DA1EAC833B8DB4EE82541657 /* ObjectFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = CC29C4495F4355C22DAE2870 /* ObjectFactory.ice */; };
- DAFA6CADADCABF4CA5BDAF75 /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CB87D2A2C1C7BBC4369A68F6 /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- DB5FC8E34924846BED0BC49D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- DB7CD38FD26CBDBBDE74423D /* Plugin.ice in Sources */ = {isa = PBXBuildFile; fileRef = E45CA56C87B74048C2351B64 /* Plugin.ice */; };
- DB87CF4B6595E9DD507D0DF4 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A34C37443D800851EE183689 /* Test.ice */; };
- DB9D0EB83379961D16CB33A6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB6228EBC14451C32B3FABAF /* Client.swift */; };
- DBC02A184546EACC41500B4F /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88ABB01C5CFBF55B5120743F /* NetworkProxy.cpp */; };
- DC5401FB1C4B91A592551D31 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 16B802BE4C8C5176C6AAD741 /* RouterF.ice */; };
- DC9D6D368431BB081FBEA9B8 /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D41DC672B44BACE0CFB6341 /* SliceFlags.swift */; };
- DCB2A416F5345DFFCCBAAF1E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAA48833BF8F037D16C27B2F /* TestI.swift */; };
- DCD9C38A137F95FB988E8465 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- DCE190EB388C831C965DDBF8 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = FECF8197B2391C644A0DBBAE /* Metrics.ice */; };
- DCEAC609DA6E9BA94C837D83 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- DCFBF85057659EFC096392CE /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- DD474968DD7B96D46E8D94A3 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 311D4B7DADBD8F5B6AAFCCD3 /* AllTests.swift */; };
- DD69FBF2B05B16780142326D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- DDAEEDA0D018C4F5FAFA7429 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0D695F59B98F23481D6A838 /* PluginI.cpp */; };
- DDE729E31E5EC7181E4AE376 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB16C7E23D561A45A823E737 /* Client.swift */; };
- DE3F0034C15EB92C5E58E767 /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD9A7AAD93C61A24508A0108 /* Mutex.swift */; };
- DE53D2804164CCF2E8F7CFCF /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BB6BC7C53DEDF3D635D3357 /* RequestHandler.cpp */; };
- DE7AC7D4646F4F0165204E8E /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- DEA7817CD980C665FE0C131B /* EndpointInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2CAAB9F27FD8B9C3DBD01B84 /* EndpointInfo.ice */; };
- DECA16CE472CEDA95CF20A3D /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE04BC59D9267C53B2E2E426 /* MetricsAdminI.cpp */; };
- DECB5F8B640552131B9ED3D0 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C81E1C63F2ECA36BFF45C065 /* Server.swift */; };
- DEEC1326D9956709B679D811 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 744D55EEF1A3510BDDD8BD3A /* Test.ice */; };
- DEEC2E47BA1EC8B32AAE07DD /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B9E64C4322C1EE4927BC863 /* PropertiesI.cpp */; };
- DF58269C924E8852BC65DCEA /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09F67F6A3286C045388B9AB4 /* ConnectRequestHandler.cpp */; };
- DF61C46C6D4F3FAB441405C0 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- DF69D04577CAE98164496916 /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0AD95718A26B63BB13863BA /* Proxy.swift */; };
- DFC95651386C77AAC23EF2B9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- DFE06E5CC2CF7E14FFA3ADFD /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E2A4E9B62EE2D64338BEB6E /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; };
- DFF6633F927D3A20F6917961 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9CC6A0D58EF34E75E8886700 /* Thread.cpp */; };
- E023DA4A98E7744A881F3BB1 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = F0BBA7C1DD8C98341168BF4B /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; };
- E090422FF34DCEFC23481950 /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F990810B7617DA7106535C4 /* LoggerUtil.cpp */; };
- E113540BCDF491FD34E4A986 /* Transceiver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85D3CC9185EE59A9C1AE8A07 /* Transceiver.mm */; };
- E120A04A5ABF3212182F137C /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4B9C7AF49DDB6092DD82BC68 /* ServerPrivateAMD.ice */; };
- E19B80F044522E52A9B80A64 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B84CFA5C141E9FA1769464F /* FileUtil.cpp */; };
- E1A22835311DF863B08C7255 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E91DC3598F5343C8C478FFA /* AllTests.swift */; };
- E1BABA6356AB57AE81B14364 /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 60648E86C0107835E62067FD /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; };
- E1CCB989B05D02CD6B9A0D32 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- E1F51383FB15D3A846AEEC9B /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- E20DD593BC26546D3F641312 /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 664DE546AEA6A224A9B4EB0A /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- E23F6C6134FBCE1D1AA3B6E7 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 16B802BE4C8C5176C6AAD741 /* RouterF.ice */; };
- E26EF10B1DD77732D811E30F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- E2756A76494B8B710204FE4A /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B3015F5A4D587FFE1F446C5E /* Test.ice */; };
- E281A0EBF5E0308FB653D0BB /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9684550CFCD0DCA46C26AAD0 /* Test.ice */; };
- E28792AC5AC79A35BFBE0D54 /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4A07ED7D698A3B54594C912 /* SecureTransportCertificateI.cpp */; };
- E2C5CEC64B9AD70BE795E247 /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D032685700F557C2A42FC11 /* AcceptorI.cpp */; };
- E30A88B30776CF94E715F8C5 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = EAEA6F78056CA0855F0D7E27 /* PropertiesAdmin.ice */; };
- E3708D23EC452CEAC55EDA56 /* TcpAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 279D2A3D441126FBD205D935 /* TcpAcceptor.cpp */; };
- E37D4C7DD4F1950BC964A954 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DFCBE8EAA93ED627F6C1336D /* Client.swift */; };
- E3B94CDCF14F45686D1A88E8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8C85A49004476632B254372 /* Client.swift */; };
- E410CAEE031A0C509C4357A2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74414740EAAC22AD8701B446 /* Client.swift */; };
- E4334EF66D7DC1D202D78B60 /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A80AB46F43494F47663DC7C /* OpaqueEndpointI.cpp */; };
- E46676923E324197FE3F408B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- E4C46CF21AAFFC8F205BC0BE /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5885D5FFD3D6F50139F94947 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- E5035F7B1AD02859B5A035D9 /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91DCFB9FB66B3F09AD4D70C9 /* Cond.cpp */; };
- E56E5C1451E81A770225CE1E /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 78E541B6D2455480311DA7B4 /* ServerPrivateAMD.ice */; };
- E574DAAC5D918F3237223F03 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 578762DACAF19CAE80B60584 /* BatchOneways.swift */; };
- E575B5AF43287BB3D5111987 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 93A149AA95BCE53B8FFC7805 /* ThreadException.cpp */; };
- E5E63368F85E278F462588A6 /* PropertiesF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B3977282F7A97C8FAFAC2272 /* PropertiesF.ice */; };
- E6C338F3B697A92A7DFDF949 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = E03F4146023712CCF5C90907 /* Process.ice */; };
- E6D65DF194DFF8B77A3FCFFE /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4FFFF62292DDE44557B4482 /* SliceInfo.swift */; };
- E6FC8BBD3922244591A25F9E /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = F622A140E6FAD50298A18A5C /* BuiltinSequences.ice */; };
- E728CE6C9C877D1DF4C07666 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- E75E5F17B8FF1F515802CFBC /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E456B634781CC6536E96BA61 /* Test.ice */; };
- E7684623B8A4A3262A0DB187 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- E76E4A6C937F9B2D3DC8EFE0 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E029349141DF6DF8F2B6BA54 /* Test.ice */; };
- E7DE2ADE63530EA19E5E88CA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- E80C524219CFCB15780B35B5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- E8675C61D367FC60D4742BBA /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 341C025BDAE25FEE0B7FC5BC /* RemoteLogger.ice */; };
- E8E6308EA8009F8A42A479F5 /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C0BE5A338AFE985D3EC4A10 /* BatchRequestQueue.cpp */; };
- E9627E26D2E067FEEB98A06E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- E988DEF76DB7655F470F6223 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- E999B32ED120C6C0751400DF /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D17047642664F3ADD4EF85D9 /* FormatType.swift */; };
- E9B8795317EBA464D498AE83 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- E9B98AAC8B8C3A1F2B700E16 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32A77CBAF984A63EC964E91D /* Client.swift */; };
- EA6904B98FEBD064A5FEE9AF /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAA48833BF8F037D16C27B2F /* TestI.swift */; };
- EA709AE2BF414D97C94BF86C /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 02DEAA767E87169F7169F463 /* IceStorm.framework */; };
- EA849A2F1DCAE22B339A0C3B /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- EA8DADCB0269E667A0FDC9F7 /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 006D663BDD6E4FFF082691DE /* UnknownSlicedValue.swift */; };
- EAA598B99245F4FFDCF9E5E3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B586192AD27D885AC465F3CE /* Client.swift */; };
- EADB8FA4111FA0BD76593633 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15DB23B1A38B3EDC5027330E /* Collocated.swift */; };
- EADF87A453C51BBB82E2EB44 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- EAFDF097FEA59389761BB6E2 /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1442BF82598B6CA3BA82A542 /* Options.cpp */; };
- EB104E796CBF4B6F01B8149E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3704FDBEECAE57DB98E459C8 /* Client.swift */; };
- EB49B495A6324E7472278AF0 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12ED27C9D65B6E6DE0A5F8E3 /* ObjectAdapterFactory.cpp */; };
- EB602C79BBE7BA7DDCAA4C77 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05962EAA5614E67971DE4579 /* AllTests.swift */; };
- EB6B6FEBDFAB53146AEF636A /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBC949A8BF16F44AE0A65971 /* InputUtil.cpp */; };
- EB83649A83BB4F8D74F3C16E /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1974A9DFCD5CE75829EEDDB /* StreamSocket.cpp */; };
- EBA3D5B59ACAFD51AC1294D4 /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F1F49CE58160B74F9BAFED79 /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- EBB695899486F8E2BBCDFE48 /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B1276DE9905199A2B5214F9 /* CommunicatorI.cpp */; };
- EBB6B7448C3098593684E393 /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97F3894AB33DBF74E3804C48 /* ConnectionRequestHandler.cpp */; };
- EBDCE24404FABAB49E635438 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- EBF2CA4ABDDBF88655FB91FB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- EC1C9BE54993CFEB39A57CF9 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BAB9C69CF7FC392AAF1BFC4 /* Collocated.swift */; };
- EC1E025B12AC8E2F2E92E585 /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9EBAD84EC2FEA68FA8C18372 /* EndpointFactoryManager.cpp */; };
- EC1E1C8FB7046798E35DC9E2 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- EC56D1BF32ACE12E07BC3734 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32A77CBAF984A63EC964E91D /* Client.swift */; };
- EC673618F12BDA8B19CC42EE /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8E6A82D7E03BC98B98FD1BD9 /* EndpointTypes.ice */; };
- EC9AA66008FA5BF882AD5C63 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01DB1D21D9147DC0B4A2C592 /* InstrumentationI.cpp */; };
- ECA617C2D2C267B77FEAE5D4 /* LoggerF.ice in Sources */ = {isa = PBXBuildFile; fileRef = C3EB1A27FAA5ACE22108F3FA /* LoggerF.ice */; };
- ECC6646F8F2E313F34888953 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- ED174DA0C5726C7F0AAB0DFF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B3015F5A4D587FFE1F446C5E /* Test.ice */; };
- ED2D080D659BF57BCB04E51B /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24040ECF3C403E5A3612408E /* ServerAMD.swift */; };
- ED5AA4EFCA3F7F514F68AEA7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- EDBA0A78CA9FFC5D9930AC76 /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD62BD11BBAE8426F02120BF /* ACM.cpp */; };
- EE111B498581C23AD9EB1D10 /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9FD8EEEC96A3E1539F3ED89 /* ConnectorI.cpp */; };
- EE27DB624E677D4ED83C5F7E /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B2834C54144051028FC3E38 /* IceLocatorDiscovery.ice */; };
- EE4C8789B679A7157A7B720F /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEDDC5B3EF92448FC0068999 /* TestAMDI.swift */; };
- EE5D72218EDDC8AAF4478781 /* Communicator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 22B8F11BF7DF3C7A9FCC50EE /* Communicator.ice */; };
- EE8799A69B2959B8CAEA5DBA /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = B765395F779020FC5A5487F2 /* Process.mm */; };
- EE9BD617CB5D9759EF941930 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06D16CE3A5EE261D52409F5D /* Client.swift */; };
- EEE3DE6E685B3F76684AFC61 /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0597A64D56F0F7AAAB7EE396 /* SSLInfo.ice */; };
- EEEDDB93A16CE19BCCB5EDD7 /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FBA8D76866321E998D2E5C6 /* ObjectAdapterI.cpp */; };
- EF0BC26800F57E09D0FD1D55 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- EF513B2D6DD7578997310495 /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C325488C328D211818F373 /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; };
- EF5DA5FD92EA08CDF62F2C26 /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30EB9BBF93E3D0A41ECF8A7E /* CtrlCHandler.cpp */; };
- EFA01E414C712DD878618BDD /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- EFF157CEA5E3904414400BCB /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF8E0A097882F883C3663637 /* FactoryTable.cpp */; };
- F00FB173641573EC3411B64B /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- F01933372365430A85588D79 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80341A9A47F4D0BAA1DB2C05 /* Collocated.swift */; };
- F026264EF2032BD35635AF5D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- F03C4F46C99F13C8E2B56E8C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- F06439AB574755C2A4FF4058 /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0597A64D56F0F7AAAB7EE396 /* SSLInfo.ice */; };
- F0C165731989DC076F703A79 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 594CACC0045DC32A52CF8674 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- F0EE4477CC6A62C2E9812F79 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0C28D3AB8568CED3044958A9 /* Router.ice */; };
- F116F96ECDCDD794CEEBEE14 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- F156326914AC486DE5C7E9E7 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- F162671414581E9578CB6D45 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 742F61019388E32D5A1F50AA /* Test.ice */; };
- F164E6BE9282221A5A5022EB /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2F61780DB1A2DD448877BC09 /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- F19E70A47D8BD5074144A3C2 /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FBCCFC5733CBDD1381BB260 /* OutputStream.swift */; };
- F1AD4719EA82718F94B85859 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- F1C5DE5F445B9891F13FF589 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B6D02010D405B25EDD70A6A /* Client.swift */; };
- F23533D56E2C7065947AE116 /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B59BE30057C1D6398E3853C /* OptionalFormat.swift */; };
- F24AEDA3DD91576958EA87C7 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD091EA548CF51A8AB261E4 /* AllTests.swift */; };
- F291EB54B8250B07FE7FD204 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- F32C8570C1CB5E50DB2A6C47 /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B11CCA200A0ADBCA9854BA2E /* IconvStringConverter.cpp */; };
- F345120CAD8F63EFBF67C540 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A06049A48F122A4755875A1 /* EndpointI.cpp */; };
- F358FB9784385FAABAE9392E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65102DC69C890429DD83B912 /* Client.swift */; };
- F38226EF7F8FB5765B55FE11 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- F39B1667E8FCCB016DCC7B97 /* Controller.ice in Sources */ = {isa = PBXBuildFile; fileRef = 286AC9F03F771730D5409FBD /* Controller.ice */; };
- F39FE4FD3585375833A7C747 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC1CAC41F32D3AFB526FA69F /* Client.swift */; };
- F3B0303DDD3F39C6E04CC3BF /* CommunicatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = CD14CFE67744C5F820EF9517 /* CommunicatorF.ice */; };
- F3C8DD263D8C3B3553256E6D /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4822C67556D463404A0882AD /* Collocated.swift */; };
- F3E6B1C421FEEBDBFE8A75C7 /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6DE8323ECDD12C5252E02FF4 /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- F40990A11D362541E73E6F29 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- F448DC505D28062AD7E05735 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- F472B0B7C5933DE0446A7EFD /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */; };
- F4741D906536BB9A37BBB72E /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFCF742514A3DC3E7B51E0D7 /* ValueFactoryManagerI.cpp */; };
- F484AEE19341857AD40FDC65 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = AFCD7006F87053DD280B355D /* Test.ice */; };
- F48E19F7941EE25C27D5D276 /* libIce C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E319CE1E162A972A783C06A /* libIce C++11 macOS.a */; };
- F496794A8D684ADB1C6060B1 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- F49BB0568A24B36826F4FB46 /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = A564D8841C0E4D61A91B76D4 /* LocalExceptionFactory.swift */; };
- F52D11892DB3CF4B64C3E43C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 813816EAFE765EBDEB00023C /* Server.swift */; };
- F5771C9029E815EC43E8524B /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- F5C043E5CC9ADA97E7E788C7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F589827258A97B0283CECB0C /* Foundation.framework */; };
- F5EFBEABC61B6E92ADD42227 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- F6062A0373CC4ACD9B178268 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05962EAA5614E67971DE4579 /* AllTests.swift */; };
- F63E5F3EDF21C4942081A626 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08EB484467B2D88A84FDF24C /* Server.swift */; };
- F650F467CF12DCDA89408132 /* FacetMap.ice in Sources */ = {isa = PBXBuildFile; fileRef = D3EE1B4FEF0422D2F4B67156 /* FacetMap.ice */; };
- F669CA7D10227A4E18153756 /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2196E4A5420376F7F320400 /* Reference.cpp */; };
- F69AD5EBB813869751386B39 /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C57C835F74C40FCAAC884ED /* ValueFactoryManagerI.swift */; };
- F6AE21914B8AF3E19CA5241C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DF1B0A92A1D0B1F6195641C /* TestI.swift */; };
- F6DA474F98B0885BC5A104C7 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B84CFA5C141E9FA1769464F /* FileUtil.cpp */; };
- F7014D34489DD7D3CFEC1871 /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76D2C9478917EE70EA6C1EC8 /* Connection.mm */; };
- F7639E14759A4DEB1C9161D0 /* LoggerF.ice in Sources */ = {isa = PBXBuildFile; fileRef = C3EB1A27FAA5ACE22108F3FA /* LoggerF.ice */; };
- F76E7377ADD7F4D2C96D10FD /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 16B802BE4C8C5176C6AAD741 /* RouterF.ice */; };
- F7977DAC115756B0259CF87D /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9EBAD84EC2FEA68FA8C18372 /* EndpointFactoryManager.cpp */; };
- F7CD69EDF07A11F88745583F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62D24BEFA55328A8DBA6A3F4 /* Client.swift */; };
- F7E332D1F474B34D742329B4 /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 163218AF8429A93CC6DB516A /* ObjectPrx.mm */; };
- F854570046097CA90BE055CF /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B331105BF98C61980A1A1C39 /* LoggerI.cpp */; };
- F88EA1D91539FF0F471D3C15 /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = 75667BF18FEF533899F00773 /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; };
- F8960E18CB5FA62912FD578C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- F8C2F1191C9042EF597F21CA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E825C7A580DEC5B44856C0FB /* TestI.swift */; };
- F8FC6FA4A9C82818E9B49C1B /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 809AE206F2AB806E345F2005 /* PropertiesI.swift */; };
- F9053E912C450B2EE303B25E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AC18A896A122DA629C069E6 /* AllTests.swift */; };
- F91525EA6D244AB24BB32B18 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- F9844B205C3BAB092D5A1D2E /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9A124033A824161B2DFDF12 /* MutexProtocol.cpp */; };
- F99BC42E39479067FEAC972E /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9657545DF1F8621BB42054C9 /* Exception.swift */; };
- F9A12BFF3205FC2F14C49721 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- F9B92FCA1C6799BD379DD7C4 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8915DEC95041AA153E5919EE /* TestI.swift */; };
- FA16773DA0A75435134AFB8F /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- FA19B99668B9060803D5C52E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; };
- FA208EA3682180585743E695 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 41FE28E72BC1880B2DE5D510 /* TestAMD.ice */; };
- FA3B1C13A8A7CD9C4E60AA1B /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E99C484A830F853F840DA09 /* EndpointFactory.cpp */; };
- FA63D8D05CA421EA32757676 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- FA9A5A5252F4E9187A3AAF52 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- FAED63870E1F380570AD0D65 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- FB116CEF620C09116E93658C /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 27F5894F948B4EABD275EA37 /* IceDiscovery.ice */; };
- FB1511B573D7600A84F340B0 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- FB21850EA66A8519EAC00855 /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 25D63C9C027B6F0B799F1B46 /* Logger.mm */; };
- FB4DF661DD9AB9580585241D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E97BD444178119BC32E07B8F /* Test.ice */; };
- FB585612C37033156C4B9F1A /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 19751DD4AAFD07FFE294832E /* Convert.mm */; };
- FBE96067B5858C10C934060F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BA8101A60EED9B96E5B22B7F /* Ice.framework */; };
- FC08DCA14F32FD037166D3A3 /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 418EE006DB669F2A5A84699F /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- FC27263C208FDFF8A58FAEF1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- FC29B87F2CABE0D503308D40 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A27B0F345D951957A21F772 /* SHA1.cpp */; };
- FC645126BA1C3F3487E8F786 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C74909BB863CC39AAC549FE3 /* Cocoa.framework */; };
- FCB0F8CDB3AFDCE52D74DF3C /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD62BD11BBAE8426F02120BF /* ACM.cpp */; };
- FCBC5FDF3DBC8F01B322140A /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- FCF3EBF61848FAB21DDA34DD /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D61FF69C82E45F50A9E57E6 /* Service.cpp */; };
- FD0F7DC609980896110DE386 /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = A0662C2D0BCCED8D856B24A3 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
- FD59DD75FD08BF8EA5C8C780 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74396E017957EAD78E8BB63F /* PromiseKit.framework */; };
- FD7DBE0DA477ED70E86E802D /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC9FE3389D154DFEBBC55491 /* Selector.cpp */; };
- FD91191A250A4C4DCB7BACB5 /* ImplicitContextF.ice in Sources */ = {isa = PBXBuildFile; fileRef = ADE87D0700232F5E9EC96C80 /* ImplicitContextF.ice */; };
- FE198FE0B667A0E0EBE24E29 /* ConnectionInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 09D1CEBFECBBCC3BE50933C6 /* ConnectionInfo.ice */; };
- FE3EC594222D57BD3124E579 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 446EFF7ADC4B5939C4305AAC /* Server.swift */; };
- FE4A591465F4B509C51064CD /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- FE727B348201922B01BEA96B /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34401CC6421E5D0E724E88FE /* Collocated.swift */; };
- FE920D2802DB57EA1503673B /* Connection.ice in Sources */ = {isa = PBXBuildFile; fileRef = E5F69164D6EF6D67644585DE /* Connection.ice */; };
- FEBCAD4480676F7DADEAEFFE /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */; };
- FED01C3E9D7F7086D83EF7EC /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F8AD6B67521A305AADC0614C /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- FED1CE031E8322FA9A514A73 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9090E70CCAD0C33985B09965 /* Identity.ice */; };
- FEE9818B2CD1DF0438959CA5 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = C0CD22B04F5BAB9D3EC504A9 /* ServerPrivate.ice */; };
- FF00E2FBB6C7EC2BCFBF932F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */; };
- FF03F6D7887F661CD8B59C67 /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = F25EF4101674FED1FCFD03A8 /* Object.swift */; };
- FF05349A44CD7A81175C0518 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1EC3D745718F997AFE79335D /* Session.ice */; };
- FF3D3A1940BC062E27835500 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A06049A48F122A4755875A1 /* EndpointI.cpp */; };
- FF5C4FDB49B24F69C5696164 /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0DF6B8067E8C2C037234700B /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- FF8FC7D0063B8E687A2A600D /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF8E0A097882F883C3663637 /* FactoryTable.cpp */; };
- FF929CE36891406A3913F694 /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3E6B5AD7E9945BABB2529D9E /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
- FFF99666324B03D9A92CF7BD /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = 407F44656B90271C8A2F226F /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 0052A7FC2287A58DAD1A01FE /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE14C224CBBDF1DC3C8DC502 /* TestI.swift */; };
+ 0063875B95544D34CA39EADE /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A69A2EB1087C09983D0E3EEC /* DynamicLibrary.cpp */; };
+ 009AE9A237C22337203E02D5 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 009F0B106AA76AE01A051ADE /* Plugin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1C3E9C2120573ABEE7328084 /* Plugin.ice */; };
+ 00C6DF4D44F3F9B6B1D62233 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C13F2A57B3D5B43F865E99D /* TestI.swift */; };
+ 013FF9D704F75B2FFF8BA20E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 014C98C2B879DC7AF15D03D3 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1326E162E95AA649537C06E8 /* ProcessI.swift */; };
+ 016A0FAA1D94DDA3ABD2E9F9 /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5162164224A97A02EEBAB4C5 /* TraceUtil.cpp */; };
+ 017C951002F78B1B0CFD69BD /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5162164224A97A02EEBAB4C5 /* TraceUtil.cpp */; };
+ 01899344F4646F58F2234DC7 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10FBC76F9EB72AA7D657AD6A /* Client.swift */; };
+ 018CDD710CD4A5566FF19A26 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 01C38604E33417E477252577 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF9D92749FA6F9B5FE652C45 /* LocalObject.cpp */; };
+ 01CCD38DFB166607B719A292 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 01DD8D15C583CC79DEC1CD78 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2305AE83E13AEC1F82A891A4 /* AllTests.swift */; };
+ 01E97AF8DE2D8214633742A1 /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = F000FB0F52EFA6E32C1D61C4 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 02214CC7D8C3BBB12001F107 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 023484FAB909A9605F3269E7 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EABEF7F85B00B0111F6C3560 /* Shared.cpp */; };
+ 0238B9AC56CD3F6417BAA8DA /* ObjectAdapter.ice in Sources */ = {isa = PBXBuildFile; fileRef = 431FCA1AB962B80BF654B3D0 /* ObjectAdapter.ice */; };
+ 02DD1A97F3322D501A5BAFD2 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0C6CA87763EF92E236588FBA /* Glacier2.framework */; };
+ 02EA3398D24681F9729B18C8 /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = D726E89DC9EF4DCC71E5B72C /* EndpointInfoFactory.swift */; };
+ 02F270A116A6B2CB9981710D /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = C6FBE40672797298F2C1C21A /* IceLocatorDiscovery.ice */; };
+ 032FC90345DC28837F915955 /* LoggerF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1A6072E86A263FC327B1F44C /* LoggerF.ice */; };
+ 03358468F3BC2C6EDB27B2F7 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A50EFAADF3111E3694A86697 /* Instance.cpp */; };
+ 038944314A3B32E80402E610 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2364A6DD20E3A6D924D2D4BE /* Client.swift */; };
+ 03EC7F52C92364300FF1AF2C /* PluginF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 059160A9429AADF7083C704C /* PluginF.ice */; };
+ 03EFBF5726F8D798C542322C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C86A7981B1918DC97BD1D67 /* Server.swift */; };
+ 047780976676297E540529D6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A4FE73B5B6FDF4F56912AEF /* Server.swift */; };
+ 04E569CF55B39E547F02969B /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B769550900F96420DBCFED72 /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 04FF1FF5A6321308BD315C12 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 052A50C77EEC60277C8990FC /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6376344FEB128D483D1 /* LocatorI.cpp */; };
+ 05A4823321FBA1D511FB09EA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 05A8F1B2714E2E6C5DC69DDF /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = B0308FF4DA8796949079382F /* Router.ice */; };
+ 05B8C82242314EA65FAD107E /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 05C65ABE4A115D272808CAA5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 05DA30DC9883E4C4A7C0E2C0 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3F55B79F56ED47BB1490274 /* AllTests.swift */; };
+ 05F2CF25D243C813DC16629D /* libIceSSL C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B377B0722288DFB2A73E0D11 /* libIceSSL C++11 iOS.a */; };
+ 065497B5DB43B84EE0DA5832 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 0674A33D84062190187BA284 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 89D2FAA92C70159399181D22 /* Test.ice */; };
+ 067FC12E31F4796D6BB111B7 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 06E9E8282FE6F586C3561866 /* InstrumentationF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 316AF622F0283CDC19C52E76 /* InstrumentationF.ice */; };
+ 06F2C3559E2F9F766D8BA05E /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = F9B270E39D3B1D84A8E6B986 /* BuiltinSequences.ice */; };
+ 06F9EE6F197A5766217142CA /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A49E88A35399266906B635CE /* ObjectAdapterI.cpp */; };
+ 070D342E9DB67673A9248DAF /* ServantLocator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2AC0FE6725FBB1C2DC5A9E78 /* ServantLocator.ice */; };
+ 07170C0A556B0FD9E814C41E /* CommunicatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC58856E78104FC6C0F9AA28 /* CommunicatorF.ice */; };
+ 073A42600D298CA72408A09A /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05BB39343FCE5405892D8C99 /* CertificateI.cpp */; };
+ 0791D1238E0AE79C9F10B84E /* Properties.ice in Sources */ = {isa = PBXBuildFile; fileRef = D611E5DADBB8DF69D3A0E64C /* Properties.ice */; };
+ 07DCBD2D2DADA1D2BA7FC383 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 668F5888B8D0CB186D6053F1 /* Client.swift */; };
+ 07EF1AD47F66EF6D88D65C48 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DDEC3707E1BCF1F01D4E481 /* InstrumentationI.cpp */; };
+ 07EF382A544E7C79FD5334E4 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3D439C008667EFC7662E935F /* Test.ice */; };
+ 0829FFF84374E04A5F0631F8 /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 727ADCDFD189C116DA626990 /* LoggerWrapper.swift */; };
+ 0867A8192C7383BC95D8C2FE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 0890ED160C0D3026763A2355 /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28E35D2DCB8C267F2653242F /* ConnectionRequestHandler.cpp */; };
+ 08D1A021848411B1D5D87CB3 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9764228A3316695D773B795 /* AllTests.swift */; };
+ 090D955B55DFED05C191C5D4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 09282785AEDEAE4D6A992DA6 /* FacetMap.ice in Sources */ = {isa = PBXBuildFile; fileRef = F846257F8F86D75E994D2BA5 /* FacetMap.ice */; };
+ 093B31BB8A0A3ADC951DFECD /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B919B9BC0B3EAFB59DE62C2C /* PropertiesI.cpp */; };
+ 096C41E42B376BBED6211240 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3503F3A5CCF7376BD4A00DB2 /* ObjectAdapterFactory.cpp */; };
+ 0974BBB1144A88772F5A612D /* ObjectFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5A5BCF69097F9B6FD153B8FE /* ObjectFactory.ice */; };
+ 0981BF16F47193B435976091 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 0987F2CAE70ADBE205A9FABF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8848EFBB95F9D6D77B56302A /* Client.swift */; };
+ 09A6DB3CA1D4998E81767B4C /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3EF4BD416FEEEA65585C8FA8 /* ConnectionI.cpp */; };
+ 09E11241C8E5CD42EBE7A152 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = C84F7EAC0F5791E7D09AB072 /* PropertiesAdmin.ice */; };
+ 0A5393413D4C21A4A84F40A4 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 0AD01636B142847A722DC33E /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8BC872547290B7E35FCC1E98 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 0AEC0E3C9A7DBFA76454CE8A /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 0AF410914B04253E3D20722C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 0AF44D6B46094D54C93E188D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 0AFA8ED125CA617AFFC12D15 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 0B2EA5D1D01B455578B7C540 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3F55B79F56ED47BB1490274 /* AllTests.swift */; };
+ 0B74927469188701778DF5AC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 0BEDBEA41B627C297B9ED5CC /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 0C7D0A3E744E76D3FA107FE9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 0D0859BF2012DF4FDA8DA37E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E610B0E67C9B6A1DBBF172C /* Server.swift */; };
+ 0D0E03F2955927FD0E35F889 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 0D2D9B65474A774807D22210 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6B2797A8849E5E72C831841 /* Client.swift */; };
+ 0D54D2DC8F9693822A6885C5 /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 56535F2466DBDF3413598AB4 /* Convert.mm */; };
+ 0DCA998B1A65960ECCE2FC80 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 88362A8D0FC487784FB0A1F1 /* LocatorF.ice */; };
+ 0DCB9144F04F7DF45F0D4EF3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 0E0BEB4AD9ED22A42E02CEE9 /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D340D331AF4440A1FD7BB72 /* Oneways.swift */; };
+ 0F09B818D5284B782469A192 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = C84F7EAC0F5791E7D09AB072 /* PropertiesAdmin.ice */; };
+ 0F3A0E227168A0546C34ADD2 /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E6A4C5DFD494697F0FF5C2A /* Key.ice */; };
+ 0F4F7553B84783144388729E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69306E74AADE3D02FE4E60EF /* AllTests.swift */; };
+ 0FD5E23217140A9E62D00AA1 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC3D4E5B05D9FD2F3E929F5 /* ServerAMD.swift */; };
+ 0FF523A0A8D47DE50995C823 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 639FE31C5F3B993BBA0809FD /* EventHandler.cpp */; };
+ 101EA3838C47E788DE625F45 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = CE1278569FF626BFD7243082 /* Process.ice */; };
+ 1037823E33E84C2173D1DCF0 /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8190F551078596098F1E80F /* Mutex.swift */; };
+ 105FE0A07CE80F6364486D85 /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = DAB411415D75A65DA58B5F5B /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 107DFD2B0E468C7FFA492014 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 73EC79539B77749D0B385E57 /* Test.ice */; };
+ 109084F9ACA2F600044C309E /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 51406D24D7B88671FC1959C1 /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 109DD34B1B20C9DE10B2A5D8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 10C9A9FCC94666E19203A70E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5380E97D60D39D299195A4D5 /* Server.swift */; };
+ 10F1DECA0169C3C52F2AD4E0 /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 727ADCDFD189C116DA626990 /* LoggerWrapper.swift */; };
+ 110822EA0F8EA3A9034AFB58 /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 761BD64C7E0974FFA525CCA9 /* ConnectionFactory.cpp */; };
+ 112E4C8B8C51EBC428A901F3 /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = A08D190BD584FF5E91403A9E /* TraceUtil.mm */; };
+ 11DF7FE60D840E7A4A7D0D13 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4F0EB416BFF519262CA6FC91 /* TestAMD.ice */; };
+ 11E055A21F340C8D07FD409C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61265F18F9685E78D51636A4 /* Server.swift */; };
+ 120F183EDF3E92678207C573 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62E2EEFD8989AED2832957D5 /* main.swift */; };
+ 1216034E80002FCC684F44E6 /* ProcessF.ice in Sources */ = {isa = PBXBuildFile; fileRef = C35F0E57B69EDEFC5E944EBC /* ProcessF.ice */; };
+ 1238B9CBE127888DC92F1C2F /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB1B6AE8F6FB8CFC0AC003A /* Twoways.swift */; };
+ 1241206285CF92058F6346C1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 126D22F2C47053776876DE6D /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = E64AE4103060ED8DE8C63A5F /* Metrics.ice */; };
+ 12CBDC8CF9A49BA94E449271 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CD8FF49C945CAB4E0CDBAC9 /* UdpConnector.cpp */; };
+ 12DE1D0FA6F1D673900C3562 /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B9BD5DA20CE10B5EEAFC1A37 /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 12EA3048D49EEAB24CC424AE /* Connection.ice in Sources */ = {isa = PBXBuildFile; fileRef = A06AC0921E10B63A1656AD61 /* Connection.ice */; };
+ 130E38AD5CF4B6833B611166 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 130F32F611890133793521AC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 1329A0FC5734C2BA4086D6F2 /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 08464B1715A37D17F3E14399 /* Communicator.mm */; };
+ 136D0F400799F89F4FC8BD9F /* libIceDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FDC4148479AEFCB6426F5E58 /* libIceDiscovery C++11 macOS.a */; };
+ 13AD369B33EA3C4BABF29BE4 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84F9C49554E032E9F24125C9 /* Server.swift */; };
+ 13B7B1983C554DEC1853C341 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 13BBCD8CDC8D96AFACA2958E /* Logger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 127FA99F1F575E391D24A800 /* Logger.ice */; };
+ 13D9F4C2F0BB957AC0C6431F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CBD0880B67614DBCBD9E84D /* TestI.swift */; };
+ 1441128BAEF2F4C6CC057891 /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 565110536C762BBC6BC835F7 /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 14489AB468441A68F1EDAB71 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 1467D4056E752E90136822EB /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 14AFC11142F7631F0B3D04FF /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = B7AEA0767A33654F90E35222 /* UnsupportedAdminFacet.mm */; };
+ 14EA2809DA2364A3D4353D0A /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BEB059DD01E8DA0D5DD2098 /* IconvStringConverter.cpp */; };
+ 14F49448418AA48A50CA8D58 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 1502BE2438226C1A154C0E28 /* FacetMap.ice in Sources */ = {isa = PBXBuildFile; fileRef = F846257F8F86D75E994D2BA5 /* FacetMap.ice */; };
+ 15041A9E40C6AB55A08E8D1C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 150FC0B15EF25B6A5395B24E /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78F0327446EEFAE7C7472E34 /* DispatchInterceptor.cpp */; };
+ 1536D476E9ECD80E8C9B2D45 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5405AF9183C769694C514F75 /* AllTests.swift */; };
+ 153D840CA4E4B754565DB4A2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 1545DAF95DFBE161C3641B65 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 154DB496C74C8290A831AC7B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 1566D7C355B4DC05E4D7018A /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9807056F92FC0E811C314ED5 /* ViewController.swift */; };
+ 1571A9FE6AF4303F9A503CFC /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 158163675A76988285082E87 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78DBA4B685FAAB1B1B19C953 /* TestI.swift */; };
+ 15C24F1796F6AE4A40BB2583 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 16148B77202EAE18DBE4938F /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = C84F7EAC0F5791E7D09AB072 /* PropertiesAdmin.ice */; };
+ 1615F09106E49AD365FB6961 /* CommunicatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC58856E78104FC6C0F9AA28 /* CommunicatorF.ice */; };
+ 1616E2027E0F2738D4206A3D /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 027BBF959E6AF6CDD5006D5F /* RegisterPluginsInit.cpp */; };
+ 1656419535F157F270B4BE85 /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A7386B8D552BC1C5E342209 /* RecMutex.cpp */; };
+ 165F122F8CCBBFB070454A0D /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96E21902D516EFCA981AE170 /* ImplicitContextI.cpp */; };
+ 168365A760944B1F56251326 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89138A69A6071FF550471EA2 /* PluginI.cpp */; };
+ 16E7650E053F7791A4BB8641 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 16FB836FB7D26F50C289AC4E /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78F0327446EEFAE7C7472E34 /* DispatchInterceptor.cpp */; };
+ 1726FF6651E77322D5B5B56D /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = B8C5181F4E251C3BF78F8F2A /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 172A2411FCF704DC92922E3E /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3F85D992A55E3BE71BE236 /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; };
+ 172D6D467B5101C2F97FA3BA /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A32F5A7C35C65FA0E2A9F32 /* ObjectAdapterI.swift */; };
+ 1779A8B94DB4E3E2FEBEA894 /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DF2792969E80FCBEE04BA8ED /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 17812534818F23BFE3E8AFB8 /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F0C5755496073BF23DAD0A /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 178315D963A76B516A1DB186 /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BB30FF55D1D682BEA2F84695 /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 178EA04202CB7C2A32956348 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 450AD776C8151E42914041A8 /* RouterF.ice */; };
+ 18020C701FB9B2C2E9759068 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA7FC13CEE1D2C6BCB90644 /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 181C0356014BFA65BDA9D94D /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C8C4EC7F377638ACA3789243 /* ConnectRequestHandler.cpp */; };
+ 182BF4C6F24B4696614279FA /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 187120867AFC33575D777B39 /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 245D2B5223975F47997BD145 /* Options.cpp */; };
+ 1879D91C0EC4E02723483022 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2305AE83E13AEC1F82A891A4 /* AllTests.swift */; };
+ 1891FD6E50CD144CF05F5DBB /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E384C57B8AE41D5ADE5382E /* Client.swift */; };
+ 189BEECFF18F7DEE7096AD6E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64EE2C5503AD46C98E012E96 /* Server.swift */; };
+ 18EA0D609A009E6DE44E93E6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 18FFD37FADCFADE3F7F62B74 /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABC01710A16129B2F462DF4B /* ProtocolPluginFacade.cpp */; };
+ 192DAF097EBAD930880F4818 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D2A24C74B1457BADF42EA04 /* Test.ice */; };
+ 197BA3D8F705130080D6E04F /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 50C28D2AE3D7153816FAA709 /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 198E9B828A48BE79035C6168 /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A8317EBDEA737A29A26FBE54 /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 19D9DB3F4100A04CD7D26B33 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BB578F04F513F6B307DEBE1 /* Server.swift */; };
+ 19DCE56D3DA0DB085635E0E5 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5B747D322414658FF4DD342 /* Util.swift */; };
+ 19FB9070E69E02C53817A063 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA8674CBDF25012A707605D /* HttpParser.cpp */; };
+ 1A303AAEBFDF6E7D369B4761 /* PluginF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 059160A9429AADF7083C704C /* PluginF.ice */; };
+ 1A41D35FA3617871A0DF2BFF /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3EE292939C43A0B9A8B787D7 /* Locator.ice */; };
+ 1A55877F0C35ECB8BB2F7850 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B9D6E5C6823D2641DF157CE9 /* Test.ice */; };
+ 1A65BEB1F9E93A971AC7DA75 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF98339FB04534928125DB76 /* ServerAMD.swift */; };
+ 1AC563F8501D294350B17302 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 16A8E8F8E99D146123EF3409 /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 1AFCFD280B7FF87D80C28922 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7603D7C27853E868765956CA /* Version.ice */; };
+ 1B0570B44183F6CB9389AA60 /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 710150F5EEF490D2E9D93DA6 /* Forward.ice */; };
+ 1B06228D7CF65CC839420B50 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 05FFDAA0F31D253BA2E31F6E /* Session.ice */; };
+ 1BC1F75801ACE90C521D652E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 1BD004F5F5D2E4D43F755F24 /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7139B6C8CA10007E792F53D4 /* OptionalFormat.swift */; };
+ 1C1C2F59EAB745571C0E08BE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 1C6C8DF382039CF0872A0130 /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AB36D857DF0F81C4D5594C6 /* LoggerAdminI.cpp */; };
+ 1C933501BB26715DA3340BEB /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A64DC01AFE2CE7EB0471ECFC /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 1C9B6FFF3A0E5C0C4D04AA6F /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5A8A9CE6A57293E4D35757E /* Acceptor.cpp */; };
+ 1CC3A6C479CE3235E19B737F /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 02CAE11517F65F36BB6B3CC1 /* Identity.ice */; };
+ 1CF90C59523B11D998C5712C /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E01786DB7612C60BF8A1AD6 /* Exception.mm */; };
+ 1D3021B3DC0C66A21DF31157 /* ServantLocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9800A938F2930FC734B98F4D /* ServantLocatorF.ice */; };
+ 1D4F5492C20DF82A60AD2738 /* libIce C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2761AE969F9024BC359E5325 /* libIce C++11 iOS.a */; };
+ 1DA01EC5911A79F903280FF2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 1DA1FD7205069928152C5AEB /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A94409373930E6F6393C67C /* Server.swift */; };
+ 1DA5E66C5081305CC6917F68 /* Properties.ice in Sources */ = {isa = PBXBuildFile; fileRef = D611E5DADBB8DF69D3A0E64C /* Properties.ice */; };
+ 1DBF204EBC2C1E936D91D620 /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1607EA8204961B94B47DF689 /* OnewaysAMI.swift */; };
+ 1E3B3C83A358CB63C4BE03F5 /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 631222ED1E46C261BA6D81C0 /* ValueFactoryManagerI.swift */; };
+ 1E68090DB9AF60B5177C4A1D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA71E7B49312CF4F07C90A3C /* Client.swift */; };
+ 1EB713715366551BFB74E447 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 226E6E31A9D9B1EEB6E4EFE1 /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 1EEFA39AB2935D6AD6E01EC9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 1F1B0FF4D09DCFC2AE410908 /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A7386B8D552BC1C5E342209 /* RecMutex.cpp */; };
+ 1F4E66C2A2AAA1E9AA7895CD /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D356FF229AB189BEC612EDB /* TestI.swift */; };
+ 1F6701C5EEDEE16786E4CF6B /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22825AA9BAA549D3D3C418E4 /* Exception.swift */; };
+ 1F749D532795FDBA5BFEE0CF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4DCAFB642425E93AF71FECCD /* Test.ice */; };
+ 1F8B632C574AC5DA1A7956D1 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8904DE3DE3816938E87F46E4 /* AllTests.swift */; };
+ 1FA141025CAACD91F043C5DF /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 214166CE121F3A29265D1D8C /* Collocated.swift */; };
+ 1FF0F0D4FA0FCFAFE44D2379 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 2008B83A4AAF7538F44EE304 /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5363DD742BD3E50E372FAB5C /* Clash.ice */; };
+ 201CDA9BD4BD00023762084A /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEAE54441F169A7C4B067FFA /* PropertiesI.swift */; };
+ 2030C012E514B2194BDE3B5B /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A2C780B2D6CA6CD0DCCED459 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 2079F44768905B2516F88678 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = F9B270E39D3B1D84A8E6B986 /* BuiltinSequences.ice */; };
+ 209540B55B7A1A7DBF2FCC68 /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 273C8A37832131D101BED487 /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 20FE2B376236805F9AE3845E /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2E80530BC3EB3B267510B98 /* FileUtil.cpp */; };
+ 21047287F26526423472F521 /* LoggerF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1A6072E86A263FC327B1F44C /* LoggerF.ice */; };
+ 2107B50B2861DFD308523A28 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 213B76789680E95517C1CFAB /* ObjectAdapterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D5FF83D9BB6FCF48B42C981 /* ObjectAdapterF.ice */; };
+ 2172A33FB2EE474C72289DE2 /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D27803EEB8E05AA2872DC0F /* DefaultsAndOverrides.cpp */; };
+ 2176B86BCF05CDD2C9427A0E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 219801FC5352268044C2F57C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 21AC5354B56F5F4A32E38107 /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E371D78131705C17C63946A8 /* EndpointFactory.cpp */; };
+ 21EA6F7C78BFE78BEF1CD298 /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8511F4E2012CDD7C9629C27C /* ObjectPrx.mm */; };
+ 21FB04D218E2EF2C2B80C277 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAB3EA4F291781F0F7B6F024 /* TestI.swift */; };
+ 220A863886D6746EAF9E441A /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB636E7C5AD8884DF982486 /* Proxy.cpp */; };
+ 224CE10B7375720A397AFFA6 /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CBBD656C39C80C5AF2EA1DB /* Base64.cpp */; };
+ 226237BEFE016871484CA0BD /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E8A8FCD073B502C50AF409E /* ServantLocatorI.swift */; };
+ 22CEF1922E8EE385E1E3AE0B /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D6AD5F74CE6D55E945CE35 /* SlicedData.swift */; };
+ 2355DEECBA392F60D17D4351 /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3213430A8FFA260ABBFFE6DF /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 237DB7646C291884C6CCD9C2 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 238EB85FB8BF1D5252936ECD /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC5F7C4F2F0D95F24CC5DD66 /* Collocated.swift */; };
+ 23A7256695925C8B370C23AA /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E19C150CCCC22B7DE0139429 /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 23ADF18992C50947E9E69EF2 /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7FFF7F457B44AF10B294A53 /* StringUtil.cpp */; };
+ 23F959A19338168260332DFC /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B769550900F96420DBCFED72 /* IceGrid.framework */; };
+ 2413D47D1C36FD6C2430364A /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 698F636B1C7F71C0D86FCEE2 /* ServerAMD.swift */; };
+ 2446B152981C663702DB88A2 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D88018174B46A41D0B540A95 /* Collocated.swift */; };
+ 247A0FE8508471D6F280D8F3 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60A75D69BF7BCC8427A97577 /* TestI.swift */; };
+ 2489129947B2BE614647C3C8 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3211C9FB66D58C1BDB91C18 /* Network.cpp */; };
+ 24B58FA276A6EAD5304858A9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEC9D0420245199FB5BBD345 /* Client.swift */; };
+ 24BF02F34583DAF4D96DD2EC /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF321DBB41A7E378EDBDE46 /* UdpTransceiver.cpp */; };
+ 24D454A7AB1692CEC5C7334A /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E6F24A92F34BF28AB3B74C9 /* WSAcceptor.cpp */; };
+ 24E403A6CE7CB74DB266538C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 250D4E8FEC60883143450CAE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B9D6E5C6823D2641DF157CE9 /* Test.ice */; };
+ 253A8A25187AFEF6A69A165D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 2571883915701182CE340343 /* LoggerF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1A6072E86A263FC327B1F44C /* LoggerF.ice */; };
+ 25B660592DE9E9E44C12C139 /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AEAEA1C49B0E4F1F69EF841 /* RequestHandler.cpp */; };
+ 2610D127AA77C3F53681AF7D /* EndpointInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 651858AC9B30DE6B2A8B0AA6 /* EndpointInfo.ice */; };
+ 2629B8C3AB91BAA05CCAD213 /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 004AC667D8AC449AF8D18665 /* NetworkProxy.cpp */; };
+ 263DE1FEB7195047FAC3B2FC /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB9423AA60DB5CF08094DAF7 /* LoggerUtil.cpp */; };
+ 266638FEC5717776C313447C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F1FF86C20DD375A84E790A7D /* Test.ice */; };
+ 26841546EFBA6EF3D7910A12 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40E9F5F5F2A1FDD9AD507CFE /* Collocated.swift */; };
+ 2776F23CF8380600744A84DC /* EndpointInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 937B8FBC13804AC35D672463 /* EndpointInfo.ice */; };
+ 27A3E82168F622D62F8581E4 /* ProcessF.ice in Sources */ = {isa = PBXBuildFile; fileRef = C35F0E57B69EDEFC5E944EBC /* ProcessF.ice */; };
+ 27F24C06CB4AC1938881B55F /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E41012D98C4F274B58EFAD /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 2801B3D982989FCAA10D7128 /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7EEA4E6130FAF1695D9ACD8B /* Endpoint.mm */; };
+ 283390D846410949B5EB63FC /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 287921C512740903FA5E6E58 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBE83FBE8EC1C00F209B7912 /* ImplicitContextI.swift */; };
+ 288692E1621801E079402ED3 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A39829413634597ADED6AABD /* AllTests.swift */; };
+ 28F75FB1B5CBCDC0B244A7B0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 29247BB7881D985D39A125FA /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DDEC3707E1BCF1F01D4E481 /* InstrumentationI.cpp */; };
+ 295EE4B1AC9585CCD0175B6B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 297D0356DC95C100598AD3F0 /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C150DFE9F6860E13C667DA77 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 2991CC0127921A6738E5F6C1 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18D84E7BFF897CD18E15CC92 /* Service.cpp */; };
+ 299EF39BA22CB02D074CA905 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 29CE3B76E1ACC9B079ADE690 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 2A2F8E0F73967E30DCAB791A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 2ABF47C45E4F184A47F91A33 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49BFD82EDC5961557B3C081D /* AllTests.swift */; };
+ 2ACBB35BCC98E7848B0EBB36 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = 46CCEC5938A075D12D2F812A /* UserAccountMapper.ice */; };
+ 2ACEE3D27ABD032F527136F9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F89A3B2AE050F821147BD7C6 /* Test.ice */; };
+ 2AD166814D8673DE98DB34F0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 2AFDCF18C5B4B16974103256 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 2B319CAE56557C30F9A71445 /* Endpoint.ice in Sources */ = {isa = PBXBuildFile; fileRef = A89C6CB51DCAC3F757EE49A7 /* Endpoint.ice */; };
+ 2BFDE648166E3018ADB52231 /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3D6020190F13303DBB3AE04 /* LocalExceptionDescription.swift */; };
+ 2BFFCDEFFA4791217556462D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 664EA396BB43EE3C105012F9 /* Client.swift */; };
+ 2C0909B831C8D1C5207354A7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 2C14E5923DBDB61691367EFC /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 481882F90E5A74D3D85F8CED /* Test.ice */; };
+ 2C2A9C0D4B02CE48CC149668 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6DB5FF43E9B340D7029297A /* UUID.cpp */; };
+ 2C83456FEC7A220FCF6B8E11 /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F9A362F07BFA44C1967BB23 /* WSTransceiver.cpp */; };
+ 2C97FA07CEC0D2EC676E0BFC /* Connector.mm in Sources */ = {isa = PBXBuildFile; fileRef = A1D032AE98D0C4D070D681B1 /* Connector.mm */; };
+ 2C985A786A17CF8F933C1B70 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1BF1FBD5B99791A16DEA1E4 /* Client.swift */; };
+ 2CA581DF47445AAE9F684F86 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FB28C8905B0491A1AC74818 /* IceStorm.framework */; };
+ 2CD900B94CEDDCACC9129D8F /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8802757B1DE233FE2791BC9F /* SSLEngine.cpp */; };
+ 2D1562D62D3D463F8C3E523B /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C1B8ACEA453172F319A1B60 /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 2D270930D20321E0E4DCF030 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 2D2C890AE7FA67F8FB83AF03 /* Plugin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1C3E9C2120573ABEE7328084 /* Plugin.ice */; };
+ 2DBBAF4E6D2844B1FB2144B2 /* ConnectionInfoF.ice in Sources */ = {isa = PBXBuildFile; fileRef = E97D033BADA38AF9402AA464 /* ConnectionInfoF.ice */; };
+ 2DD29DC85DFE7312CF666442 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 2E0FB83440E7E87126A6685F /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B9BD5DA20CE10B5EEAFC1A37 /* Glacier2.framework */; };
+ 2ED7E7D994B597F9022E84D9 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26D19B8F44761D7F15D55351 /* Initialize.cpp */; };
+ 2F172D1013C9D7B768407AFC /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 944277575906253E2D264529 /* PropertyNames.cpp */; };
+ 2F1FFADAC530E6B05E3A2BB5 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB0075088BD497CEE1D89780 /* Client.swift */; };
+ 2F2C3FB2F72794F86AD04730 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E7E69875C244C5778EEC372 /* Util.cpp */; };
+ 2FCF5F07732A56A488FC30C7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = EB489D1E2A8C2CF17A2F4330 /* Test.ice */; };
+ 2FDD95D76E0A825FD90787B5 /* SliceChecksumDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = C784636985C065D20545F5BE /* SliceChecksumDict.ice */; };
+ 2FE6B761F66C7B1B09DF0012 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = B7D8B9A2D605FCFFC786AD11 /* IceDiscovery.ice */; };
+ 2FED9BFFE890ED8FE1563F6A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEC9D0420245199FB5BBD345 /* Client.swift */; };
+ 302053A6F0E67A56D6B48E48 /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 3044DF248BEDCA51493103E6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 30AA75DB96928983A4C6344A /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = E8C1AE8D395B3456440C1E9A /* PermissionsVerifier.ice */; };
+ 30BBB66F4C0534B8C722AE17 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDB4DD346430D46FA6ECB82A /* ThreadPool.cpp */; };
+ 30DF301A69678F517FDB74AE /* Current.ice in Sources */ = {isa = PBXBuildFile; fileRef = 477E91A1197B5830761631C1 /* Current.ice */; };
+ 30DF3580ED7B8C0BF361E1B5 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 499879837AB808E65E267110 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 30EB6AAA9D0FF7C203B367D5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 31003D5B91262A26F7C68FDF /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A4851EF0D876EA33F2F0806 /* TestI.swift */; };
+ 31103CD3D5F28AA1D7B3D8EE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E9468F3EC40357BB0554ABEA /* Test.ice */; };
+ 313F3C082D022D74F3B99CB8 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1F77E560368761492402EA3 /* Server.swift */; };
+ 316D7E669E4929F1A6DCBD0D /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABC01710A16129B2F462DF4B /* ProtocolPluginFacade.cpp */; };
+ 319931210FE03935E746A6A3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 319F12832890EFC28E6DFE8A /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51958A1C51031D46A27BF8C2 /* SecureTransportEngine.cpp */; };
+ 31A3041EC0496417F2AEFBF6 /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 72F0133C3F5E2F48BC792374 /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 31C131049D40FE06A2ADE4B4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 31EA9335F33839264A62893C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 3240B8C50447DC8BD4DB350D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 3277980CF43D33E8550CB3DB /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0DEFC193F3F347850C430F6 /* TestAMDI.swift */; };
+ 32A3DAB6900794246A19AB09 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = CF62CB725A11CEB7E4573361 /* Test.ice */; };
+ 32B08BEFCDF46D75695CB4E2 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7603D7C27853E868765956CA /* Version.ice */; };
+ 32B75CEB4EC7A87C89C75C3D /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2AADDF310CC1F8D9621EA843 /* OutgoingAsync.cpp */; };
+ 32D6877D513077A56B21B3A0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 32FCB416C0BCD83419EF2014 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 330B7D05DFD17950516721C9 /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = 515A9CC5CE995B281FBCA597 /* Descriptor.ice */; };
+ 3345435F60306F03597722C8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2364A6DD20E3A6D924D2D4BE /* Client.swift */; };
+ 335D81F6388A62D7B6E25985 /* PermissionsVerifierF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3B4606981283ED921B421816 /* PermissionsVerifierF.ice */; };
+ 336B49E146B7E08965973D3E /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8DD61CBFBE4E12B6E30E9C4 /* FactoryTable.cpp */; };
+ 33A2120A0586F8D6DB9A8AFA /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC5D768A10737D6ECBD5090F /* Process.mm */; };
+ 33A8FC706DF667F54D259063 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A56A987814C21FAD838ED42 /* AllTests.swift */; };
+ 33E42C92CAB167494FDC7269 /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 89F506EE1C27CE1405020A38 /* ImplicitContext.mm */; };
+ 351C9A2A1F031E3FEB632AC1 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 35269C0124956DF7DB133293 /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1607EA8204961B94B47DF689 /* OnewaysAMI.swift */; };
+ 353DCAAD03B6378AC08595F9 /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F7EC05463EED3AC758275FE5 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 3555B153C73D558EE9C616C5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 35AB639A9A29002352D8FEE5 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 330EC83D3738ECC6A7536C9D /* Client.swift */; };
+ 35F5DFC609D8F021131C9D1C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 35F65BF1DE1BBBDD3523291C /* ConnectionF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4CC8D93A3FC8AF9E0BB609FA /* ConnectionF.ice */; };
+ 360F4009B0AAC4A5D94BA637 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 361923BFA90CE73FC03C270B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 368B61D705EE3C6B25FB0262 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3B6F273274F0A33E74B63CA8 /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 36EC4B1C55B158A1E7F8B900 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A634FA66859D5F3AE6E6123 /* Server.swift */; };
+ 36EF6FF7F167ED91C9D223E5 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2BFD0993886CBEB26A9EBCC /* ConnectionI.swift */; };
+ 3718CAA707CA628C70B8EFEB /* TcpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41F920720773452A5300D74A /* TcpTransceiver.cpp */; };
+ 373C2AC625C97DFE61587E1A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 377B80D1446E136A1E3B08D2 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0EE0541C8C209BEE2760A321 /* Session.ice */; };
+ 378C0E7B182FE55DDD369FBB /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6E1716C66456BCBBFBF62157 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 37A36C8CBF30C71954A1160B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABD78784328011772284AB65 /* AllTests.swift */; };
+ 37A6F70E603EAFFCD1EC2CD5 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7243D1737C0011C6B64B6542 /* InitializationData.swift */; };
+ 37BDB088EF64A3FF1BBA8625 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 73EC79539B77749D0B385E57 /* Test.ice */; };
+ 37D2B1F4D31695EB367F3432 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 383EC18569712EF007712EE6 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 709BD396C5DD2985D2576C89 /* AllTests.swift */; };
+ 384B69590E8A5A68A34D1192 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 413017D5FD36BC0B6A5377B0 /* Security.framework */; };
+ 389F29D03B6A01161E158FE8 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83ADC759472D70CD7FABB6E1 /* Random.cpp */; };
+ 38B3F3831758315063BD9CA3 /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 38D8147F3C3DD12317A6BD20 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = 08D4C2681B7D72E32D51CEE5 /* FileParser.ice */; };
+ 38F4F5FA9E9AEA91295EC236 /* Current.ice in Sources */ = {isa = PBXBuildFile; fileRef = 477E91A1197B5830761631C1 /* Current.ice */; };
+ 3928640F7D6366DCF2AB45D0 /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9C4BD7AD24E3017193C86F9 /* TraceLevels.cpp */; };
+ 39288D06602CA43D50B44CE0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 39341BF34C948DB8C236D787 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 3954980D029C0C68C1B7DF2C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 39B5700E0EEECD0915EDDE7F /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = E70C9D396BD6B5A4E73C5CFF /* SliceFlags.swift */; };
+ 39E0647B24D4EAA22820F00A /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = CE1278569FF626BFD7243082 /* Process.ice */; };
+ 3A3CD1E547C99FF9B5AC1610 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7BADC096D1677992528358C9 /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 3A4527C8B7C6375A260EF1A9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FFA38493C067C6B8C76B1C6 /* Client.swift */; };
+ 3A576FE4F4B58494E6AA5A66 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9499FF08DB66C34FD2896B23 /* Test.ice */; };
+ 3ACE7EF2D0D5B4E6811D8771 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 3B29963942AF2904174B8494 /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22825AA9BAA549D3D3C418E4 /* Exception.swift */; };
+ 3B2EDB18065B534D64B9FD83 /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A69A2EB1087C09983D0E3EEC /* DynamicLibrary.cpp */; };
+ 3B63E934EC19B165DA50F0F7 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1326E162E95AA649537C06E8 /* ProcessI.swift */; };
+ 3BB2E31F205B2C9205DCD7B0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 3C076139390102CAC5C13C7C /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D1907C2D29A0010AACB3DBB /* IncomingAsync.cpp */; };
+ 3C2706761393FFFD93E99CDC /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 02CAE11517F65F36BB6B3CC1 /* Identity.ice */; };
+ 3C5CDF8FC3DAC9566B48704D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 17329147DB1EA3BC64BB13E3 /* Test.ice */; };
+ 3C65AC2E5895B8FD28D7C04C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 3C7C32A40A6138018A174792 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB89A20DB867709982778CC7 /* TestI.swift */; };
+ 3CC13D43A7B2E44BAE751500 /* ServantLocator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2AC0FE6725FBB1C2DC5A9E78 /* ServantLocator.ice */; };
+ 3CC588A1FDE5049A406DAE75 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 583A290A57CB40B7B130517F /* Server.swift */; };
+ 3CDAE9E45570872CD198B1CC /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4209DB74FE392398BBBAA7AB /* Client.swift */; };
+ 3CF8A1B7328D7734EEC2DA28 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E384C57B8AE41D5ADE5382E /* Client.swift */; };
+ 3D014A8FE5588A6ECCCC790A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E64564556238B25F5AE6D4E /* Client.swift */; };
+ 3D174B0BA20441CC5CAAB1B9 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 158A84D614CB3E2C3AC2A5E3 /* TestI.swift */; };
+ 3D456C5E3124C304C613D085 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 3D47ED70E00060BB52E0EE57 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C124F0D45B6275831BF5F438 /* Exception.cpp */; };
+ 3D6C6574D0E964A64F226D97 /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A2EE54802BFD472CDFC02692 /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 3D8C49637C44ABC910A7D30D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12065C41856FEC7169ECD5A0 /* AllTests.swift */; };
+ 3D95B02E435D5F76E1149C44 /* TcpAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF39992CCB6F0C95231E7542 /* TcpAcceptor.cpp */; };
+ 3E043F863A87FA9D335A06D1 /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 710150F5EEF490D2E9D93DA6 /* Forward.ice */; };
+ 3E1B1BC3CB1C7493B96A0505 /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1372F822DB8C05EDAF951C4 /* SecureTransportCertificateI.cpp */; };
+ 3E281F05FB3317FE1CE34BF6 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B69DBDAE6349C71437BBA75F /* TestI.swift */; };
+ 3E4C12EFC2BDEB6D92A7E395 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 3E5E37983351379ADE9E7191 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 615F705ADD38DB36488696E0 /* TwowaysAMI.swift */; };
+ 3E6DBB463F337CEC2A459771 /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEEED6CDF0BD1668C74B3F2F /* LocalObject.swift */; };
+ 3E75595E04D60F4BC46F06D6 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A606916AA8B15138B915115 /* AllTests.swift */; };
+ 3ED585F41599B04BCC835ACB /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F6090BCC46A202A68BBF77D /* AllTests.swift */; };
+ 3EF58075074C8D044754A84F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 3F5629E80E534CA7A119707C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 3FA85C13DBB8D5D9FDA23EF8 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AA88014FB3AA166A95BE666 /* AllTests.swift */; };
+ 3FB4C3D866FFD2473543B594 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 3FBD17DC28C6CE539D7AC658 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 3FC709B8C67A9E080336AFB3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 751D293EE7855F9A5A773FE7 /* Server.swift */; };
+ 3FFBA76EBD5ACB1DE1356987 /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23A7A3D04FD6DD262946F705 /* ConnectorI.cpp */; };
+ 3FFBEFD2093492A08F0A0543 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8C3320857B5D24565F04EFE /* BatchOneways.swift */; };
+ 401D0AA11CC25352AFD57D4D /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F0DC044B6F5DAB4FA96D80E /* Instance.cpp */; };
+ 401E7AE45222CA5DE50DF88F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5380E97D60D39D299195A4D5 /* Server.swift */; };
+ 405131738FC05E274DF07B91 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 4071E4AB931E129B57805FFF /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C62B6C403ABEA4B86221A379 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 409A035608EFA1778FDC29E0 /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = B7AEA0767A33654F90E35222 /* UnsupportedAdminFacet.mm */; };
+ 40F29897E48D37A4F9897C08 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 412A86E514A10830D3503879 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 417B9BD1ED267165A6D6C767 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 417E86879EAAF434C7947CB1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8823D4D696A3C18EC64FB4A /* Client.swift */; };
+ 41B01019CED4B0227723642C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83119929B0E9A068FECE736B /* Server.swift */; };
+ 41C304BDF5024716AF93E284 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DEAE5A8F941AB2CCAA16FB6 /* IceGrid.framework */; };
+ 41C373C15F31AF7D1DC1F3B7 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42D78FE28A5FD6909B09171E /* Server.swift */; };
+ 4205A0D10E5D60758249E823 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29C0938AAE0BAC68179CBCB0 /* Server.swift */; };
+ 4206E2C08B16A88D3183C35A /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 775EFBE78694683F3173F765 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 421BCB6F921B147F2C829BE2 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = A214ABFAF9474F81CDEB4D9D /* Metrics.ice */; };
+ 42D129A3FACE2EFE7A95B1D8 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 430BB5B2B57432253473DDE2 /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 56535F2466DBDF3413598AB4 /* Convert.mm */; };
+ 431F99BB4AB66783560D584D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFA6DB995DB96B0E3A2B65EE /* Client.swift */; };
+ 43D061B244CC749B6D9A6CD5 /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69751EFFF0F18C7B5657D7F9 /* SecureTransportUtil.cpp */; };
+ 43E0B6DF0FFC7A967A9F12C5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 43E3C4E5F63CD1ACD37C8BA9 /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEEED6CDF0BD1668C74B3F2F /* LocalObject.swift */; };
+ 4413F4C4E50E8548FE8BF972 /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A63DCDA9CA07C5D78EB18355 /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 4479374881A3AC61AF0F0084 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = DEE5B91323EE4E6BAEF5C730 /* certs */; };
+ 451B5208BA229078C93E4BCA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 451FF3B351625B57BC9F8039 /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5112EFD03DEEE228D3CDD2CF /* SSLInfo.ice */; };
+ 4524EA88D0F3C1B36032DD2F /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = D8026643E397138CD24E9782 /* RemoteLogger.ice */; };
+ 45276C7732C1A7207247771E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61265F18F9685E78D51636A4 /* Server.swift */; };
+ 4590FD73B74C91B1CA91E584 /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E6A4C5DFD494697F0FF5C2A /* Key.ice */; };
+ 4599DA71FBE5C371E61A4094 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 45ADD1A65D9C1E32644439A8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 45B56899E82F39C4022312D5 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 907A6D6CFC6A86E3A26C6F8E /* ThreadException.cpp */; };
+ 45E3E79A2C8110DBAC4ED623 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 462BEBC36C5D5A273DA7244E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5405AF9183C769694C514F75 /* AllTests.swift */; };
+ 4655F2E445B2DA9701DE8F77 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CDFF3A184E66FFB28428C6 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 46907D2978679BAB6688CCD0 /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = B8C5181F4E251C3BF78F8F2A /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 46EF63DCCC12A2C03EA858AB /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = EECAB125E8C93688689DF18E /* Test.ice */; };
+ 472CAE87D70DC8CF731AA436 /* ConnectionInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4CE1EEF3C86CED79525EE458 /* ConnectionInfo.ice */; };
+ 473E807E02F4A5CFB624F20B /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 439CAA99857F58F11386EBC3 /* ServerPrivate.ice */; };
+ 47537E6DF19E1BE814C04A10 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 664EA396BB43EE3C105012F9 /* Client.swift */; };
+ 478B84D29DB6E38B98204BA3 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = 182A1AA2D3A49D6E5464E1AF /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 478ED57BB1F0E31BED8CBE73 /* Current.ice in Sources */ = {isa = PBXBuildFile; fileRef = 477E91A1197B5830761631C1 /* Current.ice */; };
+ 479C1F8B42FA53EC5389B433 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 47A154C782BCCBB68CF9CEBD /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E48639D847EEF9B191A6B2A /* Time.cpp */; };
+ 47D40A85C6C668E3022AEDCE /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 68624E43D69AF264C6D22C54 /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 481E4FF2EB7A8AC7817AB819 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B99EAAC5667070FF5F7B6FF5 /* AllTests.swift */; };
+ 48A480B46CCA0DCA8926C880 /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F75C2DE308BADB2A61399C3F /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 48B6CDE214B215A17397F99F /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D8E7928159B49F7A04DA97BA /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 4933D2EF26795AF628618608 /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BE6BACEC2F33E91F4B617FB /* Transceiver.cpp */; };
+ 49490911928FA9912B5D0FE3 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 49591A9054CA376990DBCAAC /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31FD0E8873503AA6351BA289 /* AllTests.swift */; };
+ 495CAED8C30357999991032C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 496AFC3BE43499C2F4DA4239 /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BED0B487712EEE03615C9CB3 /* MetricsAdminI.cpp */; };
+ 49A54875952D120753378204 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BF026BDB77BB9A18DB05349 /* TestI.swift */; };
+ 4A0A055C6AEFC5FFB5121587 /* Instrumentation.ice in Sources */ = {isa = PBXBuildFile; fileRef = FF801C186E03BB2EBD80CC72 /* Instrumentation.ice */; };
+ 4A630E30DA3058F81ED6D0B0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 4A850820CC0348627B2C50B3 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4DCAFB642425E93AF71FECCD /* Test.ice */; };
+ 4AD3E8A4886C318510F7C987 /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5101032594480253E29AC55D /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 4B220BE14A8E74BE1342147E /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1372F822DB8C05EDAF951C4 /* SecureTransportCertificateI.cpp */; };
+ 4B88982CA7E44F27F5EC61F9 /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 258DAA9E0D1E1ECB4B65ED80 /* PropertiesAdminI.cpp */; };
+ 4BC4D1199B0C8388D58BDDE6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 668F5888B8D0CB186D6053F1 /* Client.swift */; };
+ 4C0AD01AE868084BE23AE429 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20B2EFE81749EB63ECF0E74E /* TestAMDI.swift */; };
+ 4C1166055E717EDD0B25A1B9 /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB36F29477EA57AD8868E6DD /* ArgVector.cpp */; };
+ 4C42D222A780D4A59AECB76B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 4C43B4B4075CE4989FA06B8C /* PropertiesF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 865CA76FA57E281F305229A8 /* PropertiesF.ice */; };
+ 4C8EECFE8B765886925B232B /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = D88E9B56D89F644A6AEC3F3E /* ServerPrivateAMD.ice */; };
+ 4CF22E9936CB169BBFDE6596 /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F74EBBC0FF989CCB80A6CE4F /* SystemdJournalI.cpp */; };
+ 4CF2C72A53852238F87D4908 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC591A6A5FF8126DE099F8A2 /* ServantManager.swift */; };
+ 4D3C3104277F62F4CD0C3813 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 4D4879CBEA5AF9B9476CA5FE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A38EB9C90EBFC403A05E7661 /* AllTests.swift */; };
+ 4D7D2F7738CECE5861623B68 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 58AF2DBEA9E524721EF29279 /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 4DDFD0F3F804C3EED4D7FD1B /* EndpointInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 651858AC9B30DE6B2A8B0AA6 /* EndpointInfo.ice */; };
+ 4EC6C67A39E5FB8429FFF279 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BB578F04F513F6B307DEBE1 /* Server.swift */; };
+ 4EFE48ADB15DC73DAE9D8A25 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAE2B9B108DC7C8C6DF480AC /* Client.swift */; };
+ 4EFFB2A6C07DDDD71FC61D62 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3EE292939C43A0B9A8B787D7 /* Locator.ice */; };
+ 5027C663A9B52FEE73B1CFEA /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0507C0145EE5B124FE90FA6E /* Client.swift */; };
+ 502F2C1998C22A5A96CFA8F3 /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8565E6799EC944D42F00DB9 /* LocatorInfo.cpp */; };
+ 503BF71A9FB17136AD834A30 /* SliceChecksumDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = C784636985C065D20545F5BE /* SliceChecksumDict.ice */; };
+ 503C9110692E2CF296B51180 /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AEAEA1C49B0E4F1F69EF841 /* RequestHandler.cpp */; };
+ 508F3B86F0B341FC6C813968 /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6CDAB227924D0610F81AD01 /* InputStream.cpp */; };
+ 50A2464D8179FA635F349213 /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C6AE8BE95F80EBF3D2C290AE /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 50B29DB0E4C1423BC3256B5D /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0C6CA87763EF92E236588FBA /* Glacier2.framework */; };
+ 50E4B8969DB2AEDB96DFEA61 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F5FFEAC74A94BBC740FD19E2 /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 50FC11A579E823A6CE7D34DD /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = A8F736DDD2D36B64200A0023 /* RouterF.ice */; };
+ 510E51D17359CD2FBED299A3 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = 182A1AA2D3A49D6E5464E1AF /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 515BF5DBDEDF1A6043DE4BC6 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 623A2AA62A0FA760224602DF /* EndpointTypes.ice */; };
+ 52028D9ABD56AF65A8FAE0E3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 521A45D3679D6F29951EBF03 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 521AA491E0F12631E6B313F9 /* StreamConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACC7E3AC4A2BB3A86C34E51A /* StreamConnector.cpp */; };
+ 5227E03CF69B256481F33BFC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 522BDF4004F3E93A911DF449 /* ControllerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE9AAB53263BDDA227A0202D /* ControllerI.swift */; };
+ 523D1BAB376E4C0BD93D34CC /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 876C5922AE9C9B31BC47A8D4 /* Metrics.ice */; };
+ 523F7214623251CF407D0091 /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEDCB1E205F0A6AD13A75CB1 /* LoggerI.cpp */; };
+ 5297F07DB929DF2E417F5676 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31FD0E8873503AA6351BA289 /* AllTests.swift */; };
+ 52BECA150D2B6CBD782233BA /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05BB39343FCE5405892D8C99 /* CertificateI.cpp */; };
+ 52C2E42EB8309F53C987036C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 530E32A812FA0F15E65229F5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 531712D96619DEB17FD9B42B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 533B466876A8DB5A25832564 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26D19B8F44761D7F15D55351 /* Initialize.cpp */; };
+ 544D672ABA2A43C93BF888BE /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 50AA22200C91767A2104DBE3 /* ServerPrivate.ice */; };
+ 545A45EF7922FF276B8B86B0 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6981AC9F0A8894E8A40D6C55 /* Server.swift */; };
+ 545E576E3FDDD49E42810646 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 583A290A57CB40B7B130517F /* Server.swift */; };
+ 547A0DA563912F636FC0DF85 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 55064CDA0B422F365CEB6AC5 /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF0F61C0C43F357F80205B2F /* PluginManagerI.cpp */; };
+ 5584899926E92C7A6C169C39 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A4FE73B5B6FDF4F56912AEF /* Server.swift */; };
+ 558F83C66FEAB990783544B8 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0313E5DCB24F56323CECF640 /* Test.ice */; };
+ 5593C94105AA782F4BE5F821 /* PropertiesF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 865CA76FA57E281F305229A8 /* PropertiesF.ice */; };
+ 559C06831ED5DFCD8468B3AB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 56119C18EEA705EFF9A81E91 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 565421FF932C8778B5E1C18A /* ConnectionF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4CC8D93A3FC8AF9E0BB609FA /* ConnectionF.ice */; };
+ 56696A9F0B8FD97691167196 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 5699A746B6B5F90FFC6D1C24 /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A30F25D651F58222C077DC00 /* Protocol.cpp */; };
+ 56D2111FDCE1C85672958229 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93C2C1B12FB6F74B85A74AB8 /* TestI.swift */; };
+ 56EE4E9733FE43FFE8F27532 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A5FC09580DFEDA42502BB46 /* Collocated.swift */; };
+ 56F67146E6AEDE97D079157C /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 027BBF959E6AF6CDD5006D5F /* RegisterPluginsInit.cpp */; };
+ 572C47BF142EDE0CE5670A45 /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BBB636E7C5AD8884DF982486 /* Proxy.cpp */; };
+ 572FD81423B868EBFAE651DA /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B7E8916B8CA08D3239C9525 /* CountDownLatch.cpp */; };
+ 57558E1ED8C8032A9E9BCFBD /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D4F0C5755496073BF23DAD0A /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 576B168097EE583597085246 /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = 53DCE66195BB4195791CB732 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 577767CC2958909C8F6EDF49 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9250382693A50F0E823D433C /* TestAMDI.swift */; };
+ 57842A5AAF96A608062F5400 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 57A137216C2E09F887CC7F92 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40E9F5F5F2A1FDD9AD507CFE /* Collocated.swift */; };
+ 57E432DF8868851ED5B78B7C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FFA38493C067C6B8C76B1C6 /* Client.swift */; };
+ 57FC2C26BF01957D84D46965 /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8E92C696C1AABC3601AA74B /* TestCommon.swift */; };
+ 5839B84DFB1F87901D5A9239 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 5861405D8F53CF01EA2DCDF3 /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B013B93E5986A1FCF9F78DAB /* Reference.cpp */; };
+ 5862B5B7E4D337DC6A544F18 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 5892727EA0F6A3D90AA3C882 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0EE0541C8C209BEE2760A321 /* Session.ice */; };
+ 58BF7495066E6A6B0D59B377 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C12A6CF78CB8EAC28EABE4 /* Client.swift */; };
+ 58C2C4E76D596A68AC0B853A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 58E60C9209FFC29425D08676 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E610B0E67C9B6A1DBBF172C /* Server.swift */; };
+ 58EA94ECCBEDA222FE43A552 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 357A78B6281F30D25FD5C410 /* Server.swift */; };
+ 58ED68C120A1F9A84778074C /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C124F0D45B6275831BF5F438 /* Exception.cpp */; };
+ 5943DC289DC33E8E6AC4217F /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = AC0CDB474BB450E68664654E /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 599179486C45F86DFD46A969 /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = D00B9F3E0CA080CD2B2C61F3 /* LocalObject.mm */; };
+ 59CDCD357375DE23CF650BE4 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D356FF229AB189BEC612EDB /* TestI.swift */; };
+ 59F13F46483EC8C6166DC0DC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 5A15EE11DCB5697E8252D0A5 /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B618430EB6F5FD497FB0DDB /* RouterInfo.cpp */; };
+ 5A2D8C0A283D957ACE917C19 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1FE6F0C53A155D2DE7E5858E /* TestAMD.ice */; };
+ 5A4944AEB28A1BECE9F86E82 /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 004AC667D8AC449AF8D18665 /* NetworkProxy.cpp */; };
+ 5A6BC57CF744F2701C2436CD /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F32CE35510450059D4F5F18 /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 5A9F355C9A7982F4699B7221 /* ServantLocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9800A938F2930FC734B98F4D /* ServantLocatorF.ice */; };
+ 5AD22F610A94E2C29919B924 /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A78754795E4B389E082CC44F /* ProtocolInstance.cpp */; };
+ 5B4A558C52B3EFB7C1AD2FD0 /* EndpointInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 937B8FBC13804AC35D672463 /* EndpointInfo.ice */; };
+ 5B4ABCEC0FC67FD009FBDCE5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 5B7D4B4902F49FF5BE7983DC /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8419D8D5FA660838BE1BA93 /* Client.swift */; };
+ 5BB9E7269F4EE49E65E9BE3C /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A78754795E4B389E082CC44F /* ProtocolInstance.cpp */; };
+ 5BD19A02C1ED40DED18ABDA0 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E053BDFB2F3B31DEA4FB8F3 /* Server.swift */; };
+ 5BF673A0994FD8F996065846 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 5C255F6BAB42162020A64DD2 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = B0308FF4DA8796949079382F /* Router.ice */; };
+ 5CCFF97AEE6F1EC7B5F22C78 /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D6906B8A17903ED8A46AB4F /* MetricsObserverI.cpp */; };
+ 5CFE7F452C8D8DE95B7CC331 /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3F03C459EE7E9A7A7EED2FC /* ClassResolver.swift */; };
+ 5D38B133D4F970E0F15A6E3A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 5D815B3CB0B92CB68D3CA7D6 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 5D8C5089FB505B4246D0F263 /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D679F5465C4EB73106C5AC /* ObserverHelper.cpp */; };
+ 5D965A97A2EAAA609263185F /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18D84E7BFF897CD18E15CC92 /* Service.cpp */; };
+ 5DAAEABF78959FAB6E9E0C6E /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E8A8FCD073B502C50AF409E /* ServantLocatorI.swift */; };
+ 5DC9CA59605F555D444E4F2F /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F74EBBC0FF989CCB80A6CE4F /* SystemdJournalI.cpp */; };
+ 5DCB2C763AFF10B3BBA269A3 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = F1F5B981DE4101EBCFE749D6 /* ClientPrivate.ice */; };
+ 5DD5AE98D1D447F1C8C2B1AE /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 245D2B5223975F47997BD145 /* Options.cpp */; };
+ 5DD8AF23C78B257C82F0A747 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7243D1737C0011C6B64B6542 /* InitializationData.swift */; };
+ 5DE10AB1B4254DA9B861D8C4 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07E8ADEA8F96C4739BC20F57 /* TestI.swift */; };
+ 5DF7203433135764B9B0253C /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D25EE27BA73B3DDFAD7B5E69 /* Buffer.cpp */; };
+ 5E48261D2E5D7303DF3D0FF5 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 5E614BAE5A70CDDFEAFEC778 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F11875AE312A1FB4AF6FBB97 /* Client.swift */; };
+ 5EF420F64CC50E2E86014ED1 /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = E70C9D396BD6B5A4E73C5CFF /* SliceFlags.swift */; };
+ 5FAB85BBCAD337E3A4B0DA8E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D9BD8DBDA54A6A0F7362ACB /* TestI.swift */; };
+ 5FC739B91C70E26217646A4B /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D25EE27BA73B3DDFAD7B5E69 /* Buffer.cpp */; };
+ 5FDBC78E7BE24A4F67E66139 /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6C69B957051A399B8A8D080 /* BatchRequestQueue.cpp */; };
+ 5FF7D6D88718EC6CC0AC442F /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 6015A5861DD2B6C37DB371EC /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78DBA4B685FAAB1B1B19C953 /* TestI.swift */; };
+ 6069C77DFDBCA90CCF7D3D53 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0507C0145EE5B124FE90FA6E /* Client.swift */; };
+ 6096784C94D4DFAE9BC82441 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2B8D6033EF5DBC2905586933 /* TestAMD.ice */; };
+ 609C4032A9AD08841C628C29 /* TcpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 39AAC6533C866ED8BA4C5DDA /* TcpEndpointI.cpp */; };
+ 60C5F318B4F50B545BF00945 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 61300DE60A14AAC90C03D43D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 618CEEB4D830A366DA56EE0D /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96E21902D516EFCA981AE170 /* ImplicitContextI.cpp */; };
+ 619BB4E8AC4B11BEA5F11A5F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 56047CC0A74EAE9A631A9FD3 /* Test.ice */; };
+ 619F8103F2133D88541D45DC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 61FB947D7CA91CBC0E8D6F61 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C86A7981B1918DC97BD1D67 /* Server.swift */; };
+ 620E4EBD51C34498FB218D53 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 721603641E4D852A125CCB38 /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 62374B441FE67EADCF0BF399 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F086327C7A363E6F817C7458 /* UIKit.framework */; };
+ 62BD84F0F9DCC1978F42D9BF /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 62F98F78E832E0A539746E13 /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B60F1EE25531E060808BBCB /* Proxy.swift */; };
+ 62FDC1E741BAD8A71AAD158E /* Assets.xcassets in Sources */ = {isa = PBXBuildFile; fileRef = 8B0133F3B6C49278880AF27C /* Assets.xcassets */; };
+ 6302E7A27AF4DA667B966172 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB5F5A5D2EECF428ECB79E52 /* Value.swift */; };
+ 6335A16223D5CD53587A572E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 362F347C523AD63B9BF0488E /* Test.ice */; };
+ 63552136F42214F8A746E214 /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C8C4EC7F377638ACA3789243 /* ConnectRequestHandler.cpp */; };
+ 635F9AC84CAB10D873B9E0D0 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF34296B086BFC873E4A5647 /* AllTests.swift */; };
+ 638E3CF49C78D07A579EFD2C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 63B3BB8395EED9B2D7B4610F /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7EB1201F991663DB27D5F416 /* Timer.cpp */; };
+ 640A4294B8D4BAE77A6D9AC6 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4A666841400DD55C4BC753D /* ProxyFactory.cpp */; };
+ 645383E9D3959A24076847A9 /* EndpointF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B975A8E910F85BE0F8996659 /* EndpointF.ice */; };
+ 645430F3265333C1C051F248 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9924E8D2910F8AADCD205F8 /* IceUtil.mm */; };
+ 6474EA0548B44684A80735EB /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 39AE997BF225284894A3427E /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 64B631926629B674318368B1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 64BDA7BC90C075CE05957097 /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D27803EEB8E05AA2872DC0F /* DefaultsAndOverrides.cpp */; };
+ 64E13248BAFA0305DE33B0C8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 203A89D1A926F10F7840B7F2 /* Client.swift */; };
+ 64EBCC63098C491F3AAF533C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE1A00AA2A52A007803ECA9F /* TestI.swift */; };
+ 652209819ABB9C4CD7978770 /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD045F681FB9F088DC230E0F /* SlicedData.cpp */; };
+ 6538D30D407392DB771E173C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 65410C4F1F1110B99F1BDCD5 /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73FA22C5034CE056FA112987 /* Initialize.swift */; };
+ 65508446D1088D14C03E23FD /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1DEAE5A8F941AB2CCAA16FB6 /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 65A6E835B9930E3C0920613F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 65BC8596BE1802DF1B908CA1 /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4F86EE1F0BABC73616D64E60 /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 65E85E931D20E8F2DA07AD7C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 66E9E6181A6CAC8912030E44 /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FAFBC31486E68C91E83A6419 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 66F9CE4ED80107DB2ECFEC1B /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 6703AE1F77A122AF1B8257B9 /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6C69B957051A399B8A8D080 /* BatchRequestQueue.cpp */; };
+ 673D68E5F5CC9442B5FAB566 /* ObjectAdapterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D5FF83D9BB6FCF48B42C981 /* ObjectAdapterF.ice */; };
+ 6752234078E83A4EF0888CAA /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = AB05AFC920CC27CFDC84109C /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 67703A74161828C24514929E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 67C5C7B317C4917F47BD553D /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05BCAE0ED88B21DCC5FF26A1 /* OSLogLoggerI.cpp */; };
+ 67C694D8E9C8A1C4F1B61863 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = BA71B51000572E66659A3672 /* Test.ice */; };
+ 67D687B2EB71D3D6D4D0C892 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 67EC1651434C90B177CC2FCA /* Transceiver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9D71E1E8486CEBCF31435D3D /* Transceiver.mm */; };
+ 67FD3AFE65A3775381B67787 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1BF1FBD5B99791A16DEA1E4 /* Client.swift */; };
+ 682AED950722718B3064DD66 /* EndpointI.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72D09A968DF7AEF7873FABC0 /* EndpointI.mm */; };
+ 686DEAE2BD5E750D16EBB57F /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D382963A6D341D8AB96B2F96 /* IPEndpointI.cpp */; };
+ 690721A3AF48067E335D4017 /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 20295373CA09AE8ECFCB450B /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 692F8F9491DD7AB1E86E2CAF /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A5FC09580DFEDA42502BB46 /* Collocated.swift */; };
+ 6941AD242D9F08FB1B119CCC /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8190F551078596098F1E80F /* Mutex.swift */; };
+ 695091E9DE6DBAFAB13E031C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F89A3B2AE050F821147BD7C6 /* Test.ice */; };
+ 6950CB690D5A3DE42B23D1FC /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D29625E4A3FBB59DF59537D /* CommunicatorI.cpp */; };
+ 69527319EB47F2D7726D3894 /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 761BD64C7E0974FFA525CCA9 /* ConnectionFactory.cpp */; };
+ 69661CC41236E6F96C7F9015 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8419D8D5FA660838BE1BA93 /* Client.swift */; };
+ 6969DCC9771DAE490645DB4F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 69ACC2C9F295171C4F082ACC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1F77E560368761492402EA3 /* Server.swift */; };
+ 69B651B94D3C619E3C4087FF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D2A24C74B1457BADF42EA04 /* Test.ice */; };
+ 69CAE9A9007AE6B11FA1EC7A /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FC478C09D46B520AC09D1D24 /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 69EE03C3712C495DFEB1884E /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = F144B676048547B79F621AA4 /* BlobjectFacade.mm */; };
+ 6A3B3FD8D40723739F8DB1E4 /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = AD3BF9C9F8D9D3658927A2D1 /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 6A470D697D1509775528E78D /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD068D7CC10CB319EE39A71B /* CommunicatorI.swift */; };
+ 6A543B9EADBA1048D8A806C0 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E48639D847EEF9B191A6B2A /* Time.cpp */; };
+ 6A7E0EA07FB18510CDEFE0BC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 357A78B6281F30D25FD5C410 /* Server.swift */; };
+ 6ADE2906868F6684BF6B66B6 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 16717ECD10710B6A0018D2C2 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 6ADED609C4BEB4C1A8B191E1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FC76B1B464A5AC2A20554FF /* Client.swift */; };
+ 6B1A449E80D6B2D2B9640CF4 /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEE9D1AB70849A09A9122342 /* CollocatedRequestHandler.cpp */; };
+ 6B27A917D1469D1A17AFE37D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 6B2CA676803560CE6F6F2C31 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 6B2CFF1A57377123314F89BE /* Instrumentation.ice in Sources */ = {isa = PBXBuildFile; fileRef = FF801C186E03BB2EBD80CC72 /* Instrumentation.ice */; };
+ 6B43B2CE330DBBD7BC1C5C35 /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20D7939D93CC5A16B157838A /* SysLoggerI.cpp */; };
+ 6B45093D0D10BDD84E6AC2FC /* EndpointF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B975A8E910F85BE0F8996659 /* EndpointF.ice */; };
+ 6B879EDB6E92228FBE4E50AF /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BED0B487712EEE03615C9CB3 /* MetricsAdminI.cpp */; };
+ 6BCB57E5C77E56DC6E5BBE00 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = D8026643E397138CD24E9782 /* RemoteLogger.ice */; };
+ 6C3AC5238A088B7C7039E0F0 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B464045D3DD080BA5784472 /* ServerAMD.swift */; };
+ 6CD649AB333F62B20F794A43 /* ObjectAdapter.ice in Sources */ = {isa = PBXBuildFile; fileRef = 431FCA1AB962B80BF654B3D0 /* ObjectAdapter.ice */; };
+ 6CE82C864C58B277EE398920 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 6CF0A18AF72912B5222E2062 /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47A28B22A642C985FFB853F7 /* WSEndpoint.cpp */; };
+ 6CF4F10B5262B98BBD6694BE /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27C783DC4191F70386A77532 /* ValueFactoryManagerI.cpp */; };
+ 6CFD68F1A26B123189049FF2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 6D47F4887F1129D6E8F73821 /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E71EF8B4A3A71C72A15134D /* Object.swift */; };
+ 6E22C74FCC179F212EBB7BAD /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89BA4D129F7AB13FE8AA4252 /* AllTests.swift */; };
+ 6E75309F493643C261A22581 /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = D0EAC955BB7F720093F87E7A /* Registry.ice */; };
+ 6E91D8824FD9F9DDFCF76776 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A56A987814C21FAD838ED42 /* AllTests.swift */; };
+ 6EB5BCCEE55B0D9A89E6916A /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CB1B6AE8F6FB8CFC0AC003A /* Twoways.swift */; };
+ 6F2B04B44AA47B97D877A59E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D9BD8DBDA54A6A0F7362ACB /* TestI.swift */; };
+ 6F2BBF7BF9F27497FB343E40 /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A8216F3431AAC7A8C47ED17 /* EndpointFactoryManager.cpp */; };
+ 6F3B2043FD79B1B0ACBD7834 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC018AED0F8FB003F4ED0C8D /* TestI.swift */; };
+ 6F45C60B7E11A7A260F3B13F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A9BF1272CFE825F7F2D6814 /* Server.swift */; };
+ 6F78891AB156A0B9161E18B5 /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 31B36589E40A384AAC70F89D /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 6FA46AEF50692259F8D76E3D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F675DF8EACB868514B6517F7 /* Client.swift */; };
+ 700666A4FB5F16B1DCDF1B93 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 700DE4CC1164FFB624928C2A /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4F0EB416BFF519262CA6FC91 /* TestAMD.ice */; };
+ 7042388A0D63FE6DCDA9F654 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34FBA26DDA9D52224A61F465 /* SHA1.cpp */; };
+ 704DB6DA69DFD8B33289F6B8 /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB081EA6CBA368AB96ED96D6 /* ServantManager.cpp */; };
+ 705B5C36A641AD3091706603 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1A704CC39E0EF86372BDEA3 /* TestAMDI.swift */; };
+ 70867C5450375E0BE1850AC8 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = B38BE3223AAFBAAF857AD5E2 /* ServerAMD.swift */; };
+ 71117AF155C0293DB4069859 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2C37F4117B16BB71AFE86813 /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 714D6187BA070DEE2A9F1A71 /* Connection.ice in Sources */ = {isa = PBXBuildFile; fileRef = A06AC0921E10B63A1656AD61 /* Connection.ice */; };
+ 716FED1E88AE328327849679 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E65331EA85E12D5A4D23BD29 /* AllTests.swift */; };
+ 71905FFF7C869688158877E2 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF321DBB41A7E378EDBDE46 /* UdpTransceiver.cpp */; };
+ 71B7109F38529DE57F3241A7 /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B7E8916B8CA08D3239C9525 /* CountDownLatch.cpp */; };
+ 71C0801013A862CB1B1BD943 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 721206C95F32C30F5C043996 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 724C3E75622F70FAE853E5A2 /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = CE7C6CFA731F5E0FC26F9554 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 7253C04372698D0080377BF7 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ 72918FB9A2FDBEC193A473CE /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D90E5E4A4506E4827832F9B8 /* Value.cpp */; };
+ 72ADFE352D0DD1618F353E5A /* CommunicatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC58856E78104FC6C0F9AA28 /* CommunicatorF.ice */; };
+ 72C9771640D35CF79699CC62 /* StreamTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C4F16CE0E18FAE1B868EF7D /* StreamTransceiver.cpp */; };
+ 72CAEA4C6158B01DEF413AAF /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B4460C0949A3B6196C42F8 /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 7324400D4F1546E4BE78ADF0 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 563D36E1F39068302C64D483 /* Client.swift */; };
+ 73584B84812112DB0F418340 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 623A2AA62A0FA760224602DF /* EndpointTypes.ice */; };
+ 7361EA2651186F6A3B7B87C8 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 004F49EECEC5EF0532144014 /* Collocated.swift */; };
+ 73F2F2F33A9CA4AEC60A386B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85BF585817ADA33A51374E3 /* TestI.swift */; };
+ 73FA8B398036B33D70B9A004 /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4C9E5195C48351C3DD02282F /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 740AEBBEBFB9AA5518773374 /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = CA2C76263E9404BC0A0DBE5A /* PropertiesAdmin.mm */; };
+ 74476E76703C5CDED20055B1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 744ED666955C21AFEEACDF05 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE3C76073BBDB3D3E0B943F0 /* AllTests.swift */; };
+ 748DA51801052238EEBDA100 /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 2154E21B0223CFA07D47B8CE /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 74B9BF506F65D81C97AA258C /* ProcessF.ice in Sources */ = {isa = PBXBuildFile; fileRef = C35F0E57B69EDEFC5E944EBC /* ProcessF.ice */; };
+ 7513860F5F55F0AAC4F8869E /* ValueFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = 57017F902B7686C7579A7648 /* ValueFactory.ice */; };
+ 7530457B822F2DECE6DC1250 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A2EE54802BFD472CDFC02692 /* IceImpl.framework */; };
+ 7530F05BFD642DF2CE496BF0 /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = AC1D8A33F8AB3689E7733586 /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 7564E02EE6494E646EB7F9C9 /* EndpointF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B975A8E910F85BE0F8996659 /* EndpointF.ice */; };
+ 75AFA50B8481CDA832CC2E4B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 75D2708A325F45B6F6B4ACDA /* PropertiesF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 865CA76FA57E281F305229A8 /* PropertiesF.ice */; };
+ 75DC9AE71EA61365D26B5CA6 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2BFD0993886CBEB26A9EBCC /* ConnectionI.swift */; };
+ 7604B46282CCD74DB218CF63 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9924E8D2910F8AADCD205F8 /* IceUtil.mm */; };
+ 7624A5FECBD92573B0B30044 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1A704CC39E0EF86372BDEA3 /* TestAMDI.swift */; };
+ 764892301898E814A68171AD /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF0F61C0C43F357F80205B2F /* PluginManagerI.cpp */; };
+ 764F24CE142AA2BC3B29E947 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3503F3A5CCF7376BD4A00DB2 /* ObjectAdapterFactory.cpp */; };
+ 76F756EAA6CA5EEF772D9E52 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 77098DD2B819DC12C04C8537 /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A32F5A7C35C65FA0E2A9F32 /* ObjectAdapterI.swift */; };
+ 770A97F3C04925FC05E5C765 /* FacetMap.ice in Sources */ = {isa = PBXBuildFile; fileRef = F846257F8F86D75E994D2BA5 /* FacetMap.ice */; };
+ 771027545324F259855AD4FB /* ObjectFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5A5BCF69097F9B6FD153B8FE /* ObjectFactory.ice */; };
+ 7713E360EFA9099B22576090 /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = 254298ADB9C25668AB610F92 /* Exception.ice */; };
+ 777835659B5C416AF639C591 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E8A8FCD073B502C50AF409E /* ServantLocatorI.swift */; };
+ 77E498EE85822E39876FAACC /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2B163B4B0AA8D481BC0CE1 /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; };
+ 77E837AB50496D0B227DAC6B /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = 515A9CC5CE995B281FBCA597 /* Descriptor.ice */; };
+ 77E8D94175AABF5E31CE8056 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C13F2A57B3D5B43F865E99D /* TestI.swift */; };
+ 77EDD50F6EF8B275BB62C8C2 /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 351BCBF951501569DADF145C /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 7828D5D16E267FD469A78735 /* PluginFacade.ice in Sources */ = {isa = PBXBuildFile; fileRef = 200A8DF5882EB835681B33B6 /* PluginFacade.ice */; };
+ 797D8ADFAE19C19AA0D1C464 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 7995D0B8E1BDB63E088D9977 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7BCCF602D0FF8D22B9680CF8 /* Test.ice */; };
+ 79D43D82945EBBAF9ED423DB /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8439526B8DE74644F28A6D70 /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 7A0620C42DC70A16056AA38A /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92FA3E6D5ACCF4B1CF0C3378 /* EndpointI.swift */; };
+ 7A35D7128F800A6A51E29FFE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 7A3C2DF1754949E527A2C1F3 /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FD01E8AD2B0DFDB800C76AF /* Blobject.swift */; };
+ 7A3C6349D41D359C4EFF332B /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 7A5316308BE7191ED737CF0C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 7A742071A1FBC13A72E897D3 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 7A9A94471F465147DDE788FA /* ConnectionInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4CE1EEF3C86CED79525EE458 /* ConnectionInfo.ice */; };
+ 7AD2E0A31868B4F1E8C000A2 /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = 444C81F85FACB1A5BC7AE4E1 /* Properties.mm */; };
+ 7ADACDB4B2826DC2495E157F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29E2F3A5B3FF4733FE29B372 /* TestI.swift */; };
+ 7ADBCFC3540AF088507A380C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 7B5D6B4FE1EECD5A8E7E0421 /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73CC62886A3D56E023683BB9 /* AcceptorI.cpp */; };
+ 7B7B51E8976DE0B191C37C24 /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADDAA7048CCBFB5590515DF1 /* ReferenceFactory.cpp */; };
+ 7BEE72C6F2CA07713045B036 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 7C0542C1AEBBA9BD5BB2BF25 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 7C179C5533175C065A951935 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 7C634A21971EA48F10C178A0 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A47F58C4E3CE1C13C54A09A /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 7C7F9E48C0125E085C033E68 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12065C41856FEC7169ECD5A0 /* AllTests.swift */; };
+ 7C807497E39359A2E9A2E730 /* ImplicitContext.ice in Sources */ = {isa = PBXBuildFile; fileRef = 735AEA3176650E2CB5CF4402 /* ImplicitContext.ice */; };
+ 7CFD6334D7BC3AED5910E2D8 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 7D1149AA62BCBAE0D1C1370B /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B013B93E5986A1FCF9F78DAB /* Reference.cpp */; };
+ 7D65ED1DAA17C147F57214D6 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5A9831CFF2692F9637C5810 /* AllTests.swift */; };
+ 7DB3369066EB2FD41D6E84E4 /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FE689398E99ABF73ED63012C /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 7E00BD9146A69ADE1F0E0415 /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E7D203B0DE479B10FBE0E54 /* SecureTransportTransceiverI.cpp */; };
+ 7E27D91467D4863FB0478B46 /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D50984E810079607F9CBD3D6 /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 7E40295E78DD86F404F344CB /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89138A69A6071FF550471EA2 /* PluginI.cpp */; };
+ 7E6FB51C3D06235CCA840BB5 /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ADDAA7048CCBFB5590515DF1 /* ReferenceFactory.cpp */; };
+ 7E79E1EE164662EA4D28584A /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 34C3773FF720DB41BE3543B0 /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 7F5E97B904B61593783C370D /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AF8C993815CB0043CA4E4B4 /* ServerAMD.swift */; };
+ 7F704DF81C780E51B4A7BCA5 /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DBB159780C224B99CDFB5E11 /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 7FD15399C522C496AC5E32CD /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3EE0E3DBF68592091E1CFFFB /* Test.ice */; };
+ 7FF47F6D5449052C2A0D2625 /* Instrumentation.ice in Sources */ = {isa = PBXBuildFile; fileRef = FF801C186E03BB2EBD80CC72 /* Instrumentation.ice */; };
+ 7FF6F31A60A303A77944FEC8 /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27C783DC4191F70386A77532 /* ValueFactoryManagerI.cpp */; };
+ 804890FB56854D440D0B54FC /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6E486D7CED1187CCB73012C /* FactoryTableInit.cpp */; };
+ 805B9A953E4F2201A6CB825E /* Communicator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 326D898FED70991AC1BA0347 /* Communicator.ice */; };
+ 8067185E30DBC472250AB10C /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20D7939D93CC5A16B157838A /* SysLoggerI.cpp */; };
+ 806C749DC081459438AE7721 /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7B7A13B6C4176A137464A3C /* SliceInfo.swift */; };
+ 807C1D0CAE00895DCBC94303 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F675DF8EACB868514B6517F7 /* Client.swift */; };
+ 80B4BC71802264C687D9D4A4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 80C1E88C5B1540EA539D608C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 203A89D1A926F10F7840B7F2 /* Client.swift */; };
+ 80C42EE7E3B7572F9DBCEE5F /* PluginF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 059160A9429AADF7083C704C /* PluginF.ice */; };
+ 811442364B2A03F799BC4DB5 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 907A6D6CFC6A86E3A26C6F8E /* ThreadException.cpp */; };
+ 8144046869C12C6E9BCB5BC3 /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B15656C95570248A5598ADE /* Selector.cpp */; };
+ 816EEF5F837EFAF6F22860E4 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 05FFDAA0F31D253BA2E31F6E /* Session.ice */; };
+ 8198351C4DF486D64B5C7E66 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 819B5901DB4E3CFDD2B9C343 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49BFD82EDC5961557B3C081D /* AllTests.swift */; };
+ 81A3A2E3386B643258AFE2E8 /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22138CAA2F575EA5E4376E27 /* MutexProtocol.cpp */; };
+ 81AE2D8AE606245FB5723F60 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA2734A6625328B15E08346A /* Object.cpp */; };
+ 81C30B4678CD456B481230DB /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA2205E172336BB60147423 /* CtrlCHandler.cpp */; };
+ 821C5EDD275B32D5F56C0586 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A634FA66859D5F3AE6E6123 /* Server.swift */; };
+ 82296F1FE8D6CC7C74DFC561 /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A8216F3431AAC7A8C47ED17 /* EndpointFactoryManager.cpp */; };
+ 823000CF1B59EEE49E6B5D54 /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E371D78131705C17C63946A8 /* EndpointFactory.cpp */; };
+ 82383017C9960879FEBD594D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAE2B9B108DC7C8C6DF480AC /* Client.swift */; };
+ 82910A79F1F8A522A8FA8A19 /* ProcessF.ice in Sources */ = {isa = PBXBuildFile; fileRef = C35F0E57B69EDEFC5E944EBC /* ProcessF.ice */; };
+ 8297502A78B247BBE4DBA6A9 /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B240838C3B7EC5098985F9A /* WSConnector.cpp */; };
+ 82C6A3FB169AACDACF4F7B87 /* PluginF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 059160A9429AADF7083C704C /* PluginF.ice */; };
+ 82D152396ABCFB797FC8088F /* SliceChecksums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDFA593815E37A8E3222D63E /* SliceChecksums.cpp */; };
+ 83542F5C0006AA10DEECA43F /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 450AD776C8151E42914041A8 /* RouterF.ice */; };
+ 8366C667CA0C68F21BBE67BC /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8C1E877ACC0DA38CB700CA31 /* TestAMD.ice */; };
+ 839B56DE7B4182BF0AD32EF1 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 83ADE2EF029A457A440D043B /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99AF1143034F0C3447D52DC6 /* OutputStream.swift */; };
+ 844DE08FE4B28A8FB37C760A /* SliceChecksumDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = C784636985C065D20545F5BE /* SliceChecksumDict.ice */; };
+ 8474A2C5AB5774475C3AD559 /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BE6BACEC2F33E91F4B617FB /* Transceiver.cpp */; };
+ 84A6A3703564A713960A8776 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10FBC76F9EB72AA7D657AD6A /* Client.swift */; };
+ 84A7D6632D970C65E0985C67 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 84AAAE00AC101843740F5A38 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 84F2355D157144E986314A8E /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 626EED2E2153D0A9AE63108D /* libIceLocatorDiscovery C++11 iOS.a */; };
+ 85037E37BB10401FD59A7CE0 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 8536A53841A351F2018D14C0 /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = F9FDFD9567E3EB23F567B412 /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 85480C31473C41E090D2FACE /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 854CAB7BC57F3E8872A0C65D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 08B0ED970FB5747320CDA718 /* Test.ice */; };
+ 85BB29E82DAA4D4B7EF2AF0B /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA49A1EA8A8746AE458F2C18 /* OpaqueEndpointI.cpp */; };
+ 85CA51D8C1D8F17CBD749B4D /* ConnectionInfoF.ice in Sources */ = {isa = PBXBuildFile; fileRef = E97D033BADA38AF9402AA464 /* ConnectionInfoF.ice */; };
+ 8606F544E60334866883DCC0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 860AE631154169A0CCD0B587 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FC4531AA749DAF419FE26EB /* Server.swift */; };
+ 860BC393C23A21E5F81EEF6C /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 944277575906253E2D264529 /* PropertyNames.cpp */; };
+ 860CD7F063D8E620EA0F581C /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 08464B1715A37D17F3E14399 /* Communicator.mm */; };
+ 861B4E988B264BDDEACD0197 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 86590AB56B7086634F54B5DD /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDFDD649342AB148C5437BA5 /* RequestHandlerFactory.cpp */; };
+ 8668AB6E822A260743D5B76F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 86DE5816B435604AEEC35A4B /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 003B81E404BD951D35B23A9C /* Connection.mm */; };
+ 86E4953378C65D9DDB2BCB69 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 86F738F09C35608193CC4FDB /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = EDB3662F7248B27CB1AD4BAC /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 871A1697B33991DEA2D9196E /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = B38BE3223AAFBAAF857AD5E2 /* ServerAMD.swift */; };
+ 871E57606F7704B4F1934CE5 /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81D735D9C5633A99111B3FBA /* ConnectionInfoFactory.swift */; };
+ 87224233426B84A451F6F741 /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4AD13CA61E0593B0D0D02A9F /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 8764260649DDA5B9654A3A8A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 8796DCEA739485334EED3D8C /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC5D768A10737D6ECBD5090F /* Process.mm */; };
+ 8797ACBD899C118D6CCEE58B /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D88018174B46A41D0B540A95 /* Collocated.swift */; };
+ 88096BE9B15DE6B775B1CD94 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 88254C19085F944414517755 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 214166CE121F3A29265D1D8C /* Collocated.swift */; };
+ 8838F45E152A7EC4C24218CC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 886164D25F1CF9E11B755BF8 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 50829B5C8135F4031CD1EA4D /* TestAMD.ice */; };
+ 886A7A60C3D875BF2A90CC12 /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = 254298ADB9C25668AB610F92 /* Exception.ice */; };
+ 888466870B3D5D25EFD49A07 /* ImplicitContext.ice in Sources */ = {isa = PBXBuildFile; fileRef = 735AEA3176650E2CB5CF4402 /* ImplicitContext.ice */; };
+ 88C63EB300C205DF24E698E8 /* EndpointF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B975A8E910F85BE0F8996659 /* EndpointF.ice */; };
+ 88E2BE244314F8318A2583AF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DE17DA74939585D5DAC3CD1 /* AllTests.swift */; };
+ 895023325AC8A3144052626A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8848EFBB95F9D6D77B56302A /* Client.swift */; };
+ 8965F1CEECB5538012DF20DC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 8993F97AC021C6645ACF9ADD /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54A1937AF2CAB630AF745D24 /* Thread.cpp */; };
+ 89A368D0D3AE4B3DBCD9D643 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 89C4C5C3AEC88522570B3673 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AF8C993815CB0043CA4E4B4 /* ServerAMD.swift */; };
+ 89D0E57AE2640962123DF688 /* Connection.ice in Sources */ = {isa = PBXBuildFile; fileRef = A06AC0921E10B63A1656AD61 /* Connection.ice */; };
+ 89EAF01558BFC517ECED5CFD /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 8A18CD852FA002B4E62CC507 /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7B7A13B6C4176A137464A3C /* SliceInfo.swift */; };
+ 8A26ACB9B208D4C6DE1DFAFD /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 8A31F7ADBF4F4B99BE50A5E4 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A47F58C4E3CE1C13C54A09A /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 8A46B0541EF140FA9CEB9668 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 8A728A77495BC7E2CD180BD6 /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD068D7CC10CB319EE39A71B /* CommunicatorI.swift */; };
+ 8A7807B001A0F498952732F2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 8A982D4907ADA1B918838037 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C6088D6E4F2A47AADB35EB03 /* Test.ice */; };
+ 8ABD817A05237BABF7387CD4 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = 46CCEC5938A075D12D2F812A /* UserAccountMapper.ice */; };
+ 8B8CDF32D4FEC5ABC530B372 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17212BB3CB370C143D6A746A /* Server.swift */; };
+ 8B9644A124433CF99603FFA2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 8C17631FB62027FFCDB1D4A0 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 8C77455E001F37BD45AD98EE /* Plugin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1C3E9C2120573ABEE7328084 /* Plugin.ice */; };
+ 8C80DB0C064572E763CE81B4 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = C3591A40745461F368CBC77B /* TestAMD.ice */; };
+ 8C9B8B42F24295FA590FD194 /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4865B3158D38CF0F111335D1 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 8CAB0B821764CE7815D3B5D7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 8CC9482ECADEE6EDD92F0D47 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 88362A8D0FC487784FB0A1F1 /* LocatorF.ice */; };
+ 8D05172680DF6C9F03A21856 /* PropertiesF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 865CA76FA57E281F305229A8 /* PropertiesF.ice */; };
+ 8D458FCEC59B6D372E7ADEF1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F11875AE312A1FB4AF6FBB97 /* Client.swift */; };
+ 8DA1AE3B1AF3DEAA1E6BF1D7 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DEAE5A8F941AB2CCAA16FB6 /* IceGrid.framework */; };
+ 8DB3BA0C6692E415D91B3455 /* InstrumentationF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 316AF622F0283CDC19C52E76 /* InstrumentationF.ice */; };
+ 8DC067815BCE3A683D98511D /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7FFF7F457B44AF10B294A53 /* StringUtil.cpp */; };
+ 8DD2216D7B9D7E854B102074 /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69751EFFF0F18C7B5657D7F9 /* SecureTransportUtil.cpp */; };
+ 8E00D422E8B506EA765E7550 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 203606D7DC16FEAAC9468535 /* TestAMDI.swift */; };
+ 8E2985EB39F5B00B3AEA3962 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 8EC344A3B9294C3C6A8E8DA5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9499FF08DB66C34FD2896B23 /* Test.ice */; };
+ 8EDEF6EE2F771B71A191A6EE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 8EDFE390C976F7130E06B0B2 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 8F2BEA66E0BB783F825AF971 /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = E8C1AE8D395B3456440C1E9A /* PermissionsVerifier.ice */; };
+ 8F2CF4A9A8BA0CA9D96295F5 /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = CA2C76263E9404BC0A0DBE5A /* PropertiesAdmin.mm */; };
+ 8F72EE84B99A59A880CF5E68 /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C7F15D84385C6FFC6EADD1FA /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 8F766BFE82FA086DF9C859ED /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E4DA6E69B6D870D4106D05D /* ServerAMD.swift */; };
+ 8FEF0E2B30301C6E07917CAF /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8223AEBF7050FD7541E96A1 /* PluginI.cpp */; };
+ 8FFE205C24EF896369109535 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A17A6842456B978F70B5DFDD /* Client.swift */; };
+ 902E1BB2B659564E9A23152C /* SliceChecksums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDFA593815E37A8E3222D63E /* SliceChecksums.cpp */; };
+ 903BED45E35CB747537258C8 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3211C9FB66D58C1BDB91C18 /* Network.cpp */; };
+ 90778C6C17F29D68671DF2BA /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47A28B22A642C985FFB853F7 /* WSEndpoint.cpp */; };
+ 90D27EB960C1DFF768C002E0 /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D6AD5F74CE6D55E945CE35 /* SlicedData.swift */; };
+ 90DE214D889583307D941AD4 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E4DA6E69B6D870D4106D05D /* ServerAMD.swift */; };
+ 911786EDCB8CEF1CEA3DDF44 /* Logger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 127FA99F1F575E391D24A800 /* Logger.ice */; };
+ 9137F156ACDA225028A272F2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C6088D6E4F2A47AADB35EB03 /* Test.ice */; };
+ 919956B1E525529FC2FB089B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F9764228A3316695D773B795 /* AllTests.swift */; };
+ 9288123451FE48CDD5B8A16A /* ServantLocator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2AC0FE6725FBB1C2DC5A9E78 /* ServantLocator.ice */; };
+ 937E957B1C09AC92F9253F7C /* Main.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = 9B8260A1145A7235704C5A06 /* Main.storyboard */; };
+ 93A38E1EA4D82D75B267B4C4 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A57B9BCC5EACD4DB42F66B0F /* Test.ice */; };
+ 93ED19C780F2C37463384441 /* ImplicitContext.ice in Sources */ = {isa = PBXBuildFile; fileRef = 735AEA3176650E2CB5CF4402 /* ImplicitContext.ice */; };
+ 941A65E50AA772218BAAA79F /* ImplicitContext.ice in Sources */ = {isa = PBXBuildFile; fileRef = 735AEA3176650E2CB5CF4402 /* ImplicitContext.ice */; };
+ 9445CD0CBA20C5C2BE8D0DF1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 944EE11253C663ADEE64DD34 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 946F99DAAF40FBBE0BD3203C /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9C4BD7AD24E3017193C86F9 /* TraceLevels.cpp */; };
+ 947755EFEBEC7C231A3563EB /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC018AED0F8FB003F4ED0C8D /* TestI.swift */; };
+ 948A5BBFD9D2722BB9A49607 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6DB5FF43E9B340D7029297A /* UUID.cpp */; };
+ 949BBA693EA2D2E4350D0101 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 94AE9DD35483CF6E9F9D9D8E /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 88362A8D0FC487784FB0A1F1 /* LocatorF.ice */; };
+ 94D00DE6CB1282E3B91AD4BF /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86BA8129D624FC5C654DA4FA /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 94F9A331059962EA153D589F /* EndpointInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 937B8FBC13804AC35D672463 /* EndpointInfo.ice */; };
+ 9528E869895EBA8B055E257B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82F61D86E1F20952E8C3841A /* TestI.swift */; };
+ 9556986840E2270D54457131 /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DF6DB4595BEADE88D4B8FF06 /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 956DF86A252C35B3FF152265 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F1FF86C20DD375A84E790A7D /* Test.ice */; };
+ 957945F2BD6B289CFD9DDB03 /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = 91CCAA379CAE47D548C1D784 /* IceStorm.ice */; };
+ 95C4A576E384D54C6DC119D4 /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E906A6A3B1927465B53AA27 /* OutputStream.cpp */; };
+ 95D0676EB99CE7F09A820593 /* ServantLocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9800A938F2930FC734B98F4D /* ServantLocatorF.ice */; };
+ 962724BD36E3EF0BDAC72D52 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0640D54D342A86B7F3F05698 /* TestAMDI.swift */; };
+ 9636A15DE28B609FD95609A3 /* ImplicitContextF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 69E0E1E31F168819C07BBCE7 /* ImplicitContextF.ice */; };
+ 96402716757CA9126D8EDA6D /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E053BDFB2F3B31DEA4FB8F3 /* Server.swift */; };
+ 96775E6FF821E7A8AA3CDD98 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 9699C3B9510A97258E2D22D3 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 876C5922AE9C9B31BC47A8D4 /* Metrics.ice */; };
+ 96B5610DD813820C5F66A0A9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 56047CC0A74EAE9A631A9FD3 /* Test.ice */; };
+ 96C11D6C9945CCD0CE4B8B87 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAB3EA4F291781F0F7B6F024 /* TestI.swift */; };
+ 96FE40E2A4D00BEF539E978F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 976FAD84FDB97B073B1660C6 /* ServantLocator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2AC0FE6725FBB1C2DC5A9E78 /* ServantLocator.ice */; };
+ 97C7E763630E745DF166E54C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F04CA1BA60A991B7A79D8D2 /* TestI.swift */; };
+ 97D676CFBC59FFF8BBE04E2A /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8E92C696C1AABC3601AA74B /* TestCommon.swift */; };
+ 97ED933E639C567035FBCDA9 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 980C3D18A9CE2E2C625610B9 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 9850B7626ED4A39EAAD248A4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 986BAE0A7CF7E26336DA9C0B /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A1C67939300D984A3E2AD68 /* RetryQueue.cpp */; };
+ 98813F0F8E241B70E39750B5 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7CD8FF49C945CAB4E0CDBAC9 /* UdpConnector.cpp */; };
+ 98E688D280B8C581245D6878 /* Communicator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 326D898FED70991AC1BA0347 /* Communicator.ice */; };
+ 98EF727853C9C8A484929B85 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 98FF548C233445D874C20ACA /* CommunicatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC58856E78104FC6C0F9AA28 /* CommunicatorF.ice */; };
+ 9925212E2718A527FEFA03E4 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 992770A76014224790280714 /* ConnectionInfoF.ice in Sources */ = {isa = PBXBuildFile; fileRef = E97D033BADA38AF9402AA464 /* ConnectionInfoF.ice */; };
+ 99342699EED66971EADE13A1 /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F9A362F07BFA44C1967BB23 /* WSTransceiver.cpp */; };
+ 99AC3F448CA3D0D47A2A7FDC /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4F9862A9DB389084AA3F18B9 /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 99B52AD8A8778DB5BFDCA722 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 99BF63EC36771144FC0612F7 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A2EE54802BFD472CDFC02692 /* IceImpl.framework */; };
+ 99F1E94DBE7B220C11D5CF89 /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A800F7CE4B2357D7E55B5782 /* UtilException.cpp */; };
+ 99FE8C3F1553A1A68EFBCF71 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2876A819259365ACA41C9819 /* Server.swift */; };
+ 9A0FF5036E8B2EB2013B91E8 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = B0308FF4DA8796949079382F /* Router.ice */; };
+ 9A6B649027DF50DA4BECBC84 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ 9A703CA75B4BACF62C86997C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 9AA2D40EAAB4E095BE6C1EA9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = BA71B51000572E66659A3672 /* Test.ice */; };
+ 9AAD20AF35BAE97C6F8BFD85 /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 571F60FE3865604E45D3EB20 /* SecureTransportPluginI.cpp */; };
+ 9B2AB31B981D0EA2024F8172 /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = A01748959A0B2A24EE79D617 /* Logger.mm */; };
+ 9B2DE15DCD2AA56C519CA6CF /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEDCB1E205F0A6AD13A75CB1 /* LoggerI.cpp */; };
+ 9B416309253292A3B114B64A /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 2154E21B0223CFA07D47B8CE /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 9B622555EB1A277358B7643C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E9468F3EC40357BB0554ABEA /* Test.ice */; };
+ 9B869B5A493BB93882B36FCD /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ 9C049044243DE880ACC4EBF0 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB0075088BD497CEE1D89780 /* Client.swift */; };
+ 9C067B0A21E3FC32BA344B8A /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = DB620946367523497675CCEE /* ServerPrivateAMD.ice */; };
+ 9C45017938E10C0A5A63F403 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A332D585A37435EE78C912CF /* Client.swift */; };
+ 9CB5CA3D0E8A820D1FBD810E /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6E486D7CED1187CCB73012C /* FactoryTableInit.cpp */; };
+ 9D1AA2882E5A5B84C160D3E0 /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = 53DCE66195BB4195791CB732 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 9D1E6C43DE61F075106E5539 /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2CFEA89611CEACA1F95612F1 /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 9D60F8BFD4D37E893F9C8EF3 /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F535FC2464D55C8896B679A /* Incoming.cpp */; };
+ 9D6A8FA1D3B3618E20CA041D /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6981AC9F0A8894E8A40D6C55 /* Server.swift */; };
+ 9D7ACD4DF1A74C495F5C4B3F /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B4460C0949A3B6196C42F8 /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ 9DBCB4B6198A7D10363FBCF3 /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 47887C1FB9AA3D7D7B8F5B5B /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ 9DCD9B25E5DACF4539B26D61 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ 9DDF913FC286874A735B8942 /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF246750FE16FD27AB1B9E1B /* UnknownSlicedValue.swift */; };
+ 9E00491F273FBEF44D9470C5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ 9E1B55EED9CC6F4F3987E3FF /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ 9E28E765AE8D7246F1FFC92D /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F24C5A3A5C571B012806F8C5 /* Connector.cpp */; };
+ 9EE950A40A8E78B0CA673975 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ 9F590D437A6841F2A9A0F3A9 /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7EB1201F991663DB27D5F416 /* Timer.cpp */; };
+ 9FAF15D9B3BAF0A93C4AF2B0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ 9FE7917D74AD5C3C56AACF77 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = CFCCC973BBC234DD5D28BE34 /* Test.ice */; };
+ 9FF16A57C13FC80987E5B652 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = CFCCC973BBC234DD5D28BE34 /* Test.ice */; };
+ A04853275CDA3D35CFA76A98 /* Plugin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1C3E9C2120573ABEE7328084 /* Plugin.ice */; };
+ A0A7D04435C10AA7AD071DDF /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ A0CD0E199843D2FCB706E370 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0C6CA87763EF92E236588FBA /* Glacier2.framework */; };
+ A105BE0B87C4BE879170AD53 /* LocalException.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2571F704974BBB39DF54E196 /* LocalException.ice */; };
+ A163C5D4F853EBBC69BD50EA /* InstrumentationF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 316AF622F0283CDC19C52E76 /* InstrumentationF.ice */; };
+ A171499580C50B91218AB70D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ A18C33D5C6C0314E7341933E /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12D74FE4EA7C6A660AF74591 /* PropertiesAdminI.swift */; };
+ A1E58F2270FD9314F226FD56 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ A20D1EFDEE466A4590BC2636 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A4851EF0D876EA33F2F0806 /* TestI.swift */; };
+ A256A9BFBF23811FF0FD291C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4209DB74FE392398BBBAA7AB /* Client.swift */; };
+ A29A521AE5E59D702C1280B3 /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99AF1143034F0C3447D52DC6 /* OutputStream.swift */; };
+ A2C7AF31D179F480AB581FE6 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6EBCEFAB4C8715E3794AFD71 /* TestAMD.ice */; };
+ A3187DA4A161BF9FA44C1C11 /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 490ABC45AAAADE449F8F7C01 /* FormatType.swift */; };
+ A3240D8F07E7E1B5C89912D6 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 481882F90E5A74D3D85F8CED /* Test.ice */; };
+ A34C3E25AD9AF126C8E2B034 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 799C490953D145B679F8D1A3 /* AllTests.swift */; };
+ A3EF40AD01679057E17C16C1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ A45B2A0C3B0B4F1E5A27A78F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ A4AAED45962C3AAFCE6B54D4 /* PermissionsVerifierF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3B4606981283ED921B421816 /* PermissionsVerifierF.ice */; };
+ A5890D61C17B0F63DE55793C /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F535FC2464D55C8896B679A /* Incoming.cpp */; };
+ A5B898C7B75604EE72FD4288 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C0AFBDD1EC10EBBC33B68 /* TestI.swift */; };
+ A5CBB4780F3558A0B6EC7895 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ A62FB14033B42FEF22033042 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ A696FC25D355264FCF1FADF1 /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81D735D9C5633A99111B3FBA /* ConnectionInfoFactory.swift */; };
+ A6ADD0E88DBB2157BDDAB5A1 /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = 444C81F85FACB1A5BC7AE4E1 /* Properties.mm */; };
+ A6C6C222D9DDC71F67F7DF03 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E89A23CFF389FE40C9557340 /* Collocated.swift */; };
+ A6CF04800374CDF921A63E99 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDB4DD346430D46FA6ECB82A /* ThreadPool.cpp */; };
+ A6FD1AA751AD4B1C01B5D868 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ A725392D944D30664F720B5E /* ObjectAdapterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D5FF83D9BB6FCF48B42C981 /* ObjectAdapterF.ice */; };
+ A73B4D40FC9073F27DBE5104 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE8272DC832BA01976A54077 /* ExternalAccessory.framework */; };
+ A73CBC839C9F49CCB13295AF /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 89F506EE1C27CE1405020A38 /* ImplicitContext.mm */; };
+ A740F75824B67C4FECA38E0D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ A747B1856B6F3D91678B0210 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ A763CD02F94711DFB96D1CD6 /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = C6FBE40672797298F2C1C21A /* IceLocatorDiscovery.ice */; };
+ A7798264B3110445B5C64351 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ A7AB53C49B71A4C290CBBD7E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A606916AA8B15138B915115 /* AllTests.swift */; };
+ A7D993CDB18E637697CCA05A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF34296B086BFC873E4A5647 /* AllTests.swift */; };
+ A828B6C570A5C8D3DBDFB636 /* LoggerF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1A6072E86A263FC327B1F44C /* LoggerF.ice */; };
+ A844AA5D8CAB8850C725330C /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E71EF8B4A3A71C72A15134D /* Object.swift */; };
+ A855D3661C9395C1F7464B8D /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ A87F2AC93B3EBB7EE2644275 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ A88E4F8AF590CB3058B6C4AD /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3F85D992A55E3BE71BE236 /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; };
+ A8AFB99B128FDC6047F07919 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DE17DA74939585D5DAC3CD1 /* AllTests.swift */; };
+ A8C982C1AF59C7091C852C88 /* Notifications.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55F24CEDC5F99C4DB8BE9A4C /* Notifications.mm */; };
+ A906CD209FF6D744F43A6240 /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 228DDCBD015FAE5B3571D90B /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ A908A5A419C14D0956BD5D04 /* ObjectAdapterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D5FF83D9BB6FCF48B42C981 /* ObjectAdapterF.ice */; };
+ A915ED8EA6EA5BA23B84619B /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ A91EB33AF6613B67381522BA /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3EE0E3DBF68592091E1CFFFB /* Test.ice */; };
+ A95887D52AAE8D5E967A64FB /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3C03C03C64676FDFAB9D2C9F /* Test.ice */; };
+ A97C0CC3E6A346914BBB2C87 /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6CDAB227924D0610F81AD01 /* InputStream.cpp */; };
+ A9EAD63C7A0B1C8C13FCE85E /* libIce C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 68CEC296554781EB6D21CA3C /* libIce C++11 macOS.a */; };
+ AA1E40CE1223B0C0B12B41DF /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 284E9BE541AD26DB761BDFA5 /* InputStream.swift */; };
+ AA4C84296943B99A84FD4749 /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DDFDD649342AB148C5437BA5 /* RequestHandlerFactory.cpp */; };
+ AA646BCD72A76A27593AE324 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ AA737442EF0FBFEDAA241E2E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 17329147DB1EA3BC64BB13E3 /* Test.ice */; };
+ AABA4D462E4E45B453F8B141 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CEEDF4566395391C9E226BF /* NativePropertiesAdmin.swift */; };
+ AABA5D76A6A478B28D2A5D5E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A39829413634597ADED6AABD /* AllTests.swift */; };
+ AABDF3C995C0D06F9F0A7ABC /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F6090BCC46A202A68BBF77D /* AllTests.swift */; };
+ AACE9FC2F03022A8547FDD33 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ AB04BD7A6FBC631C97A92A92 /* ConnectionInfoF.ice in Sources */ = {isa = PBXBuildFile; fileRef = E97D033BADA38AF9402AA464 /* ConnectionInfoF.ice */; };
+ AB3587773B2E131DE1E0C7CE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68121E9326EA961B56F58A80 /* Client.swift */; };
+ AB8AFAEB347921B93D467000 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 623A2AA62A0FA760224602DF /* EndpointTypes.ice */; };
+ AB91CEA2573E2DECD57458B7 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ AC0A77165FD5E880ADD4C22F /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ AC7151DB9910F2DE41D84A35 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 16A8E8F8E99D146123EF3409 /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ ACB237A144B5117ACEFE8A69 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ ACCFF27B08762E95A4E4D879 /* Connection.ice in Sources */ = {isa = PBXBuildFile; fileRef = A06AC0921E10B63A1656AD61 /* Connection.ice */; };
+ ACEB0DDFC7B868D6C6650EFE /* Endpoint.ice in Sources */ = {isa = PBXBuildFile; fileRef = A89C6CB51DCAC3F757EE49A7 /* Endpoint.ice */; };
+ AD6C84CF19E3F33FD22B0506 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04E8688B1F6178675968991F /* EndpointI.cpp */; };
+ AD9056AD62287E1EF513D286 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = CE1278569FF626BFD7243082 /* Process.ice */; };
+ AD9DA8DA4A978AF03B7BD1E0 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ ADA355E2815C338C8807E236 /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEE143805505A4DED71F44DD /* InputUtil.cpp */; };
+ ADB1066439F488D840F4F6C0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ ADEDAB4D7BF2A7E4B1F6F9A6 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ ADFF27DD6B62F071DD7518E7 /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = A01748959A0B2A24EE79D617 /* Logger.mm */; };
+ AE3DC046D8E707CBDBA681BC /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = F144B676048547B79F621AA4 /* BlobjectFacade.mm */; };
+ AE4F27C29FEEA71CF302A0B9 /* Logger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 127FA99F1F575E391D24A800 /* Logger.ice */; };
+ AE61D3C8B2985C86E5436999 /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = F000FB0F52EFA6E32C1D61C4 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ AE7836404A338E5561E187FA /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E41012D98C4F274B58EFAD /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ AE9594E1DDD9C3353D7866A8 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A57B9BCC5EACD4DB42F66B0F /* Test.ice */; };
+ AEC02F54A1D4B7C370F97DE6 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F924390865B63754A0B9D785 /* Collocated.swift */; };
+ AEC1E3F0592180B4EE02FDFD /* Logger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 127FA99F1F575E391D24A800 /* Logger.ice */; };
+ AF13CBD23CBC567D5822D002 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29E2F3A5B3FF4733FE29B372 /* TestI.swift */; };
+ AF175670C4EC73E224873BD8 /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8802757B1DE233FE2791BC9F /* SSLEngine.cpp */; };
+ AF4BA5E3E8EDDD91A018AE94 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 623A2AA62A0FA760224602DF /* EndpointTypes.ice */; };
+ AF50613CCD84992E72D44B7B /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29C0938AAE0BAC68179CBCB0 /* Server.swift */; };
+ AF5DA7A7E1371CCAB886D58C /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06AAE6710F281EAE37864E17 /* Collocated.swift */; };
+ AF5E23E76053886A3FDC22F9 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 700A316334B910A09101FE84 /* TestI.swift */; };
+ AF7E68476F5E7B0EC085B4CD /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA71E7B49312CF4F07C90A3C /* Client.swift */; };
+ AF91E507AA7E0DCAFA5C9C4E /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ AF9C513C9FA9E2699E6B4EED /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3EF4BD416FEEEA65585C8FA8 /* ConnectionI.cpp */; };
+ AFBF583B2EF21389BD9C4E4F /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C5F429607AD626A6D88871B /* TrustManager.cpp */; };
+ B028354FC24507A7FB08F417 /* ConnectionInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4CE1EEF3C86CED79525EE458 /* ConnectionInfo.ice */; };
+ B0346C293A6D998119744892 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBE83FBE8EC1C00F209B7912 /* ImplicitContextI.swift */; };
+ B04D4DF10E3044DD1F14A605 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ B10186E69338BFB57DE11D25 /* LocalException.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2571F704974BBB39DF54E196 /* LocalException.ice */; };
+ B11BD0C3FCD29AED71C3E6F4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ B14514B83DF5D02984460AA0 /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D29625E4A3FBB59DF59537D /* CommunicatorI.cpp */; };
+ B168CCF2BF379019B10F119C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ B1AA65B6C09980D8E0B3A109 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7603D7C27853E868765956CA /* Version.ice */; };
+ B1BD46CA891616FD5458373A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 547CCE4F73338900D09AA8E6 /* Server.swift */; };
+ B1CDEB904337875FEC931490 /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5112EFD03DEEE228D3CDD2CF /* SSLInfo.ice */; };
+ B22DF1F67ADF28F4F2822DF1 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C0AFBDD1EC10EBBC33B68 /* TestI.swift */; };
+ B23B03B7CB15DC19338282F0 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 88362A8D0FC487784FB0A1F1 /* LocatorF.ice */; };
+ B29A11F20BA78103F806FEF6 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B70DE2EC3E4C2C5CA746C57 /* TestI.swift */; };
+ B2B57F9EC1E0D51BA347AD9D /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ B31AB41CF1740FFC619738FF /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83ADC759472D70CD7FABB6E1 /* Random.cpp */; };
+ B3306ECB386EC234495E78F0 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ B3437BA13D399428737F1B65 /* ServantLocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9800A938F2930FC734B98F4D /* ServantLocatorF.ice */; };
+ B37AF30A3AC1CE214CAC34FE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ B3EA7D7028C0A7B71503C2F7 /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CBBD656C39C80C5AF2EA1DB /* Base64.cpp */; };
+ B3FE0B72320C055E7B119FFF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 76440BF69CFBB7BA8615EAAE /* Test.ice */; };
+ B4220E66198CED0F52D234A1 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69306E74AADE3D02FE4E60EF /* AllTests.swift */; };
+ B437F83E65005E64CDC90561 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ B44AAA2014C2FB20D2345B23 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BA8674CBDF25012A707605D /* HttpParser.cpp */; };
+ B496C4C22E97CECDA86FC02E /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F24C5A3A5C571B012806F8C5 /* Connector.cpp */; };
+ B4B9079D0A8764F5DB92FD02 /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A800F7CE4B2357D7E55B5782 /* UtilException.cpp */; };
+ B4BAAA3192D28E429436B1D1 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 02CAE11517F65F36BB6B3CC1 /* Identity.ice */; };
+ B4D25A008D2AF64940D42A94 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A9BF1272CFE825F7F2D6814 /* Server.swift */; };
+ B4DE62E31C08334191B89C24 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ B4E0F74CA14310D4CDD50A80 /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF246750FE16FD27AB1B9E1B /* UnknownSlicedValue.swift */; };
+ B512632A7BF119EA1BFE2B49 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D8918D7258991F1E8CF58618 /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ B525214FE8841CD14C0411E7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3D439C008667EFC7662E935F /* Test.ice */; };
+ B55CD04B6B0D9F880554A947 /* ConnectionInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = AEF95184A3D897EAAA7AE4B5 /* ConnectionInfo.ice */; };
+ B55E283082B92DB498E9642F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ B5A1649F0D13BEF339548163 /* StreamEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B01BC3A8434A3063376ACCF /* StreamEndpointI.cpp */; };
+ B5AB5DD7DE3067822678BCE2 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE3C76073BBDB3D3E0B943F0 /* AllTests.swift */; };
+ B6A4633C948B82708FA71561 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ B6A97ED0471A889B9517BBD1 /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8565E6799EC944D42F00DB9 /* LocatorInfo.cpp */; };
+ B6C1D343C1F92AD7979204DE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E2A51B80695CB7D1A25AA61 /* Test.ice */; };
+ B6C47B42C73933231F23D461 /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ B6F771811B994C844DBBD8BF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 805B62B23CF07AA890D408D4 /* Client.swift */; };
+ B705963CB0F7699CA1AF8F99 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ B71B426F8E46DF7466EEEBC0 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 799C490953D145B679F8D1A3 /* AllTests.swift */; };
+ B71BB62CCB874CABE62E443A /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ B779549BD2DF2E2344D3B993 /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23A7A3D04FD6DD262946F705 /* ConnectorI.cpp */; };
+ B794B7D4F03787483DFEE631 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFED2A261FCD105E634372CA /* LookupI.cpp */; };
+ B7F5CFFFF060E25CFE9A6894 /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 65F5921131948B7942F63863 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ B808B856DD7B95D33FA6BDC7 /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 931F3380F15851A31DB21B98 /* StreamSocket.cpp */; };
+ B8099B28C242BCE799505D94 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 50AA22200C91767A2104DBE3 /* ServerPrivate.ice */; };
+ B82220263CF3AE7A9F055687 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB89A20DB867709982778CC7 /* TestI.swift */; };
+ B85A32FCB36A58E2A25E93AE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8904DE3DE3816938E87F46E4 /* AllTests.swift */; };
+ B8A0F863F1E3B503A2958589 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB1123A2A1E029BB32271A16 /* Client.swift */; };
+ B8FA95CE392AFB128287D7AB /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = C84F7EAC0F5791E7D09AB072 /* PropertiesAdmin.ice */; };
+ B98A87E709E4175C97115F12 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3C03C03C64676FDFAB9D2C9F /* Test.ice */; };
+ B991559DC31B51F8C2F0CAD8 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ B9D8C644CA5BA60BA7A2007C /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB36F29477EA57AD8868E6DD /* ArgVector.cpp */; };
+ B9E23D2DBC93D081A6EF1997 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 764BA5087FACD9DF6068DBAE /* OutputUtil.cpp */; };
+ BA5FF80D4FFE218317B386A7 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ BAA7CFB228B6E1D96C7C2B2E /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0ECCC9FEE7E7376D4D76BB6D /* CFNetwork.framework */; };
+ BAB02878F86FB6C71806677E /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E7D203B0DE479B10FBE0E54 /* SecureTransportTransceiverI.cpp */; };
+ BAD87632AD2332A61A45401F /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73CC62886A3D56E023683BB9 /* AcceptorI.cpp */; };
+ BB2CE92F9EBE6D83112DF5C5 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ BB6843C3919555913D7A58F9 /* InstrumentationF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 316AF622F0283CDC19C52E76 /* InstrumentationF.ice */; };
+ BB81CB5BC24938D967EE2D58 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ BB9081719A37B730700790C8 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ BBC368714EADEC30256FEF95 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ BBC78A039FAC9C0C35451EC6 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7603D7C27853E868765956CA /* Version.ice */; };
+ BBEAE783E20D11AD2DFCD806 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ BBFE75E0B1B9B5E2433EDF61 /* StreamAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE0567B4511A9DB628482F1 /* StreamAcceptor.cpp */; };
+ BC1D0F1B65F7F51E470336B7 /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 117D977692C7C2D8FB2676C2 /* LocalExceptionFactory.swift */; };
+ BCC77C6593EA5FEA960ECC81 /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C5F429607AD626A6D88871B /* TrustManager.cpp */; };
+ BCF9379875BB3DE5B34736D5 /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 117D977692C7C2D8FB2676C2 /* LocalExceptionFactory.swift */; };
+ BD2711830612EC063FD17615 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = D8026643E397138CD24E9782 /* RemoteLogger.ice */; };
+ BD5B7A698C87FC6CC8204D3B /* Endpoint.ice in Sources */ = {isa = PBXBuildFile; fileRef = A89C6CB51DCAC3F757EE49A7 /* Endpoint.ice */; };
+ BD9BEB3C9170FB8F6602A3E5 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EDDB1270424DCAB7F691B6B /* TestAMDI.swift */; };
+ BDBC378ADB9B7C2071D3F4EA /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A94409373930E6F6393C67C /* Server.swift */; };
+ BDC8D762BF6F9489AC75EBDE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ BDDDE2A0376CD5BC8C915F83 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABD78784328011772284AB65 /* AllTests.swift */; };
+ BDE438D9E5EA27D6DD89FF8F /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFC578DAEBC7B64CA2E829DA /* ConsoleUtil.cpp */; };
+ BDFF98111EAD61B02CC03EF8 /* ImplicitContextF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 69E0E1E31F168819C07BBCE7 /* ImplicitContextF.ice */; };
+ BE519DFB82D12013434C86B1 /* Communicator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 326D898FED70991AC1BA0347 /* Communicator.ice */; };
+ BE52E46C45ABCBD378E4BB36 /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05BCAE0ED88B21DCC5FF26A1 /* OSLogLoggerI.cpp */; };
+ BE6DA9F4D6B10275C865325D /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ BE79F355022137CAC608E729 /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C1B8ACEA453172F319A1B60 /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ BE84EC36503B301116BD48ED /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F924390865B63754A0B9D785 /* Collocated.swift */; };
+ BEBD5D9D189718C49FFE8B73 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = DEE5B91323EE4E6BAEF5C730 /* certs */; };
+ BEED0791CF012C7D4D5BFE0F /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ BEF80FF20DCC6428B1943AD6 /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CA40BD3219BDDA159CFBB40 /* RFC2253.cpp */; };
+ BF249AE798BC40A1662A53DF /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A85BF585817ADA33A51374E3 /* TestI.swift */; };
+ BF3A48D1E4475380A5090AE2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ BF46554B8DB0514B21AB2D33 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D90E5E4A4506E4827832F9B8 /* Value.cpp */; };
+ BF4715259FEA1EED812A8758 /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CEE9A6376344FEB128D483D1 /* LocatorI.cpp */; };
+ BFA96FF2CD1647189D40ADE3 /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92FA3E6D5ACCF4B1CF0C3378 /* EndpointI.swift */; };
+ BFBFDCD1A4CF741677CE4CA1 /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = F61859F73072318F796F34F0 /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ C01C5BD1A2B3EAE3F9AF4075 /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28E35D2DCB8C267F2653242F /* ConnectionRequestHandler.cpp */; };
+ C0539C5B9559338BB36F7019 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ C057150889A010DA1113F0F2 /* ImplicitContextF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 69E0E1E31F168819C07BBCE7 /* ImplicitContextF.ice */; };
+ C0B5BB41E281A99E37A36C2C /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95D36E1F1648209B868E09B7 /* BatchOnewaysAMI.swift */; };
+ C0BA2FF6FEDF850282C5C0E5 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ C0BBE732EBC5A0794747B1D0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ C0DA8A6FF97CF5B6196AB891 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ C1ACBB05A33FD75D2B3D9716 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = A214ABFAF9474F81CDEB4D9D /* Metrics.ice */; };
+ C1B6BEFDB34E330A29B6F5E1 /* PluginFacade.ice in Sources */ = {isa = PBXBuildFile; fileRef = 200A8DF5882EB835681B33B6 /* PluginFacade.ice */; };
+ C1CBA0D63DAB5D65A47F7C75 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A38EB9C90EBFC403A05E7661 /* AllTests.swift */; };
+ C227E4EA1CD8B8C42674AA0A /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5363DD742BD3E50E372FAB5C /* Clash.ice */; };
+ C250EE2010140AC517ABDC24 /* Controller.ice in Sources */ = {isa = PBXBuildFile; fileRef = 43D8936E6314196D19095048 /* Controller.ice */; };
+ C2700DF943BDB2417C54F986 /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 14BD1B55FC2A006813A829C3 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ C27DF71B31642BAC4D569538 /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57F789D5181AAA8BD1D848C0 /* BlobjectAsync.swift */; };
+ C2D6F1B3B0E441AD62171B89 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ C2FDCE73121F4D38AD683A81 /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86BA8129D624FC5C654DA4FA /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ C30B0F6C1A8F9432F1FA3C52 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 764BA5087FACD9DF6068DBAE /* OutputUtil.cpp */; };
+ C33DE7AE653FFC851E1EF52B /* LocalException.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2571F704974BBB39DF54E196 /* LocalException.ice */; };
+ C355A1A5DF5D3D02B91B07E0 /* TcpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2404C7AD8DEA6F29CF5127EC /* TcpConnector.cpp */; };
+ C39F9CA8B48DC521C860A615 /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CA40BD3219BDDA159CFBB40 /* RFC2253.cpp */; };
+ C3D6415DC50972DC4BC37943 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ C3DAA2AA3529CA946F5DA11C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ C3F37A13A2C432166D696B7F /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E7E69875C244C5778EEC372 /* Util.cpp */; };
+ C3FDAF8DEA9C8FB3BC9EADE3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 424E07F72C36775987E78D9B /* Server.swift */; };
+ C41FDED39D22723E49CCD5C8 /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0E3D40FBB00AD72FD390D1E4 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ C464501E5FACA6C37BF84D81 /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51BE38EAB81D4BAB59984CEA /* Cond.cpp */; };
+ C50AADD94238A786734D4605 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ C542CB0AF2902952B55CFEA0 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42D78FE28A5FD6909B09171E /* Server.swift */; };
+ C54DE890E97192D9C2D7DC59 /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = F9FDFD9567E3EB23F567B412 /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ C54E9C6AC829F4626689CC54 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ C5564C7A99376298A7C619D1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E64564556238B25F5AE6D4E /* Client.swift */; };
+ C56F6DB4A7AF4A6D174FDF30 /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = D726E89DC9EF4DCC71E5B72C /* EndpointInfoFactory.swift */; };
+ C5860232CEDB6BFC8C019D18 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = A8F736DDD2D36B64200A0023 /* RouterF.ice */; };
+ C5AD00C0143EF5F56C5808D8 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = CF62CB725A11CEB7E4573361 /* Test.ice */; };
+ C5AD2BDEBAF7011B64A8B720 /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 003B81E404BD951D35B23A9C /* Connection.mm */; };
+ C67C533A10B35EAE9E94D209 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBD5794F951058D78ABA0D48 /* AllTests.swift */; };
+ C68572446FC890B358AB060F /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ C68AD2FE2098270EB37C11F2 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AA88014FB3AA166A95BE666 /* AllTests.swift */; };
+ C6BC3159F7AF2AADE90CFE54 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ C6D60251659B303018F378AE /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5FB28C8905B0491A1AC74818 /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ C784C3EEED3CF1DDE05223B9 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ C788F60E7CED02557FE83B55 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ C79D95D650DC4769B77AE67C /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2B163B4B0AA8D481BC0CE1 /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; };
+ C8073BA14EDED7411863F07E /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51BE38EAB81D4BAB59984CEA /* Cond.cpp */; };
+ C818C95F19458427D92260BE /* ObjectAdapter.ice in Sources */ = {isa = PBXBuildFile; fileRef = 431FCA1AB962B80BF654B3D0 /* ObjectAdapter.ice */; };
+ C85377B9FD7BB2CF49F6248B /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D679F5465C4EB73106C5AC /* ObserverHelper.cpp */; };
+ C86687B60B783F099FEB5910 /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F32CE35510450059D4F5F18 /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ C89990DA431C68973D7FA931 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 15E1BA9F33DE8EF789B1E6AC /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ C8E4567AE74D9C69B88AC698 /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A49D7EF11617FD2B8DD7C45F /* UdpEndpointI.cpp */; };
+ C8EA01532AC8B636314F051D /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = E64AE4103060ED8DE8C63A5F /* Metrics.ice */; };
+ C944B50ED4E37728BB53CE16 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = C3591A40745461F368CBC77B /* TestAMD.ice */; };
+ C98DE50B6A9B683EC9219629 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 709BD396C5DD2985D2576C89 /* AllTests.swift */; };
+ C9A1F394E46C11263881F39A /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 258DAA9E0D1E1ECB4B65ED80 /* PropertiesAdminI.cpp */; };
+ C9AED5B1EF9F042A65C85223 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 639FE31C5F3B993BBA0809FD /* EventHandler.cpp */; };
+ C9DE2ABC4902381C6DD71F52 /* Current.ice in Sources */ = {isa = PBXBuildFile; fileRef = 477E91A1197B5830761631C1 /* Current.ice */; };
+ C9ED7278F48F3DBCB6A5CFC3 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ C9F3A16D97F5CE147781546F /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = D00B9F3E0CA080CD2B2C61F3 /* LocalObject.mm */; };
+ CA16918EC8999E482280A4AA /* FacetMap.ice in Sources */ = {isa = PBXBuildFile; fileRef = F846257F8F86D75E994D2BA5 /* FacetMap.ice */; };
+ CA38FB9A018F64A03E1F42E8 /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22138CAA2F575EA5E4376E27 /* MutexProtocol.cpp */; };
+ CA8C70CFEA11982EE6664D55 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC3D4E5B05D9FD2F3E929F5 /* ServerAMD.swift */; };
+ CAC52653C96F0A62FA16E6E1 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ CAE38603F7D5BC3564C37BA3 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 615F705ADD38DB36488696E0 /* TwowaysAMI.swift */; };
+ CB00F208510BF5C08899D417 /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = 91CCAA379CAE47D548C1D784 /* IceStorm.ice */; };
+ CB12CC650E52314C5306692A /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8C1E877ACC0DA38CB700CA31 /* TestAMD.ice */; };
+ CB3D7A26768F331866AD61A7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E2A51B80695CB7D1A25AA61 /* Test.ice */; };
+ CB5E84F1BD520984390D9D3C /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B769550900F96420DBCFED72 /* IceGrid.framework */; };
+ CB9210EE87B78A9AFF8A35A5 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ CB9F99BA71D6C9223F6FED8F /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEA2205E172336BB60147423 /* CtrlCHandler.cpp */; };
+ CC19A411C6E77A9E48741509 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE1A00AA2A52A007803ECA9F /* TestI.swift */; };
+ CC4B558F23D8756836797661 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ CC671B75F9E0FEB728D7D33E /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8511F4E2012CDD7C9629C27C /* ObjectPrx.mm */; };
+ CC70E56022BCB3B50C356920 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = A214ABFAF9474F81CDEB4D9D /* Metrics.ice */; };
+ CC77A356669ADB7605E65993 /* EndpointInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 937B8FBC13804AC35D672463 /* EndpointInfo.ice */; };
+ CC7C5BF84AE4C6A60FEF16C2 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87E4EFB3F77857A527AEA983 /* AdminFacetFactory.swift */; };
+ CCC928DC3FDF926A023C9B9E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2876A819259365ACA41C9819 /* Server.swift */; };
+ CD11B5459E9E30DB90A56F7A /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EABEF7F85B00B0111F6C3560 /* Shared.cpp */; };
+ CD1A61FB166588560B1F1A54 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ CD25DC9D89113E0276F6CE85 /* ValueFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = 57017F902B7686C7579A7648 /* ValueFactory.ice */; };
+ CD2C028D8B14D1B59FCD9435 /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D340D331AF4440A1FD7BB72 /* Oneways.swift */; };
+ CD40D4F219D2D53990DE1CFA /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7139B6C8CA10007E792F53D4 /* OptionalFormat.swift */; };
+ CDACC0DC4791C75E355EA026 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 751D293EE7855F9A5A773FE7 /* Server.swift */; };
+ CDC421A400282B820368A184 /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A49E88A35399266906B635CE /* ObjectAdapterI.cpp */; };
+ CE1655D61E01719517A0C568 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A63DCDA9CA07C5D78EB18355 /* IceImpl.framework */; };
+ CE53ACFB196315412C2D41BC /* Communicator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 326D898FED70991AC1BA0347 /* Communicator.ice */; };
+ CE97E9896A3DC4FD4D7FAF9A /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18C83E8AB5E723D20CA0B89D /* Collocated.swift */; };
+ CEB841CB4AF26BEBE30B3B11 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E338C63E5506C4DD6F7B043 /* StringConverterPlugin.cpp */; };
+ CEDA88E53BED924EBA1CBF9D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ CEF9D46DB70633CBAF117ABA /* ImplicitContextF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 69E0E1E31F168819C07BBCE7 /* ImplicitContextF.ice */; };
+ CF2481E2622EAB5EBA039FB6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C12A6CF78CB8EAC28EABE4 /* Client.swift */; };
+ CF6B74BF486BAD5B077E6DAE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ CF8A5B353B3ABB49BAD672EA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ CF8AA6672109C9C7446E2F2D /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = B0308FF4DA8796949079382F /* Router.ice */; };
+ CFB9E2DC6A83B02338EBAE70 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6B2797A8849E5E72C831841 /* Client.swift */; };
+ CFC92928D70038290BA7FE2D /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D1C638EB8448A2F8DCFF844 /* ObjectAdapter.mm */; };
+ CFD897ABC2582F43314A3CB7 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ CFFCD2D7F80A4FC3A1F8A492 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 50C28D2AE3D7153816FAA709 /* IceStorm.framework */; };
+ D04668A72E4B356B9B6279F0 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ D069EBD3A67734BF2E545483 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ D083411A0B48613C5604C99A /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE14C224CBBDF1DC3C8DC502 /* TestI.swift */; };
+ D0FAD3697950CDB553049357 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 330EC83D3738ECC6A7536C9D /* Client.swift */; };
+ D12F8D34FEFC174FC7375C11 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CEEDF4566395391C9E226BF /* NativePropertiesAdmin.swift */; };
+ D18AB854340E0369E76FD371 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CBD0880B67614DBCBD9E84D /* TestI.swift */; };
+ D1911B807A7CFC1BFE8A4E09 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = F9B270E39D3B1D84A8E6B986 /* BuiltinSequences.ice */; };
+ D1AF8B31327D6EEA27157D32 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5A9831CFF2692F9637C5810 /* AllTests.swift */; };
+ D200331EB9F36CD9F08A690B /* ObjectFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5A5BCF69097F9B6FD153B8FE /* ObjectFactory.ice */; };
+ D22A66BE3743E0AAAAB7C581 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34FBA26DDA9D52224A61F465 /* SHA1.cpp */; };
+ D22AD45D41FD268CD4A99394 /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7481133E66BBCFB35C59DD6B /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ D258F70BBE3D1369F30E34B4 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9250382693A50F0E823D433C /* TestAMDI.swift */; };
+ D25EAAF4F9A0A1BC80945AE4 /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57F789D5181AAA8BD1D848C0 /* BlobjectAsync.swift */; };
+ D29A85FCB6750D6E1FB76743 /* ValueFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = 57017F902B7686C7579A7648 /* ValueFactory.ice */; };
+ D2A2D8B8BFE3EF5EB4ADBC8D /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8E01786DB7612C60BF8A1AD6 /* Exception.mm */; };
+ D2B66A1011FC3B7962F02322 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFA6DB995DB96B0E3A2B65EE /* Client.swift */; };
+ D2E0A075A5230A45A294DCC4 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ D2F8853747D126C97620B53C /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 721603641E4D852A125CCB38 /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ D313E962286990F66F67D308 /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFC578DAEBC7B64CA2E829DA /* ConsoleUtil.cpp */; };
+ D3372006C05909B73DEA3DCA /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA49A1EA8A8746AE458F2C18 /* OpaqueEndpointI.cpp */; };
+ D3400C55090C95422AB634F9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0313E5DCB24F56323CECF640 /* Test.ice */; };
+ D34BDACB8679B43EBDBF0F33 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A63DCDA9CA07C5D78EB18355 /* IceImpl.framework */; };
+ D366CF637EEEE593851883B1 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84F9C49554E032E9F24125C9 /* Server.swift */; };
+ D397CEB669F3EB2C78FD6531 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B9BD5DA20CE10B5EEAFC1A37 /* Glacier2.framework */; };
+ D3DE72E445EB9E37E27EA61D /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E6F24A92F34BF28AB3B74C9 /* WSAcceptor.cpp */; };
+ D3E570CBDFEDA4049A029D43 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FB28C8905B0491A1AC74818 /* IceStorm.framework */; };
+ D3E6E090CAB52841ACCA271A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ D439596E2EA3140D45175940 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFED2A261FCD105E634372CA /* LookupI.cpp */; };
+ D461510F4A24534591F9AFED /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B618430EB6F5FD497FB0DDB /* RouterInfo.cpp */; };
+ D49EB103A66A809820B7EF07 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 58AF2DBEA9E524721EF29279 /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ D49FE292BA53293DD4376BED /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ D4BD9762B768680B6688544A /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CD35F4B4C04CDC985B84571 /* PluginI.cpp */; };
+ D4F9CAFCD350711582045686 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ D4FB0A90902608C52ED78D5E /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 02CAE11517F65F36BB6B3CC1 /* Identity.ice */; };
+ D51C085A0606FC73D28F534A /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B904574D2E5F73E6D831FEB7 /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ D52BEB01AF6DA7056728F723 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9EA41900D64E8658B705E3C /* AppDelegate.swift */; };
+ D533F808817E381B695972F0 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 424E07F72C36775987E78D9B /* Server.swift */; };
+ D5777A4E849D2A65D345CA89 /* LaunchScreen.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = CB9DF2517C4D8910B9F04C02 /* LaunchScreen.storyboard */; };
+ D5C19C423062D83E7DCDEDCC /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = CE7C6CFA731F5E0FC26F9554 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ D5C59A1401F324205EDEBD9D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ D5C5CAFEA2C619FF9D059FD7 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B70DE2EC3E4C2C5CA746C57 /* TestI.swift */; };
+ D5EF9601B2536733F1CE07A0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ D617490B4CA5C7A1920382B8 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEAE54441F169A7C4B067FFA /* PropertiesI.swift */; };
+ D6251B99BC1E413095AC86CA /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DCFEE5E8FC3124CDFAE7671 /* Security.framework */; };
+ D643A1F482314700C36462E8 /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 931F3380F15851A31DB21B98 /* StreamSocket.cpp */; };
+ D6461E5109A054455825CA0C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ D64EDFD37FCBCB6D291E5799 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7BCCF602D0FF8D22B9680CF8 /* Test.ice */; };
+ D6604DDC098F25D6C0014781 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = DB620946367523497675CCEE /* ServerPrivateAMD.ice */; };
+ D68ADB36B75A1569760DF274 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = B7D8B9A2D605FCFFC786AD11 /* IceDiscovery.ice */; };
+ D68D8C53BF36541A76E94D43 /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB081EA6CBA368AB96ED96D6 /* ServantManager.cpp */; };
+ D6AF663E8987B066AF8F28AA /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E8A8FCD073B502C50AF409E /* ServantLocatorI.swift */; };
+ D6B74E0FDD8EDCAD51F2E52D /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6EBCEFAB4C8715E3794AFD71 /* TestAMD.ice */; };
+ D6EEF2F1A1F2E9BFF1057359 /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0C6CA87763EF92E236588FBA /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ D701AACEEFFC1FB706465546 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CD35F4B4C04CDC985B84571 /* PluginI.cpp */; };
+ D72F11F6E9C0A5AF94116D2C /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ D74731D7D7985EE8F7AE717D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ D76FF125BA07AC37BD5C04DA /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0640D54D342A86B7F3F05698 /* TestAMDI.swift */; };
+ D7840B4D05E7C6FB01CE33E8 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FC4531AA749DAF419FE26EB /* Server.swift */; };
+ D793885DA55892463ABB63EE /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 158A84D614CB3E2C3AC2A5E3 /* TestI.swift */; };
+ D7B36D14FB4C83326551398C /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BA3A76FABDAB54CF329EC7B /* EndpointI.cpp */; };
+ D881B983EBE2EF2082D9963A /* Endpoint.ice in Sources */ = {isa = PBXBuildFile; fileRef = A89C6CB51DCAC3F757EE49A7 /* Endpoint.ice */; };
+ D8C0485CBA69615649AAC9C4 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ D8EDBA345070446BDF006F79 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ D95EE1448F8FE2739B1C2110 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CDFF3A184E66FFB28428C6 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ D9ABCDCA73D8AFC7E4CF53FA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ DA182BC73A8643B5B513F726 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF98339FB04534928125DB76 /* ServerAMD.swift */; };
+ DA2DCFF321CA11381EDBA0D3 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 362F347C523AD63B9BF0488E /* Test.ice */; };
+ DA6D720FF57695E227F5B127 /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = A08D190BD584FF5E91403A9E /* TraceUtil.mm */; };
+ DA8D2BD8A683075EB59D1411 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ DABE421785EC682E72B955E2 /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD045F681FB9F088DC230E0F /* SlicedData.cpp */; };
+ DAD807528197DD22F090EA8B /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6058A9A6703F0612B4B79A97 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ DAFA53DDC4630F0163B67DBC /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B1A39C9E9F62098E608BDD49 /* Test.ice */; };
+ DB01754A5B7F7353B544EF88 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 08B0ED970FB5747320CDA718 /* Test.ice */; };
+ DB766D0F59EB66E994022421 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ DBAA7416F575B4675D9BF339 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ DBB885457BA186FBF57E7E29 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ DBFDACF4B6262678BF65C703 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ DC1298E7E6F7C0B5028FBF91 /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ DC1FD874127AB2F5C68CE67B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ DCCA61C045AD02D3DB5A8243 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ DD0014103B638890BE25A526 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ DD3846FD043B7C5648F5950A /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3D6020190F13303DBB3AE04 /* LocalExceptionDescription.swift */; };
+ DD773E8FC21F51A4690A48E8 /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 284E9BE541AD26DB761BDFA5 /* InputStream.swift */; };
+ DDD55E2D1A0E3047DCA126C6 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D1907C2D29A0010AACB3DBB /* IncomingAsync.cpp */; };
+ DE20CF9645CDAA777C0B2643 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 50829B5C8135F4031CD1EA4D /* TestAMD.ice */; };
+ DE2C04179FE9D4D736CDBAFA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ DE309BAB911890E954918C0C /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 708D4BA5BB5427A869888AEA /* Router.ice */; };
+ DE76D131CD8FCF9DA0FDB483 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBD5794F951058D78ABA0D48 /* AllTests.swift */; };
+ DE8E728BDD5523AFCD1295C6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FC76B1B464A5AC2A20554FF /* Client.swift */; };
+ DF3B9FC365FE593CCF2301F9 /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = DAB411415D75A65DA58B5F5B /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ DF458B5CCE88F81CFB0CECE4 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95BA56AA2BDF936B8E4F0B2A /* StringConverter.cpp */; };
+ DF66B201FEDE9466A13B5F21 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07E8ADEA8F96C4739BC20F57 /* TestI.swift */; };
+ DF753AAB223A6806C39938B9 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4A666841400DD55C4BC753D /* ProxyFactory.cpp */; };
+ DF76CF92AA8B60AC00045861 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2E80530BC3EB3B267510B98 /* FileUtil.cpp */; };
+ DF7B31E3EB97D4BA62E1F554 /* libIceDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AFAD6C28DA1495DABD4127E /* libIceDiscovery C++11 iOS.a */; };
+ DF8FAE5017E18ECCCCD624F8 /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEE143805505A4DED71F44DD /* InputUtil.cpp */; };
+ DF9528A6E53DE6673AF7FE74 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04E8688B1F6178675968991F /* EndpointI.cpp */; };
+ DFBEA4DB455A84E5B857AC6D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2FB5FDA9DE852FBB2B10936 /* AllTests.swift */; };
+ DFFCC0889DCA47C2A37D9C6D /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AB36D857DF0F81C4D5594C6 /* LoggerAdminI.cpp */; };
+ E03EEF2A12752704BC336635 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = EECAB125E8C93688689DF18E /* Test.ice */; };
+ E05FFAEAD2F1BDDD4C0B44EB /* ConnectionInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4CE1EEF3C86CED79525EE458 /* ConnectionInfo.ice */; };
+ E06730FB92A90CCA20128EAC /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5A8A9CE6A57293E4D35757E /* Acceptor.cpp */; };
+ E0785A9B0E1430A9E2806421 /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BEB059DD01E8DA0D5DD2098 /* IconvStringConverter.cpp */; };
+ E0BE71BE129796F15A3A4CA7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = EB489D1E2A8C2CF17A2F4330 /* Test.ice */; };
+ E0D6FEADAD3E3A1CA494E6EA /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 20486AFFB86A5E44084EDF99 /* Admin.ice */; };
+ E0E0986440E5DA87D956AB99 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B9BD5DA20CE10B5EEAFC1A37 /* Glacier2.framework */; };
+ E10BA5AA8081F4851CE6E298 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = A8F736DDD2D36B64200A0023 /* RouterF.ice */; };
+ E11A0A09420858B006E646B6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ E13E5076C02DDF009A4693BC /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2AADDF310CC1F8D9621EA843 /* OutgoingAsync.cpp */; };
+ E15B6294BFE74579F3C85012 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D362F8935BDDBB6646F277C8 /* TestI.swift */; };
+ E168FBBEE172363E7FBB600B /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = D88E9B56D89F644A6AEC3F3E /* ServerPrivateAMD.ice */; };
+ E16959B1E8BF9EC5BEAE6D0E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BF026BDB77BB9A18DB05349 /* TestI.swift */; };
+ E1924BC5C1C718135DBDDFB2 /* Properties.ice in Sources */ = {isa = PBXBuildFile; fileRef = D611E5DADBB8DF69D3A0E64C /* Properties.ice */; };
+ E1DD0CB233ECF3FCF7D18A85 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 563D36E1F39068302C64D483 /* Client.swift */; };
+ E1FC800043DFA9F22C8E7002 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E89A23CFF389FE40C9557340 /* Collocated.swift */; };
+ E20FD3B4CE8C8A3600BB7D03 /* ObjectAdapter.ice in Sources */ = {isa = PBXBuildFile; fileRef = 431FCA1AB962B80BF654B3D0 /* ObjectAdapter.ice */; };
+ E211221FEEC85492562D0B91 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8C3320857B5D24565F04EFE /* BatchOneways.swift */; };
+ E2791B7902D6EA5DE3003AF3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 547CCE4F73338900D09AA8E6 /* Server.swift */; };
+ E2CEC570667D4E8AFD2D1299 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E338C63E5506C4DD6F7B043 /* StringConverterPlugin.cpp */; };
+ E2E4B4C035C399FAA5A8C470 /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB9423AA60DB5CF08094DAF7 /* LoggerUtil.cpp */; };
+ E2E511DBAB6F0092F019DF81 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ E332C5CD55DA1AB2B129E634 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ E3CBEFCF75902A6A28766915 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18C83E8AB5E723D20CA0B89D /* Collocated.swift */; };
+ E4BC151332B9AB0B58ECF164 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ E53784D0F117226C310AF71F /* ConnectionF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4CC8D93A3FC8AF9E0BB609FA /* ConnectionF.ice */; };
+ E53ADE4E5CAA2C40E7328A4F /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 74A58F9341DE159C9D4D4122 /* ClientPrivate.ice */; };
+ E5676F638AAF6A689024CDBE /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 490ABC45AAAADE449F8F7C01 /* FormatType.swift */; };
+ E57F4F40C8E82DA29142C8AA /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9481B651D132BA3CFD0AAFA9 /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ E59F2E9844E4245A1F6171CB /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ E6088AAF7A75F7EDA1F956E8 /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B904574D2E5F73E6D831FEB7 /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ E6374B9BF2F801B632C5CF0B /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8223AEBF7050FD7541E96A1 /* PluginI.cpp */; };
+ E6A0659D7455CBC95D789E20 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E5D4CA75EFA1350097AB7876 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ E6BE78B3486FB70FFA44E68C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ E6E89B96408C38B1DF562C94 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF9D92749FA6F9B5FE652C45 /* LocalObject.cpp */; };
+ E6FE1829290FDB6968EC853F /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B240838C3B7EC5098985F9A /* WSConnector.cpp */; };
+ E75CE1821F422A6D62359914 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95BA56AA2BDF936B8E4F0B2A /* StringConverter.cpp */; };
+ E76ABB89975B656DA801F41F /* ConnectionF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4CC8D93A3FC8AF9E0BB609FA /* ConnectionF.ice */; };
+ E78B8416139C6605A58B7798 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ E79E897842121850A5AD1E50 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC591A6A5FF8126DE099F8A2 /* ServantManager.swift */; };
+ E7B8A92F4AB413E533A06B2F /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1B8CA636A2A4EB28960FDD61 /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ E814333D19EDE266C1B93A9A /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = 08D4C2681B7D72E32D51CEE5 /* FileParser.ice */; };
+ E84BC44DF0BEA23E9FA52B34 /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3F03C459EE7E9A7A7EED2FC /* ClassResolver.swift */; };
+ E856B99B9A9D58122A78B79E /* libIceSSL C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 37E322077E762CEEF4853257 /* libIceSSL C++11 macOS.a */; };
+ E86E66D95ADC4F42C081E8BF /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ E8707817F0471353236FD578 /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 20486AFFB86A5E44084EDF99 /* Admin.ice */; };
+ E8C827D3F824673D5144E7CD /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F04CA1BA60A991B7A79D8D2 /* TestI.swift */; };
+ E8F52998D17563F7F4496651 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ E91BDFB124FEFC82BFC56447 /* libIceIAP C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D8842621E7D70188F9DF2501 /* libIceIAP C++11 iOS.a */; };
+ E99F05CBEEB623AA1CDE8726 /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 322C504F6FBC0E00C381D83D /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ E9A7B33B376A6E366536DF33 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ E9D6EC5FF09050D67BCE5E51 /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D1C638EB8448A2F8DCFF844 /* ObjectAdapter.mm */; };
+ EA10F4339A1A1B7E8504FC9E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ EA19FBB05B1F7F2A74867843 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = F32F3ABB20FCC8FC8A0A0ACB /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ EA255F0D4367F47126158AC9 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = A8F736DDD2D36B64200A0023 /* RouterF.ice */; };
+ EA778E46503AAF3E97009826 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B99EAAC5667070FF5F7B6FF5 /* AllTests.swift */; };
+ EA9A47ED525A59A1CDC73928 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ EAB9F6B82D1D9B7A6633885E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 805B62B23CF07AA890D408D4 /* Client.swift */; };
+ EACACBFDECAC5BE9A84726EC /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB1123A2A1E029BB32271A16 /* Client.swift */; };
+ EAE7388F11D7E6CB2D7B6094 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ EAF1A64B7B259007F6F8AAE5 /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9C15AF93ADECF03E659813AE /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ EB2180AF882F02BE0063DC81 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0DEFC193F3F347850C430F6 /* TestAMDI.swift */; };
+ EB6DED91C735AFC73DDA38C7 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68121E9326EA961B56F58A80 /* Client.swift */; };
+ EBDDD340704A5C37F5B700B4 /* LocalException.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2571F704974BBB39DF54E196 /* LocalException.ice */; };
+ EC05121AD929F336919CEE85 /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E906A6A3B1927465B53AA27 /* OutputStream.cpp */; };
+ EC0FFEBE2D8E2E8AD4571D0D /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F84CA9A304E3F6159E1CFC94 /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ EC43416FD154B347E6922F4C /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7BA3A76FABDAB54CF329EC7B /* EndpointI.cpp */; };
+ EC89C978C0736D515850D5AD /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60A75D69BF7BCC8427A97577 /* TestI.swift */; };
+ ECA0D31FE0CDE674CB4D3719 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F0DC044B6F5DAB4FA96D80E /* Instance.cpp */; };
+ ECCC14F76BF94C5CA62E0370 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2B8D6033EF5DBC2905586933 /* TestAMD.ice */; };
+ ECFB3237F6F2C8CB710EA4E8 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA7FC13CEE1D2C6BCB90644 /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ ED34C50462BB90FB714F79E5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ ED9FF78D578988136B105105 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E51D353FDFADE7C2085B196 /* Client.swift */; };
+ EDD2A2E8D5F331DB4F9B1716 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ EDEE3E122BAEE7972AAB844F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83119929B0E9A068FECE736B /* Server.swift */; };
+ EE295319B80F5DF25DCF1B34 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ EE6F3E58A003CB97329D68D5 /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 631222ED1E46C261BA6D81C0 /* ValueFactoryManagerI.swift */; };
+ EE8962FDD182347783CA06D8 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = F9B270E39D3B1D84A8E6B986 /* BuiltinSequences.ice */; };
+ EE8CBBD47FFD86E4B393E41B /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5942973BCDA04C01DF823F17 /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ EEB791AD70ADD03385AD3F82 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC5F7C4F2F0D95F24CC5DD66 /* Collocated.swift */; };
+ EEBF0A972E95A326FBF4828D /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3EE292939C43A0B9A8B787D7 /* Locator.ice */; };
+ EED4EC5EBF37757AF120B803 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 004F49EECEC5EF0532144014 /* Collocated.swift */; };
+ EEDFB4ECCEC143FC045B19F6 /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 866FFC39BC5078EBDF04F85E /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ EEF0DC8F30E903E928DB7715 /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = F61859F73072318F796F34F0 /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ EF3698926D95FDB5A8442A10 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5B747D322414658FF4DD342 /* Util.swift */; };
+ EF71DD71CDF3085881210D5D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ EF7CC7272F0C74E79B881A4F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 700A316334B910A09101FE84 /* TestI.swift */; };
+ EF806DF3391AAF12BA97F6BB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ EF98EB066563709DE0797727 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B464045D3DD080BA5784472 /* ServerAMD.swift */; };
+ EFD1AB232347F5850B9FC462 /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 51E99B30521AA55C7680038E /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ EFD6621ABBC831A1134A256A /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 439CAA99857F58F11386EBC3 /* ServerPrivate.ice */; };
+ EFE4861314121694522BED60 /* ObjectFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5A5BCF69097F9B6FD153B8FE /* ObjectFactory.ice */; };
+ F0004FE3A5EA17C4B5EAEB02 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06AAE6710F281EAE37864E17 /* Collocated.swift */; };
+ F02055154B3224F830A34047 /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 571F60FE3865604E45D3EB20 /* SecureTransportPluginI.cpp */; };
+ F0A8D31F73F47493E4EE66F1 /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 53CFE6E9577551B9B5BE8F0B /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ F0A9BDC17C556F54B3252A09 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EDDB1270424DCAB7F691B6B /* TestAMDI.swift */; };
+ F0BCB872187F7B0F3125764B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ F0F5992FF6AC950FF9DFDBB5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ F11430D16F7260D3B2F65492 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 630B53C4B0DCBF443CE3A899 /* Ice.framework */; };
+ F13A439C9CA5B88C0267537C /* certs in Resources */ = {isa = PBXBuildFile; fileRef = 76E99A8FED64D17E565727B6 /* certs */; };
+ F1700D19D87AFAC731EBC6C6 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = F1F5B981DE4101EBCFE749D6 /* ClientPrivate.ice */; };
+ F17B04225A873E61024EDE27 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 708D4BA5BB5427A869888AEA /* Router.ice */; };
+ F19B14B3DA9FCC1BAB93FA0A /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = D8026643E397138CD24E9782 /* RemoteLogger.ice */; };
+ F1CFDEBF3D0B7CF088907520 /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FD01E8AD2B0DFDB800C76AF /* Blobject.swift */; };
+ F1E199888F032E9ACFBE0FA3 /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACB1CA0FC300B3B03EB78716 /* ACM.cpp */; };
+ F2125A8FAF0E33014DDADD1E /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = 305DF5FE549D3C4D4B428924 /* Incoming.swift */; };
+ F2190EBC6AB8FBB17894B7D9 /* ValueFactory.ice in Sources */ = {isa = PBXBuildFile; fileRef = 57017F902B7686C7579A7648 /* ValueFactory.ice */; };
+ F25B831C138AAA09CAB6DEF7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ F29167781CCA04A46163F792 /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B919B9BC0B3EAFB59DE62C2C /* PropertiesI.cpp */; };
+ F2B4F0827C86A244FDEF519D /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A1C67939300D984A3E2AD68 /* RetryQueue.cpp */; };
+ F33D287FF1DE03ECEBFDDDAE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ F3665AF727ECB8BE74AA4EF0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ F36E4ADD5F32B3D573B6E0D2 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ F3C000C0FF5F33B082B28B12 /* Properties.ice in Sources */ = {isa = PBXBuildFile; fileRef = D611E5DADBB8DF69D3A0E64C /* Properties.ice */; };
+ F3E097F41C91FB7F0C6D9DA0 /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73FA22C5034CE056FA112987 /* Initialize.swift */; };
+ F3F8C54A11DC6FB2D75884A2 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA2734A6625328B15E08346A /* Object.cpp */; };
+ F439F52221CD82CA8D7C70F2 /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A49D7EF11617FD2B8DD7C45F /* UdpEndpointI.cpp */; };
+ F4994F8835BF91C6CA056117 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = F32F3ABB20FCC8FC8A0A0ACB /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ F4A679646B9D8E47A78655FF /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ F4C24A125F3427BB5FB538EF /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */; };
+ F51173ADF8D48BB5FE283617 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 50C28D2AE3D7153816FAA709 /* IceStorm.framework */; };
+ F514E5F8335364DDF0E649D0 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = A214ABFAF9474F81CDEB4D9D /* Metrics.ice */; };
+ F51D14BA8910E0B27F4F3154 /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BEE9D1AB70849A09A9122342 /* CollocatedRequestHandler.cpp */; };
+ F52827E6A73AC80962F3875B /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D382963A6D341D8AB96B2F96 /* IPEndpointI.cpp */; };
+ F52B80E38B6ECF12FB9A7A0A /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93C2C1B12FB6F74B85A74AB8 /* TestI.swift */; };
+ F54665DB156D7EE653D1BA0E /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D6906B8A17903ED8A46AB4F /* MetricsObserverI.cpp */; };
+ F5960A77102ACF901D0909B1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
+ F5A2258551CE58B00C820DC2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A17A6842456B978F70B5DFDD /* Client.swift */; };
+ F5B140AA3FA7A33CEE34BDDF /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 14BD1B55FC2A006813A829C3 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
+ F5D0228AE03BE3B31A36D454 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DEB369D710EC587DFD76B069 /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ F5FE6C53D14C36DBD67B01C3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ F6091011DD6BF4BDB4970786 /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4EB4AAB6340039C6B77D0B38 /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ F66FBB26CF83BDB7C9CADD2C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64EE2C5503AD46C98E012E96 /* Server.swift */; };
+ F6C541378763E159844F260C /* Instrumentation.ice in Sources */ = {isa = PBXBuildFile; fileRef = FF801C186E03BB2EBD80CC72 /* Instrumentation.ice */; };
+ F7686A6945C4DB75C56EE87A /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95D36E1F1648209B868E09B7 /* BatchOnewaysAMI.swift */; };
+ F77CFCD794604D2735C9080D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89BA4D129F7AB13FE8AA4252 /* AllTests.swift */; };
+ F7B5205E8D00D584FDC25ADC /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82F61D86E1F20952E8C3841A /* TestI.swift */; };
+ F7BD9FC05494964BCD8B0BC6 /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A148A58FC6419CF431F133D9 /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ F7C07F04C191E06E851D8A56 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E65331EA85E12D5A4D23BD29 /* AllTests.swift */; };
+ F7CED2AF4DEC7F7FEE7E8604 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ F7E7EF7F20447080AB0C4A32 /* PromiseKit.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ F8220A007E0B10B219EBEFE9 /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACB1CA0FC300B3B03EB78716 /* ACM.cpp */; };
+ F891382F899CD341509EF2F7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ F8D3E174E7524A66083BDB11 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ F8D89387AC9D2EA08BDE367A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2FB5FDA9DE852FBB2B10936 /* AllTests.swift */; };
+ F8E5EDF2F1C13C37AAD705F3 /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 775EBD369201C97189EB1022 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ F90A8BF5A1A98969C79601EC /* ConnectionInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = AEF95184A3D897EAAA7AE4B5 /* ConnectionInfo.ice */; };
+ F98B452B5D6D4D7BD3813985 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4E959F0B362795EC27EE97FA /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ F9CCEA8BB585C6CDF67F1FB5 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A50EFAADF3111E3694A86697 /* Instance.cpp */; };
+ F9D785E1575E2236A2C69E22 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 89D2FAA92C70159399181D22 /* Test.ice */; };
+ FA026E17099CDC282180A0C5 /* SliceChecksumDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = C784636985C065D20545F5BE /* SliceChecksumDict.ice */; };
+ FA2D34D2970117BE5702DEED /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 698F636B1C7F71C0D86FCEE2 /* ServerAMD.swift */; };
+ FA31B49A6063A7E1B097FD6D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ FA405E6DFF25B85F1653371E /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B61A6FA40AFB5C32FEAA154 /* libIceLocatorDiscovery C++11 macOS.a */; };
+ FA76FA33CD81325E5B3EDA0C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */; };
+ FA8AEF7BFED1B077EEFEAFCE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ FA9AF0AAEA933B7462970599 /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8DD61CBFBE4E12B6E30E9C4 /* FactoryTable.cpp */; };
+ FAAA2FAE46249FDEF10751A2 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20B2EFE81749EB63ECF0E74E /* TestAMDI.swift */; };
+ FAAAD0CBA4A5A49471DD4EFF /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 19EC86E70EBD4A492213EA37 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ FAC0B32F275D57B8F89DC053 /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = 305DF5FE549D3C4D4B428924 /* Incoming.swift */; };
+ FAC378865FCD6B75F6642949 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 203606D7DC16FEAAC9468535 /* TestAMDI.swift */; };
+ FB1D90E937E1605046A05337 /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = D0EAC955BB7F720093F87E7A /* Registry.ice */; };
+ FB3573DFA198993154132002 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */; };
+ FB3A247D20066A4C65407D50 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17212BB3CB370C143D6A746A /* Server.swift */; };
+ FB5B1A64FD312DEA34986D18 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B1A39C9E9F62098E608BDD49 /* Test.ice */; };
+ FB66E9984020217B0F679E35 /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B60F1EE25531E060808BBCB /* Proxy.swift */; };
+ FB6A8E2B39B6FD615E1DA6A3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ FBC3A27E2D4E4D1C8C60B80E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ FBD579475D7163CD4190719D /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB5F5A5D2EECF428ECB79E52 /* Value.swift */; };
+ FC2854A5C306109E087C1A7C /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 74A58F9341DE159C9D4D4122 /* ClientPrivate.ice */; };
+ FC5005DEFBC68A014AA21FC1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E51D353FDFADE7C2085B196 /* Client.swift */; };
+ FC9BF065D9DC314746CACF17 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87E4EFB3F77857A527AEA983 /* AdminFacetFactory.swift */; };
+ FCBB5AE5657445BB261C20E5 /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7EEA4E6130FAF1695D9ACD8B /* Endpoint.mm */; };
+ FCE18E76C9B1FD9260D499B8 /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51958A1C51031D46A27BF8C2 /* SecureTransportEngine.cpp */; };
+ FD621A7CA41AB3ABAEF04EE9 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D362F8935BDDBB6646F277C8 /* TestI.swift */; };
+ FD621C56B6109A0976F8A0C3 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B69DBDAE6349C71437BBA75F /* TestI.swift */; };
+ FD70D126E698450254568F62 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3EE292939C43A0B9A8B787D7 /* Locator.ice */; };
+ FD763BF5F857B17B4EC806EC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C037DF51255C7CDCD5861B /* TestCommon.framework */; };
+ FDC2110F641306112D62307A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */; };
+ FE03B2C4D64B4A4DB51391A2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A332D585A37435EE78C912CF /* Client.swift */; };
+ FE3F344B8BBD3E1A9D6605F1 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = CE1278569FF626BFD7243082 /* Process.ice */; };
+ FE7C0A200011D66DD9384621 /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B15656C95570248A5598ADE /* Selector.cpp */; };
+ FEA4FC326BFD6B4E302C0F91 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1FE6F0C53A155D2DE7E5858E /* TestAMD.ice */; };
+ FEF90A6CA3A64BD8BA563FE5 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8823D4D696A3C18EC64FB4A /* Client.swift */; };
+ FF04F029F0EDCBB0D8BFBDE9 /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 84AC8D09459962A732B6CC66 /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
+ FF07A50767D711C5B9536CB4 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54A1937AF2CAB630AF745D24 /* Thread.cpp */; };
+ FF208584BD04F50300AF4030 /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12D74FE4EA7C6A660AF74591 /* PropertiesAdminI.swift */; };
+ FFBFF43183133FFEF712F3AF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6374A039ED84F684F9BA9C27 /* Ice.framework */; };
+ FFD5D15AB8A79B1CAA95AEAE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 76440BF69CFBB7BA8615EAAE /* Test.ice */; };
+ FFE7479D32D0178051084B3F /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A30F25D651F58222C077DC00 /* Protocol.cpp */; };
+ FFF2102062D5F0902D31B6FE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D30BA86A3469DB7F345073D /* Foundation.framework */; };
/* End PBXBuildFile section */
/* Begin PBXBuildRule section */
- 021CD5CCFBC260BC090B0831 /* PBXBuildRule */ = {
+ 03AC652771D6454A7E9F8A3F /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/scope/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceSSL/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/IceSSL/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/scope/Test.ice,
+ "$SRCROOT/../slice/IceSSL/ConnectionInfo.ice",
+ "$SRCROOT/../slice/IceSSL/ConnectionInfoF.ice",
+ "$SRCROOT/../slice/IceSSL/EndpointInfo.ice",
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/scope/*.ice";
+ name = "Slice2Cpp Compiler for IceSSL/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/IceSSL/$(INPUT_FILE_BASE).cpp",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/IceSSL/$(INPUT_FILE_BASE).h",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceSSL\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceSSL --output-dir \"$DERIVED_FILE_DIR/IceSSL\" --depend --depend-file \"$DERIVED_FILE_DIR/IceSSL/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceSSL/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceSSL --output-dir \"$DERIVED_FILE_DIR/IceSSL\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceSSL\"\nmv \"$DERIVED_FILE_DIR/IceSSL/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceSSL/$BASENAME.h\"\n";
};
- 02C51F7C9FB6510F67303724 /* PBXBuildRule */ = {
+ 0793D603DF162459022BAC7D /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/properties/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/Ice/*.ice";
fileType = pattern.proxy;
inputFiles = (
+ "$SRCROOT/../slice/Ice/BuiltinSequences.ice",
+ "$SRCROOT/../slice/Ice/Communicator.ice",
+ "$SRCROOT/../slice/Ice/CommunicatorF.ice",
+ "$SRCROOT/../slice/Ice/Connection.ice",
+ "$SRCROOT/../slice/Ice/ConnectionF.ice",
+ "$SRCROOT/../slice/Ice/Current.ice",
+ "$SRCROOT/../slice/Ice/Endpoint.ice",
+ "$SRCROOT/../slice/Ice/EndpointF.ice",
+ "$SRCROOT/../slice/Ice/EndpointTypes.ice",
+ "$SRCROOT/../slice/Ice/FacetMap.ice",
+ "$SRCROOT/../slice/Ice/Identity.ice",
+ "$SRCROOT/../slice/Ice/ImplicitContext.ice",
+ "$SRCROOT/../slice/Ice/ImplicitContextF.ice",
+ "$SRCROOT/../slice/Ice/Instrumentation.ice",
+ "$SRCROOT/../slice/Ice/InstrumentationF.ice",
+ "$SRCROOT/../slice/Ice/LocalException.ice",
+ "$SRCROOT/../slice/Ice/Locator.ice",
+ "$SRCROOT/../slice/Ice/LocatorF.ice",
+ "$SRCROOT/../slice/Ice/Logger.ice",
+ "$SRCROOT/../slice/Ice/LoggerF.ice",
+ "$SRCROOT/../slice/Ice/Metrics.ice",
+ "$SRCROOT/../slice/Ice/ObjectAdapter.ice",
+ "$SRCROOT/../slice/Ice/ObjectAdapterF.ice",
+ "$SRCROOT/../slice/Ice/ObjectFactory.ice",
+ "$SRCROOT/../slice/Ice/Plugin.ice",
+ "$SRCROOT/../slice/Ice/PluginF.ice",
+ "$SRCROOT/../slice/Ice/Process.ice",
+ "$SRCROOT/../slice/Ice/ProcessF.ice",
+ "$SRCROOT/../slice/Ice/Properties.ice",
+ "$SRCROOT/../slice/Ice/PropertiesAdmin.ice",
+ "$SRCROOT/../slice/Ice/PropertiesF.ice",
+ "$SRCROOT/../slice/Ice/RemoteLogger.ice",
+ "$SRCROOT/../slice/Ice/Router.ice",
+ "$SRCROOT/../slice/Ice/RouterF.ice",
+ "$SRCROOT/../slice/Ice/ServantLocator.ice",
+ "$SRCROOT/../slice/Ice/ServantLocatorF.ice",
+ "$SRCROOT/../slice/Ice/SliceChecksumDict.ice",
+ "$SRCROOT/../slice/Ice/ValueFactory.ice",
+ "$SRCROOT/../slice/Ice/Version.ice",
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/properties/*.ice";
+ name = "Slice2Cpp Compiler for Ice/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).cpp",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/Ice/$(INPUT_FILE_BASE).h",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir Ice --output-dir \"$DERIVED_FILE_DIR/Ice\" --depend --depend-file \"$DERIVED_FILE_DIR/Ice/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/Ice/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir Ice --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/Ice\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/Ice/$BASENAME.h\"\n";
};
- 02DB8FF862AA083E6F6CDA68 /* PBXBuildRule */ = {
+ 099110B06AFA934A481499B6 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/IceIAP/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/services/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceIAP/EndpointInfo.ice",
- "$SRCROOT/../slice/IceIAP/ConnectionInfo.ice",
);
isEditable = 1;
- name = "Slice2Cpp Compiler for IceIAP/*.ice";
+ name = "Slice Compiler for test/Ice/services/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceIAP/$(INPUT_FILE_BASE).cpp",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/IceIAP/$(INPUT_FILE_BASE).h",
+ "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceIAP\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceIAP --output-dir \"$DERIVED_FILE_DIR/IceIAP\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceIAP\"\nmv \"$DERIVED_FILE_DIR/IceIAP/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceIAP/$BASENAME.h\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 038551C9ECB7E6358CC2BDE1 /* PBXBuildRule */ = {
+ 0AE3FAF3651F7D971AE56AEF /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/slicing/exceptions/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/slicing/objects/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/slicing/exceptions/ClientPrivate.ice,
- test/Ice/slicing/exceptions/TestAMD.ice,
- test/Ice/slicing/exceptions/ServerPrivateAMD.ice,
- test/Ice/slicing/exceptions/Test.ice,
- test/Ice/slicing/exceptions/ServerPrivate.ice,
+ test/Ice/slicing/objects/ClientPrivate.ice,
+ test/Ice/slicing/objects/ServerPrivate.ice,
+ test/Ice/slicing/objects/ServerPrivateAMD.ice,
+ test/Ice/slicing/objects/Test.ice,
+ test/Ice/slicing/objects/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice";
+ name = "Slice Compiler for test/Ice/slicing/objects/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 03E45BBD0ABB2D9C37CE7E46 /* PBXBuildRule */ = {
+ 10318D80DB8375E92376F13F /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/slice/IceStorm/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/servantLocator/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceStorm/IceStorm.ice",
- "$SRCROOT/../slice/IceStorm/Metrics.ice",
+ test/Ice/servantLocator/Test.ice,
+ test/Ice/servantLocator/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for IceStorm/*.ice";
+ name = "Slice Compiler for test/Ice/servantLocator/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceStorm\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceStorm\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceStorm/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceStorm_$BASENAME.swift\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 05C79E758597B36A64B90D4D /* PBXBuildRule */ = {
+ 1033E35BEFA397B13A015ABE /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/timeout/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/slicing/exceptions/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/timeout/Test.ice,
+ test/Ice/slicing/exceptions/ClientPrivate.ice,
+ test/Ice/slicing/exceptions/ServerPrivate.ice,
+ test/Ice/slicing/exceptions/ServerPrivateAMD.ice,
+ test/Ice/slicing/exceptions/Test.ice,
+ test/Ice/slicing/exceptions/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/timeout/*.ice";
+ name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 099746C16398EC88EA4C7023 /* PBXBuildRule */ = {
+ 109DC8AB2C4982FB0B23E58F /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/hold/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/scope/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/hold/Test.ice,
+ test/Ice/scope/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/hold/*.ice";
+ name = "Slice Compiler for test/Ice/scope/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 0CD9321BB1B119C89D25BFBA /* PBXBuildRule */ = {
+ 12E4E9666D46DD8B798F7577 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/binding/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/proxy/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/binding/Test.ice,
+ test/Ice/proxy/Test.ice,
+ test/Ice/proxy/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/binding/*.ice";
+ name = "Slice Compiler for test/Ice/proxy/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 0DE6CC35913FE85DBCC870A4 /* PBXBuildRule */ = {
+ 131464A08B67FBD8BB055BF6 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/stream/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/binding/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/stream/Test.ice,
+ test/Ice/binding/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/stream/*.ice";
+ name = "Slice Compiler for test/Ice/binding/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 0E0A8B6A213A0CA8CD817635 /* PBXBuildRule */ = {
+ 14AFFF5F55AF63C02D9C8EB6 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/adapterDeactivation/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d";
+ filePatterns = "*/slice/Ice/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/adapterDeactivation/Test.ice,
+ "$SRCROOT/../slice/Ice/BuiltinSequences.ice",
+ "$SRCROOT/../slice/Ice/Communicator.ice",
+ "$SRCROOT/../slice/Ice/CommunicatorF.ice",
+ "$SRCROOT/../slice/Ice/Connection.ice",
+ "$SRCROOT/../slice/Ice/ConnectionF.ice",
+ "$SRCROOT/../slice/Ice/Current.ice",
+ "$SRCROOT/../slice/Ice/Endpoint.ice",
+ "$SRCROOT/../slice/Ice/EndpointF.ice",
+ "$SRCROOT/../slice/Ice/EndpointTypes.ice",
+ "$SRCROOT/../slice/Ice/FacetMap.ice",
+ "$SRCROOT/../slice/Ice/Identity.ice",
+ "$SRCROOT/../slice/Ice/ImplicitContext.ice",
+ "$SRCROOT/../slice/Ice/ImplicitContextF.ice",
+ "$SRCROOT/../slice/Ice/Instrumentation.ice",
+ "$SRCROOT/../slice/Ice/InstrumentationF.ice",
+ "$SRCROOT/../slice/Ice/LocalException.ice",
+ "$SRCROOT/../slice/Ice/Locator.ice",
+ "$SRCROOT/../slice/Ice/LocatorF.ice",
+ "$SRCROOT/../slice/Ice/Logger.ice",
+ "$SRCROOT/../slice/Ice/LoggerF.ice",
+ "$SRCROOT/../slice/Ice/Metrics.ice",
+ "$SRCROOT/../slice/Ice/ObjectAdapter.ice",
+ "$SRCROOT/../slice/Ice/ObjectAdapterF.ice",
+ "$SRCROOT/../slice/Ice/ObjectFactory.ice",
+ "$SRCROOT/../slice/Ice/Plugin.ice",
+ "$SRCROOT/../slice/Ice/PluginF.ice",
+ "$SRCROOT/../slice/Ice/Process.ice",
+ "$SRCROOT/../slice/Ice/ProcessF.ice",
+ "$SRCROOT/../slice/Ice/Properties.ice",
+ "$SRCROOT/../slice/Ice/PropertiesAdmin.ice",
+ "$SRCROOT/../slice/Ice/PropertiesF.ice",
+ "$SRCROOT/../slice/Ice/RemoteLogger.ice",
+ "$SRCROOT/../slice/Ice/Router.ice",
+ "$SRCROOT/../slice/Ice/RouterF.ice",
+ "$SRCROOT/../slice/Ice/ServantLocator.ice",
+ "$SRCROOT/../slice/Ice/ServantLocatorF.ice",
+ "$SRCROOT/../slice/Ice/SliceChecksumDict.ice",
+ "$SRCROOT/../slice/Ice/ValueFactory.ice",
+ "$SRCROOT/../slice/Ice/Version.ice",
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/adapterDeactivation/*.ice";
+ name = "Slice Compiler for Ice/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/Ice_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/Ice_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Ice_$BASENAME.swift\"\n";
};
- 0E5DE469AEAC36B035B54907 /* PBXBuildRule */ = {
+ 14B8CDF4D2B3CFC8DEBE07E2 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/ami/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/operations/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/ami/Test.ice,
+ test/Ice/operations/Test.ice,
+ test/Ice/operations/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/ami/*.ice";
+ name = "Slice Compiler for test/Ice/operations/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 0FC83B938B9740777DECB85A /* PBXBuildRule */ = {
+ 14C17C89586F44BCD1101690 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/ami/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/admin/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/ami/Test.ice,
+ test/Ice/admin/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/ami/*.ice";
+ name = "Slice Compiler for test/Ice/admin/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 13489F4FBEAEC351E63C0BA7 /* PBXBuildRule */ = {
+ 14E26428815567543D2725EC /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/IceSSL/configuration/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/enums/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/IceSSL/configuration/Test.ice,
+ test/Ice/enums/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/IceSSL/configuration/*.ice";
+ name = "Slice Compiler for test/Ice/enums/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 14F971727EB456F357FD8E1F /* PBXBuildRule */ = {
+ 152BE85D7EAACA6BA0C8F946 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/slice/Glacier2/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/interceptor/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/Glacier2/Session.ice",
- "$SRCROOT/../slice/Glacier2/PermissionsVerifier.ice",
- "$SRCROOT/../slice/Glacier2/PermissionsVerifierF.ice",
- "$SRCROOT/../slice/Glacier2/SSLInfo.ice",
- "$SRCROOT/../slice/Glacier2/Router.ice",
- "$SRCROOT/../slice/Glacier2/Metrics.ice",
- "$SRCROOT/../slice/Glacier2/RouterF.ice",
+ test/Ice/interceptor/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for Glacier2/*.ice";
+ name = "Slice Compiler for test/Ice/interceptor/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Glacier2\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Glacier2\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Glacier2/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Glacier2_$BASENAME.swift\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 1A036878896E85863BFB4B31 /* PBXBuildRule */ = {
+ 16BBAE9E1411D45F4A0A87B3 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/interceptor/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/inheritance/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/interceptor/Test.ice,
+ test/Ice/inheritance/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/interceptor/*.ice";
+ name = "Slice Compiler for test/Ice/inheritance/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 1A9226F8D9F868CA1C7A10F6 /* PBXBuildRule */ = {
+ 1732B4D0CCA4449EB5AFF1CA /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/acm/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/slicing/exceptions/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/acm/Test.ice,
+ test/Ice/slicing/exceptions/ClientPrivate.ice,
+ test/Ice/slicing/exceptions/ServerPrivate.ice,
+ test/Ice/slicing/exceptions/ServerPrivateAMD.ice,
+ test/Ice/slicing/exceptions/Test.ice,
+ test/Ice/slicing/exceptions/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/acm/*.ice";
+ name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 1B0689F1D1870DAB544ADFCC /* PBXBuildRule */ = {
+ 1A3343DDC32CBBDE33E6B7E2 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/optional/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/admin/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/optional/TestAMD.ice,
- test/Ice/optional/Test.ice,
+ test/Ice/admin/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/optional/*.ice";
+ name = "Slice Compiler for test/Ice/admin/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 1C3B631DD4399ADDB704685D /* PBXBuildRule */ = {
+ 1B799348F261C3E85197742A /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/timeout/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/adapterDeactivation/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/timeout/Test.ice,
+ test/Ice/adapterDeactivation/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/timeout/*.ice";
+ name = "Slice Compiler for test/Ice/adapterDeactivation/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 210A8303F7AA2749F0674CE3 /* PBXBuildRule */ = {
+ 1C41A001F987C9C9F37BE1D6 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/objects/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/scope/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/objects/Derived.ice,
- test/Ice/objects/Forward.ice,
- test/Ice/objects/Test.ice,
- test/Ice/objects/DerivedEx.ice,
+ test/Ice/scope/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/objects/*.ice";
+ name = "Slice Compiler for test/Ice/scope/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 2AEF880F572A16895B17159C /* PBXBuildRule */ = {
+ 226DA0E31C8283EB24DB4910 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/invoke/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).d";
+ filePatterns = "*/slice/Glacier2/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/invoke/Test.ice,
+ "$SRCROOT/../slice/Glacier2/Metrics.ice",
+ "$SRCROOT/../slice/Glacier2/PermissionsVerifier.ice",
+ "$SRCROOT/../slice/Glacier2/PermissionsVerifierF.ice",
+ "$SRCROOT/../slice/Glacier2/Router.ice",
+ "$SRCROOT/../slice/Glacier2/RouterF.ice",
+ "$SRCROOT/../slice/Glacier2/SSLInfo.ice",
+ "$SRCROOT/../slice/Glacier2/Session.ice",
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/invoke/*.ice";
+ name = "Slice Compiler for Glacier2/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Glacier2\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/Glacier2_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/Glacier2_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Glacier2\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Glacier2/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Glacier2_$BASENAME.swift\"\n";
};
- 2BF27F05A7910E054E69F823 /* PBXBuildRule */ = {
+ 2481F9056554ACE7CB0A6771 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/slice/IceSSL/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).d";
+ filePatterns = "*/slice/IceGrid/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceSSL/EndpointInfo.ice",
- "$SRCROOT/../slice/IceSSL/ConnectionInfoF.ice",
- "$SRCROOT/../slice/IceSSL/ConnectionInfo.ice",
+ "$SRCROOT/../slice/IceGrid/Admin.ice",
+ "$SRCROOT/../slice/IceGrid/Descriptor.ice",
+ "$SRCROOT/../slice/IceGrid/Exception.ice",
+ "$SRCROOT/../slice/IceGrid/FileParser.ice",
+ "$SRCROOT/../slice/IceGrid/PluginFacade.ice",
+ "$SRCROOT/../slice/IceGrid/Registry.ice",
+ "$SRCROOT/../slice/IceGrid/Session.ice",
+ "$SRCROOT/../slice/IceGrid/UserAccountMapper.ice",
);
isEditable = 1;
- name = "Slice Compiler for IceSSL/*.ice";
+ name = "Slice Compiler for IceGrid/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceSSL_$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceSSL\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceSSL\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceSSL/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceSSL_$BASENAME.swift\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceGrid\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceGrid_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceGrid_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceGrid\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceGrid/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceGrid_$BASENAME.swift\"\n";
};
- 2D0C287118D8A5E5F1CE2467 /* PBXBuildRule */ = {
+ 29A2576F2032958E418353AD /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/defaultValue/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/TestCommon/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/defaultValue/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/defaultValue/*.ice";
+ name = "Slice Compiler for test/TestCommon/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 2E838E28FBE382D5060F41CB /* PBXBuildRule */ = {
+ 2A6B2D58E6041C42CBE531C7 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/IceSSL/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceSSL_$(INPUT_FILE_BASE).d";
+ filePatterns = "*/slice/IceSSL/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceSSL/EndpointInfo.ice",
- "$SRCROOT/../slice/IceSSL/ConnectionInfoF.ice",
"$SRCROOT/../slice/IceSSL/ConnectionInfo.ice",
+ "$SRCROOT/../slice/IceSSL/ConnectionInfoF.ice",
+ "$SRCROOT/../slice/IceSSL/EndpointInfo.ice",
);
isEditable = 1;
- name = "Slice2Cpp Compiler for IceSSL/*.ice";
+ name = "Slice Compiler for IceSSL/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceSSL/$(INPUT_FILE_BASE).cpp",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/IceSSL/$(INPUT_FILE_BASE).h",
+ "$(DERIVED_FILE_DIR)/IceSSL_$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceSSL\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceSSL --output-dir \"$DERIVED_FILE_DIR/IceSSL\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceSSL\"\nmv \"$DERIVED_FILE_DIR/IceSSL/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceSSL/$BASENAME.h\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceSSL\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceSSL_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceSSL_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceSSL\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceSSL/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceSSL_$BASENAME.swift\"\n";
};
- 2F315EA0B9B61D960339DF62 /* PBXBuildRule */ = {
+ 2AFDB45DB19ACC9E6067FF68 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/slice/Glacier2/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/IceLocatorDiscovery/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/Glacier2/Session.ice",
- "$SRCROOT/../slice/Glacier2/PermissionsVerifier.ice",
- "$SRCROOT/../slice/Glacier2/PermissionsVerifierF.ice",
- "$SRCROOT/../slice/Glacier2/SSLInfo.ice",
- "$SRCROOT/../slice/Glacier2/Router.ice",
- "$SRCROOT/../slice/Glacier2/Metrics.ice",
- "$SRCROOT/../slice/Glacier2/RouterF.ice",
+ "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice",
);
isEditable = 1;
- name = "Slice Compiler for Glacier2/*.ice";
+ name = "Slice2Cpp Compiler for IceLocatorDiscovery/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).cpp",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/IceLocatorDiscovery/$(INPUT_FILE_BASE).h",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Glacier2\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Glacier2\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Glacier2/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Glacier2_$BASENAME.swift\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceLocatorDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceLocatorDiscovery --output-dir \"$DERIVED_FILE_DIR/IceLocatorDiscovery\" --depend --depend-file \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceLocatorDiscovery --output-dir \"$DERIVED_FILE_DIR/IceLocatorDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery/$BASENAME.h\"\n";
};
- 36404E207BFB716C6E18FC80 /* PBXBuildRule */ = {
+ 2D2524A2569CB54EA7F6DEA9 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/location/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/defaultValue/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/location/Test.ice,
+ test/Ice/defaultValue/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/location/*.ice";
+ name = "Slice Compiler for test/Ice/defaultValue/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 369E1B6E2249ED51B5D682C4 /* PBXBuildRule */ = {
+ 345E6A127471D8865C6FBCCE /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/location/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/properties/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/location/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/location/*.ice";
+ name = "Slice Compiler for test/Ice/properties/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 3B0A378ED7110CC3A7C5C04F /* PBXBuildRule */ = {
+ 37DBFF3976C27E3B2989BBA3 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/acm/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceIAP/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/IceIAP/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/acm/Test.ice,
+ "$SRCROOT/../slice/IceIAP/ConnectionInfo.ice",
+ "$SRCROOT/../slice/IceIAP/EndpointInfo.ice",
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/acm/*.ice";
+ name = "Slice2Cpp Compiler for IceIAP/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/IceIAP/$(INPUT_FILE_BASE).cpp",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/IceIAP/$(INPUT_FILE_BASE).h",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceIAP\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceIAP --output-dir \"$DERIVED_FILE_DIR/IceIAP\" --depend --depend-file \"$DERIVED_FILE_DIR/IceIAP/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceIAP/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceIAP --output-dir \"$DERIVED_FILE_DIR/IceIAP\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceIAP\"\nmv \"$DERIVED_FILE_DIR/IceIAP/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceIAP/$BASENAME.h\"\n";
};
- 3EFAF0BA06BDED8F1C927FF6 /* PBXBuildRule */ = {
+ 3DDCD7DC128FD66AA312AB88 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/slice/IceStorm/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/servantLocator/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceStorm/IceStorm.ice",
- "$SRCROOT/../slice/IceStorm/Metrics.ice",
+ test/Ice/servantLocator/Test.ice,
+ test/Ice/servantLocator/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for IceStorm/*.ice";
+ name = "Slice Compiler for test/Ice/servantLocator/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceStorm\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceStorm\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceStorm/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceStorm_$BASENAME.swift\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 4275EEC75F99CD33A088218E /* PBXBuildRule */ = {
+ 3F5A5B923D717153D031817C /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/Ice/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/proxy/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/Ice/ObjectAdapter.ice",
- "$SRCROOT/../slice/Ice/SliceChecksumDict.ice",
- "$SRCROOT/../slice/Ice/ImplicitContextF.ice",
- "$SRCROOT/../slice/Ice/Logger.ice",
- "$SRCROOT/../slice/Ice/Connection.ice",
- "$SRCROOT/../slice/Ice/RemoteLogger.ice",
- "$SRCROOT/../slice/Ice/PropertiesAdmin.ice",
- "$SRCROOT/../slice/Ice/EndpointF.ice",
- "$SRCROOT/../slice/Ice/ValueFactory.ice",
- "$SRCROOT/../slice/Ice/Communicator.ice",
- "$SRCROOT/../slice/Ice/Plugin.ice",
- "$SRCROOT/../slice/Ice/ObjectAdapterF.ice",
- "$SRCROOT/../slice/Ice/Properties.ice",
- "$SRCROOT/../slice/Ice/ConnectionF.ice",
- "$SRCROOT/../slice/Ice/LocalException.ice",
- "$SRCROOT/../slice/Ice/Locator.ice",
- "$SRCROOT/../slice/Ice/PluginF.ice",
- "$SRCROOT/../slice/Ice/PropertiesF.ice",
- "$SRCROOT/../slice/Ice/BuiltinSequences.ice",
- "$SRCROOT/../slice/Ice/Version.ice",
- "$SRCROOT/../slice/Ice/ServantLocator.ice",
- "$SRCROOT/../slice/Ice/InstrumentationF.ice",
- "$SRCROOT/../slice/Ice/Router.ice",
- "$SRCROOT/../slice/Ice/Endpoint.ice",
- "$SRCROOT/../slice/Ice/Metrics.ice",
- "$SRCROOT/../slice/Ice/ObjectFactory.ice",
- "$SRCROOT/../slice/Ice/Instrumentation.ice",
- "$SRCROOT/../slice/Ice/Identity.ice",
- "$SRCROOT/../slice/Ice/LoggerF.ice",
- "$SRCROOT/../slice/Ice/LocatorF.ice",
- "$SRCROOT/../slice/Ice/EndpointTypes.ice",
- "$SRCROOT/../slice/Ice/CommunicatorF.ice",
- "$SRCROOT/../slice/Ice/Current.ice",
- "$SRCROOT/../slice/Ice/ProcessF.ice",
- "$SRCROOT/../slice/Ice/RouterF.ice",
- "$SRCROOT/../slice/Ice/Process.ice",
- "$SRCROOT/../slice/Ice/ImplicitContext.ice",
- "$SRCROOT/../slice/Ice/FacetMap.ice",
- "$SRCROOT/../slice/Ice/ServantLocatorF.ice",
+ test/Ice/proxy/Test.ice,
+ test/Ice/proxy/TestAMD.ice,
);
isEditable = 1;
- name = "Slice2Cpp Compiler for Ice/*.ice";
+ name = "Slice Compiler for test/Ice/proxy/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).cpp",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/Ice/$(INPUT_FILE_BASE).h",
+ "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir Ice --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/Ice\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/Ice/$BASENAME.h\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 4474DD2E782702B78AC7ABD7 /* PBXBuildRule */ = {
+ 418B250A03318E67044979C2 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/TestCommon/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/inheritance/*.ice";
fileType = pattern.proxy;
inputFiles = (
+ test/Ice/inheritance/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/TestCommon/*.ice";
+ name = "Slice Compiler for test/Ice/inheritance/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 45CFB770757F695D400CF895 /* PBXBuildRule */ = {
+ 44F684DCC6DF53001B8EB546 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/defaultValue/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/Ice/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/defaultValue/Test.ice,
+ "$SRCROOT/../slice/Ice/BuiltinSequences.ice",
+ "$SRCROOT/../slice/Ice/Communicator.ice",
+ "$SRCROOT/../slice/Ice/CommunicatorF.ice",
+ "$SRCROOT/../slice/Ice/Connection.ice",
+ "$SRCROOT/../slice/Ice/ConnectionF.ice",
+ "$SRCROOT/../slice/Ice/Current.ice",
+ "$SRCROOT/../slice/Ice/Endpoint.ice",
+ "$SRCROOT/../slice/Ice/EndpointF.ice",
+ "$SRCROOT/../slice/Ice/EndpointTypes.ice",
+ "$SRCROOT/../slice/Ice/FacetMap.ice",
+ "$SRCROOT/../slice/Ice/Identity.ice",
+ "$SRCROOT/../slice/Ice/ImplicitContext.ice",
+ "$SRCROOT/../slice/Ice/ImplicitContextF.ice",
+ "$SRCROOT/../slice/Ice/Instrumentation.ice",
+ "$SRCROOT/../slice/Ice/InstrumentationF.ice",
+ "$SRCROOT/../slice/Ice/LocalException.ice",
+ "$SRCROOT/../slice/Ice/Locator.ice",
+ "$SRCROOT/../slice/Ice/LocatorF.ice",
+ "$SRCROOT/../slice/Ice/Logger.ice",
+ "$SRCROOT/../slice/Ice/LoggerF.ice",
+ "$SRCROOT/../slice/Ice/Metrics.ice",
+ "$SRCROOT/../slice/Ice/ObjectAdapter.ice",
+ "$SRCROOT/../slice/Ice/ObjectAdapterF.ice",
+ "$SRCROOT/../slice/Ice/ObjectFactory.ice",
+ "$SRCROOT/../slice/Ice/Plugin.ice",
+ "$SRCROOT/../slice/Ice/PluginF.ice",
+ "$SRCROOT/../slice/Ice/Process.ice",
+ "$SRCROOT/../slice/Ice/ProcessF.ice",
+ "$SRCROOT/../slice/Ice/Properties.ice",
+ "$SRCROOT/../slice/Ice/PropertiesAdmin.ice",
+ "$SRCROOT/../slice/Ice/PropertiesF.ice",
+ "$SRCROOT/../slice/Ice/RemoteLogger.ice",
+ "$SRCROOT/../slice/Ice/Router.ice",
+ "$SRCROOT/../slice/Ice/RouterF.ice",
+ "$SRCROOT/../slice/Ice/ServantLocator.ice",
+ "$SRCROOT/../slice/Ice/ServantLocatorF.ice",
+ "$SRCROOT/../slice/Ice/SliceChecksumDict.ice",
+ "$SRCROOT/../slice/Ice/ValueFactory.ice",
+ "$SRCROOT/../slice/Ice/Version.ice",
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/defaultValue/*.ice";
+ name = "Slice2Cpp Compiler for Ice/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).cpp",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/Ice/$(INPUT_FILE_BASE).h",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir Ice --output-dir \"$DERIVED_FILE_DIR/Ice\" --depend --depend-file \"$DERIVED_FILE_DIR/Ice/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/Ice/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir Ice --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/Ice\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/Ice/$BASENAME.h\"\n";
};
- 461CDDFF8F9793F897873074 /* PBXBuildRule */ = {
+ 470FCDFE24EE82E23CAA883B /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/binding/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/location/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/binding/Test.ice,
+ test/Ice/location/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/binding/*.ice";
+ name = "Slice Compiler for test/Ice/location/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 47CC20F12A6D7108515195DF /* PBXBuildRule */ = {
+ 48A7CF0E8AD916BB737444E9 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
filePatterns = "*/test/Ice/exceptions/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/exceptions/TestAMD.ice,
test/Ice/exceptions/Test.ice,
+ test/Ice/exceptions/TestAMD.ice,
);
isEditable = 1;
name = "Slice Compiler for test/Ice/exceptions/*.ice";
@@ -2090,54 +2208,52 @@
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 4A340419F80BE8544B686161 /* PBXBuildRule */ = {
+ 4AE08462FEC8159FB9E5A57C /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/slice/IceGrid/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceIAP_$(INPUT_FILE_BASE).d";
+ filePatterns = "*/slice/IceIAP/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceGrid/UserAccountMapper.ice",
- "$SRCROOT/../slice/IceGrid/FileParser.ice",
- "$SRCROOT/../slice/IceGrid/Registry.ice",
- "$SRCROOT/../slice/IceGrid/Session.ice",
- "$SRCROOT/../slice/IceGrid/PluginFacade.ice",
- "$SRCROOT/../slice/IceGrid/Admin.ice",
- "$SRCROOT/../slice/IceGrid/Descriptor.ice",
- "$SRCROOT/../slice/IceGrid/Exception.ice",
+ "$SRCROOT/../slice/IceIAP/ConnectionInfo.ice",
+ "$SRCROOT/../slice/IceIAP/EndpointInfo.ice",
);
isEditable = 1;
- name = "Slice Compiler for IceGrid/*.ice";
+ name = "Slice Compiler for IceIAP/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/IceIAP_$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceGrid\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceGrid\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceGrid/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceGrid_$BASENAME.swift\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceIAP\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceIAP_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceIAP_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceIAP\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceIAP/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceIAP_$BASENAME.swift\"\n";
};
- 4BF431F87D32385C85252285 /* PBXBuildRule */ = {
+ 4CAC08FD2A9CC4AD650F86E1 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/services/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/acm/*.ice";
fileType = pattern.proxy;
inputFiles = (
+ test/Ice/acm/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/services/*.ice";
+ name = "Slice Compiler for test/Ice/acm/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 4C6230CDA5E03CC06AAA6B7E /* PBXBuildRule */ = {
+ 4E4367CBA28BD557A396B5A9 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
filePatterns = "*/test/Ice/proxy/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/proxy/TestAMD.ice,
test/Ice/proxy/Test.ice,
+ test/Ice/proxy/TestAMD.ice,
);
isEditable = 1;
name = "Slice Compiler for test/Ice/proxy/*.ice";
@@ -2145,290 +2261,303 @@
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 50775B0CC8D87AC342EE2755 /* PBXBuildRule */ = {
+ 4EB11E096E7C3A8970D5C20C /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/slicing/exceptions/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/IceDiscovery/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/slicing/exceptions/ClientPrivate.ice,
- test/Ice/slicing/exceptions/TestAMD.ice,
- test/Ice/slicing/exceptions/ServerPrivateAMD.ice,
- test/Ice/slicing/exceptions/Test.ice,
- test/Ice/slicing/exceptions/ServerPrivate.ice,
+ "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice",
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice";
+ name = "Slice2Cpp Compiler for IceDiscovery/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).cpp",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/IceDiscovery/$(INPUT_FILE_BASE).h",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" --depend --depend-file \"$DERIVED_FILE_DIR/IceDiscovery/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceDiscovery/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery/$BASENAME.h\"\n";
};
- 58E39031EFD5D9B23726D273 /* PBXBuildRule */ = {
+ 4FD02D17D015F3DBE14A9CF8 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/operations/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/scripts/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/operations/TestAMD.ice,
- test/Ice/operations/Test.ice,
+ ../scripts/Controller.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/operations/*.ice";
+ name = "Slice Compiler for test/TestDriver/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 5C17074E36854D493C04AAB5 /* PBXBuildRule */ = {
+ 4FEE1BB6EBCBEF57BD0EB0EA /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/TestCommon/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceSSL_$(INPUT_FILE_BASE).d";
+ filePatterns = "*/slice/IceSSL/*.ice";
fileType = pattern.proxy;
inputFiles = (
+ "$SRCROOT/../slice/IceSSL/ConnectionInfo.ice",
+ "$SRCROOT/../slice/IceSSL/ConnectionInfoF.ice",
+ "$SRCROOT/../slice/IceSSL/EndpointInfo.ice",
);
isEditable = 1;
- name = "Slice Compiler for test/TestCommon/*.ice";
+ name = "Slice Compiler for IceSSL/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/IceSSL_$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceSSL\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceSSL_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceSSL_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceSSL\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceSSL/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceSSL_$BASENAME.swift\"\n";
};
- 5F612E3B30CA12F47FCED6BE /* PBXBuildRule */ = {
+ 5114AA713C1C2FBEDC5D8EB9 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/enums/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/timeout/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/enums/Test.ice,
+ test/Ice/timeout/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/enums/*.ice";
+ name = "Slice Compiler for test/Ice/timeout/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 620459C54BA558D92474DB5D /* PBXBuildRule */ = {
+ 53786ADB873F541B8853B764 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/exceptions/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/IceLocatorDiscovery/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/exceptions/TestAMD.ice,
- test/Ice/exceptions/Test.ice,
+ "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice",
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/exceptions/*.ice";
+ name = "Slice2Cpp Compiler for IceLocatorDiscovery/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).cpp",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/IceLocatorDiscovery/$(INPUT_FILE_BASE).h",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceLocatorDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceLocatorDiscovery --output-dir \"$DERIVED_FILE_DIR/IceLocatorDiscovery\" --depend --depend-file \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceLocatorDiscovery --output-dir \"$DERIVED_FILE_DIR/IceLocatorDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery/$BASENAME.h\"\n";
};
- 65C8AAE3B0397D20BFA50361 /* PBXBuildRule */ = {
+ 53925A79EB627B58CB848E72 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/IceDiscovery/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/properties/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice",
);
isEditable = 1;
- name = "Slice2Cpp Compiler for IceDiscovery/*.ice";
+ name = "Slice Compiler for test/Ice/properties/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).cpp",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/IceDiscovery/$(INPUT_FILE_BASE).h",
+ "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery/$BASENAME.h\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 6908B0E0F7CE739A163602C9 /* PBXBuildRule */ = {
+ 55A39830E710846103CDC97C /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/udp/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/objects/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/udp/Test.ice,
+ test/Ice/objects/Derived.ice,
+ test/Ice/objects/DerivedEx.ice,
+ test/Ice/objects/Forward.ice,
+ test/Ice/objects/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/udp/*.ice";
+ name = "Slice Compiler for test/Ice/objects/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 69892B67DEEACA8164B429F1 /* PBXBuildRule */ = {
+ 5623775083D35C03CD09C85A /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/retry/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/slicing/objects/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/retry/Test.ice,
+ test/Ice/slicing/objects/ClientPrivate.ice,
+ test/Ice/slicing/objects/ServerPrivate.ice,
+ test/Ice/slicing/objects/ServerPrivateAMD.ice,
+ test/Ice/slicing/objects/Test.ice,
+ test/Ice/slicing/objects/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/retry/*.ice";
+ name = "Slice Compiler for test/Ice/slicing/objects/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 6FC78EFF29300701B539B14A /* PBXBuildRule */ = {
+ 587D2F4F24B57B6822290E27 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/IceSSL/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/facets/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceSSL/EndpointInfo.ice",
- "$SRCROOT/../slice/IceSSL/ConnectionInfoF.ice",
- "$SRCROOT/../slice/IceSSL/ConnectionInfo.ice",
+ test/Ice/facets/Test.ice,
);
isEditable = 1;
- name = "Slice2Cpp Compiler for IceSSL/*.ice";
+ name = "Slice Compiler for test/Ice/facets/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceSSL/$(INPUT_FILE_BASE).cpp",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/IceSSL/$(INPUT_FILE_BASE).h",
+ "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceSSL\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceSSL --output-dir \"$DERIVED_FILE_DIR/IceSSL\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceSSL\"\nmv \"$DERIVED_FILE_DIR/IceSSL/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceSSL/$BASENAME.h\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 6FEDE6028003D2FB77F108F0 /* PBXBuildRule */ = {
+ 58FE2196A8780CC1C132AAA6 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/servantLocator/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/timeout/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/servantLocator/TestAMD.ice,
- test/Ice/servantLocator/Test.ice,
+ test/Ice/timeout/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/servantLocator/*.ice";
+ name = "Slice Compiler for test/Ice/timeout/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 73792DE767842AD20B8964BA /* PBXBuildRule */ = {
+ 5F84D16F382531CB448CE271 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/enums/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/retry/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/enums/Test.ice,
+ test/Ice/retry/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/enums/*.ice";
+ name = "Slice Compiler for test/Ice/retry/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 7BA44CD090BA08E3C470AAEC /* PBXBuildRule */ = {
+ 6533EA270C3F1BE9D9555C21 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/scope/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/invoke/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/scope/Test.ice,
+ test/Ice/invoke/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/scope/*.ice";
+ name = "Slice Compiler for test/Ice/invoke/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 8379DF0DCF4587DB4624FF2F /* PBXBuildRule */ = {
+ 655B4455D98032259E864D23 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/optional/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/facets/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/optional/TestAMD.ice,
- test/Ice/optional/Test.ice,
+ test/Ice/facets/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/optional/*.ice";
+ name = "Slice Compiler for test/Ice/facets/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 8A0B4E2CF9F55ABCA73DAA23 /* PBXBuildRule */ = {
+ 684A994B5503846CB120AB56 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/slice/IceGrid/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/slicing/objects/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceGrid/UserAccountMapper.ice",
- "$SRCROOT/../slice/IceGrid/FileParser.ice",
- "$SRCROOT/../slice/IceGrid/Registry.ice",
- "$SRCROOT/../slice/IceGrid/Session.ice",
- "$SRCROOT/../slice/IceGrid/PluginFacade.ice",
- "$SRCROOT/../slice/IceGrid/Admin.ice",
- "$SRCROOT/../slice/IceGrid/Descriptor.ice",
- "$SRCROOT/../slice/IceGrid/Exception.ice",
+ test/Ice/slicing/objects/ClientPrivate.ice,
+ test/Ice/slicing/objects/ServerPrivate.ice,
+ test/Ice/slicing/objects/ServerPrivateAMD.ice,
+ test/Ice/slicing/objects/Test.ice,
+ test/Ice/slicing/objects/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for IceGrid/*.ice";
+ name = "Slice Compiler for test/Ice/slicing/objects/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceGrid\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceGrid\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceGrid/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceGrid_$BASENAME.swift\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 8B593A73C2DA0D095626C7B1 /* PBXBuildRule */ = {
+ 6A831C09D1A1797892A3F734 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/admin/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/stream/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/admin/Test.ice,
+ test/Ice/stream/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/admin/*.ice";
+ name = "Slice Compiler for test/Ice/stream/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 8BA36FFBC139C95B707EA864 /* PBXBuildRule */ = {
+ 6A8A1627DE5EFC860DC01DD2 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/inheritance/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/interceptor/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/inheritance/Test.ice,
+ test/Ice/interceptor/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/inheritance/*.ice";
+ name = "Slice Compiler for test/Ice/interceptor/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 8D5A2F423AE5F9F00062AC62 /* PBXBuildRule */ = {
+ 6C66B41AE5730071C239022A /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
filePatterns = "*/test/Ice/exceptions/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/exceptions/TestAMD.ice,
test/Ice/exceptions/Test.ice,
+ test/Ice/exceptions/TestAMD.ice,
);
isEditable = 1;
name = "Slice Compiler for test/Ice/exceptions/*.ice";
@@ -2436,208 +2565,210 @@
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 8F5151CD28D64D9B8BC95083 /* PBXBuildRule */ = {
+ 6DB2C841D72557BAAB3A619C /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/proxy/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).d";
+ filePatterns = "*/slice/IceStorm/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/proxy/TestAMD.ice,
- test/Ice/proxy/Test.ice,
+ "$SRCROOT/../slice/IceStorm/IceStorm.ice",
+ "$SRCROOT/../slice/IceStorm/Metrics.ice",
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/proxy/*.ice";
+ name = "Slice Compiler for IceStorm/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceStorm\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceStorm_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceStorm_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceStorm\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceStorm/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceStorm_$BASENAME.swift\"\n";
};
- 8FE217434854904B02A1B6A1 /* PBXBuildRule */ = {
+ 6F0FEF3A01107CADC1BE48E5 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/slice/IceIAP/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/IceSSL/configuration/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceIAP/EndpointInfo.ice",
- "$SRCROOT/../slice/IceIAP/ConnectionInfo.ice",
+ test/IceSSL/configuration/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for IceIAP/*.ice";
+ name = "Slice Compiler for test/IceSSL/configuration/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceIAP_$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceIAP\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceIAP\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceIAP/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceIAP_$BASENAME.swift\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 9187C930BDD22FC2E476D78C /* PBXBuildRule */ = {
+ 7312000DAB6DD18FD7D9233E /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/Ice/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/ami/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/Ice/ObjectAdapter.ice",
- "$SRCROOT/../slice/Ice/SliceChecksumDict.ice",
- "$SRCROOT/../slice/Ice/ImplicitContextF.ice",
- "$SRCROOT/../slice/Ice/Logger.ice",
- "$SRCROOT/../slice/Ice/Connection.ice",
- "$SRCROOT/../slice/Ice/RemoteLogger.ice",
- "$SRCROOT/../slice/Ice/PropertiesAdmin.ice",
- "$SRCROOT/../slice/Ice/EndpointF.ice",
- "$SRCROOT/../slice/Ice/ValueFactory.ice",
- "$SRCROOT/../slice/Ice/Communicator.ice",
- "$SRCROOT/../slice/Ice/Plugin.ice",
- "$SRCROOT/../slice/Ice/ObjectAdapterF.ice",
- "$SRCROOT/../slice/Ice/Properties.ice",
- "$SRCROOT/../slice/Ice/ConnectionF.ice",
- "$SRCROOT/../slice/Ice/LocalException.ice",
- "$SRCROOT/../slice/Ice/Locator.ice",
- "$SRCROOT/../slice/Ice/PluginF.ice",
- "$SRCROOT/../slice/Ice/PropertiesF.ice",
- "$SRCROOT/../slice/Ice/BuiltinSequences.ice",
- "$SRCROOT/../slice/Ice/Version.ice",
- "$SRCROOT/../slice/Ice/ServantLocator.ice",
- "$SRCROOT/../slice/Ice/InstrumentationF.ice",
- "$SRCROOT/../slice/Ice/Router.ice",
- "$SRCROOT/../slice/Ice/Endpoint.ice",
- "$SRCROOT/../slice/Ice/Metrics.ice",
- "$SRCROOT/../slice/Ice/ObjectFactory.ice",
- "$SRCROOT/../slice/Ice/Instrumentation.ice",
- "$SRCROOT/../slice/Ice/Identity.ice",
- "$SRCROOT/../slice/Ice/LoggerF.ice",
- "$SRCROOT/../slice/Ice/LocatorF.ice",
- "$SRCROOT/../slice/Ice/EndpointTypes.ice",
- "$SRCROOT/../slice/Ice/CommunicatorF.ice",
- "$SRCROOT/../slice/Ice/Current.ice",
- "$SRCROOT/../slice/Ice/ProcessF.ice",
- "$SRCROOT/../slice/Ice/RouterF.ice",
- "$SRCROOT/../slice/Ice/Process.ice",
- "$SRCROOT/../slice/Ice/ImplicitContext.ice",
- "$SRCROOT/../slice/Ice/FacetMap.ice",
- "$SRCROOT/../slice/Ice/ServantLocatorF.ice",
+ test/Ice/ami/Test.ice,
);
isEditable = 1;
- name = "Slice2Cpp Compiler for Ice/*.ice";
+ name = "Slice Compiler for test/Ice/ami/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).cpp",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/Ice/$(INPUT_FILE_BASE).h",
+ "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir Ice --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/Ice\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/Ice/$BASENAME.h\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 928CC1102F2B15AB03C23964 /* PBXBuildRule */ = {
+ 75E1EFF2DC465F07A8B3C512 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/slicing/exceptions/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/retry/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/slicing/exceptions/ClientPrivate.ice,
- test/Ice/slicing/exceptions/TestAMD.ice,
- test/Ice/slicing/exceptions/ServerPrivateAMD.ice,
- test/Ice/slicing/exceptions/Test.ice,
- test/Ice/slicing/exceptions/ServerPrivate.ice,
+ test/Ice/retry/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice";
+ name = "Slice Compiler for test/Ice/retry/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 95482D63B61AD6BFB2D99120 /* PBXBuildRule */ = {
+ 7645087BBBB8D210B741CE75 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/scripts/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/hold/*.ice";
fileType = pattern.proxy;
inputFiles = (
- ../scripts/Controller.ice,
+ test/Ice/hold/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/TestDriver/*.ice";
+ name = "Slice Compiler for test/Ice/hold/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 96EB29E7D3715A577603A0F9 /* PBXBuildRule */ = {
+ 7AEA1178810B3CFC3CB5905C /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/IceLocatorDiscovery/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d";
+ filePatterns = "*/slice/Ice/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice",
+ "$SRCROOT/../slice/Ice/BuiltinSequences.ice",
+ "$SRCROOT/../slice/Ice/Communicator.ice",
+ "$SRCROOT/../slice/Ice/CommunicatorF.ice",
+ "$SRCROOT/../slice/Ice/Connection.ice",
+ "$SRCROOT/../slice/Ice/ConnectionF.ice",
+ "$SRCROOT/../slice/Ice/Current.ice",
+ "$SRCROOT/../slice/Ice/Endpoint.ice",
+ "$SRCROOT/../slice/Ice/EndpointF.ice",
+ "$SRCROOT/../slice/Ice/EndpointTypes.ice",
+ "$SRCROOT/../slice/Ice/FacetMap.ice",
+ "$SRCROOT/../slice/Ice/Identity.ice",
+ "$SRCROOT/../slice/Ice/ImplicitContext.ice",
+ "$SRCROOT/../slice/Ice/ImplicitContextF.ice",
+ "$SRCROOT/../slice/Ice/Instrumentation.ice",
+ "$SRCROOT/../slice/Ice/InstrumentationF.ice",
+ "$SRCROOT/../slice/Ice/LocalException.ice",
+ "$SRCROOT/../slice/Ice/Locator.ice",
+ "$SRCROOT/../slice/Ice/LocatorF.ice",
+ "$SRCROOT/../slice/Ice/Logger.ice",
+ "$SRCROOT/../slice/Ice/LoggerF.ice",
+ "$SRCROOT/../slice/Ice/Metrics.ice",
+ "$SRCROOT/../slice/Ice/ObjectAdapter.ice",
+ "$SRCROOT/../slice/Ice/ObjectAdapterF.ice",
+ "$SRCROOT/../slice/Ice/ObjectFactory.ice",
+ "$SRCROOT/../slice/Ice/Plugin.ice",
+ "$SRCROOT/../slice/Ice/PluginF.ice",
+ "$SRCROOT/../slice/Ice/Process.ice",
+ "$SRCROOT/../slice/Ice/ProcessF.ice",
+ "$SRCROOT/../slice/Ice/Properties.ice",
+ "$SRCROOT/../slice/Ice/PropertiesAdmin.ice",
+ "$SRCROOT/../slice/Ice/PropertiesF.ice",
+ "$SRCROOT/../slice/Ice/RemoteLogger.ice",
+ "$SRCROOT/../slice/Ice/Router.ice",
+ "$SRCROOT/../slice/Ice/RouterF.ice",
+ "$SRCROOT/../slice/Ice/ServantLocator.ice",
+ "$SRCROOT/../slice/Ice/ServantLocatorF.ice",
+ "$SRCROOT/../slice/Ice/SliceChecksumDict.ice",
+ "$SRCROOT/../slice/Ice/ValueFactory.ice",
+ "$SRCROOT/../slice/Ice/Version.ice",
);
isEditable = 1;
- name = "Slice2Cpp Compiler for IceLocatorDiscovery/*.ice";
+ name = "Slice Compiler for Ice/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).cpp",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/IceLocatorDiscovery/$(INPUT_FILE_BASE).h",
+ "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceLocatorDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceLocatorDiscovery --output-dir \"$DERIVED_FILE_DIR/IceLocatorDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery/$BASENAME.h\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/Ice_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/Ice_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Ice_$BASENAME.swift\"\n";
};
- 9701593F1430A13D07B31E77 /* PBXBuildRule */ = {
+ 7B930E120F9057CFA734EDC7 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/defaultServant/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/location/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/defaultServant/Test.ice,
+ test/Ice/location/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/defaultServant/*.ice";
+ name = "Slice Compiler for test/Ice/location/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 97257A448C0C06972EB94EB3 /* PBXBuildRule */ = {
+ 7BE96A3059EBEAACB97F4C75 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/slice/IceSSL/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/ami/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceSSL/EndpointInfo.ice",
- "$SRCROOT/../slice/IceSSL/ConnectionInfoF.ice",
- "$SRCROOT/../slice/IceSSL/ConnectionInfo.ice",
+ test/Ice/ami/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for IceSSL/*.ice";
+ name = "Slice Compiler for test/Ice/ami/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceSSL_$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceSSL\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceSSL\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceSSL/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceSSL_$BASENAME.swift\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 99952175DB791E05FC46AC6A /* PBXBuildRule */ = {
+ 7D58713CDABB112E6612E4E4 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/defaultServant/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/servantLocator/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/defaultServant/Test.ice,
+ test/Ice/servantLocator/Test.ice,
+ test/Ice/servantLocator/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/defaultServant/*.ice";
+ name = "Slice Compiler for test/Ice/servantLocator/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 9AFBE16CBF732E355FC9CB37 /* PBXBuildRule */ = {
+ 7D63AC9329A68D018436128E /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
filePatterns = "*/test/Ice/operations/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/operations/TestAMD.ice,
test/Ice/operations/Test.ice,
+ test/Ice/operations/TestAMD.ice,
);
isEditable = 1;
name = "Slice Compiler for test/Ice/operations/*.ice";
@@ -2645,251 +2776,222 @@
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- 9EE5A5689AD04ABDA954B109 /* PBXBuildRule */ = {
+ 7E536F915E7439F0ACE31E4B /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/admin/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/stream/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/admin/Test.ice,
+ test/Ice/stream/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/admin/*.ice";
+ name = "Slice Compiler for test/Ice/stream/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- A5E7AED8B88E3D4D058AE599 /* PBXBuildRule */ = {
+ 7EA695440CDA4FF79880274F /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/optional/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/acm/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/optional/TestAMD.ice,
- test/Ice/optional/Test.ice,
+ test/Ice/acm/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/optional/*.ice";
+ name = "Slice Compiler for test/Ice/acm/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- A7330F7E01C43FDDC7EC97A9 /* PBXBuildRule */ = {
+ 8014B6993B63A3F3E19B2F76 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/retry/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/defaultServant/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/retry/Test.ice,
+ test/Ice/defaultServant/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/retry/*.ice";
+ name = "Slice Compiler for test/Ice/defaultServant/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- AB0A725794A172B0D80C4CB5 /* PBXBuildRule */ = {
+ 8046804BB4C5FC610BC928C3 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/servantLocator/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/defaultServant/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/servantLocator/TestAMD.ice,
- test/Ice/servantLocator/Test.ice,
+ test/Ice/defaultServant/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/servantLocator/*.ice";
+ name = "Slice Compiler for test/Ice/defaultServant/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- AB1CA692BD4582B416712B78 /* PBXBuildRule */ = {
+ 828E809007B8A2AC553EFE20 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/objects/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/scripts/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/objects/Derived.ice,
- test/Ice/objects/Forward.ice,
- test/Ice/objects/Test.ice,
- test/Ice/objects/DerivedEx.ice,
+ ../scripts/Controller.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/objects/*.ice";
+ name = "Slice Compiler for test/TestDriver/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- AF24E936EA9B5A6E5D3979B3 /* PBXBuildRule */ = {
+ 84FB96730E4A7AB92DC16BC4 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/adapterDeactivation/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Slice/escape/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/adapterDeactivation/Test.ice,
+ test/Slice/escape/Clash.ice,
+ test/Slice/escape/Key.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/adapterDeactivation/*.ice";
+ name = "Slice Compiler for test/Slice/escape/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- B11C84AF19601BAFD33C03AF /* PBXBuildRule */ = {
+ 8CD53738EFA944C839F43A5D /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/slicing/exceptions/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/proxy/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/slicing/exceptions/ClientPrivate.ice,
- test/Ice/slicing/exceptions/TestAMD.ice,
- test/Ice/slicing/exceptions/ServerPrivateAMD.ice,
- test/Ice/slicing/exceptions/Test.ice,
- test/Ice/slicing/exceptions/ServerPrivate.ice,
+ test/Ice/proxy/Test.ice,
+ test/Ice/proxy/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice";
+ name = "Slice Compiler for test/Ice/proxy/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- B350F72476838E6F6DDC551A /* PBXBuildRule */ = {
+ 8E1B4C745D38544CACDDA8F3 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/IceSSL/configuration/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/info/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/IceSSL/configuration/Test.ice,
+ test/Ice/info/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/IceSSL/configuration/*.ice";
+ name = "Slice Compiler for test/Ice/info/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- B830D6608623871E04F36273 /* PBXBuildRule */ = {
+ 8ECA92289E2F462A4B6CE0AC /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/info/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/invoke/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/info/Test.ice,
+ test/Ice/invoke/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/info/*.ice";
+ name = "Slice Compiler for test/Ice/invoke/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- B86FDD52F325F94B78865C5A /* PBXBuildRule */ = {
+ 950BF003DADBC930CFEBAEDB /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/IceLocatorDiscovery/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/exceptions/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice",
+ test/Ice/exceptions/Test.ice,
+ test/Ice/exceptions/TestAMD.ice,
);
isEditable = 1;
- name = "Slice2Cpp Compiler for IceLocatorDiscovery/*.ice";
+ name = "Slice Compiler for test/Ice/exceptions/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).cpp",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/IceLocatorDiscovery/$(INPUT_FILE_BASE).h",
+ "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceLocatorDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceLocatorDiscovery --output-dir \"$DERIVED_FILE_DIR/IceLocatorDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery/$BASENAME.h\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- C0E786BE016DC950F89F3D68 /* PBXBuildRule */ = {
+ 9F442D313A7AA93144030527 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/interceptor/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/info/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/interceptor/Test.ice,
+ test/Ice/info/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/interceptor/*.ice";
+ name = "Slice Compiler for test/Ice/info/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- C5459FABB45D1478606602B9 /* PBXBuildRule */ = {
+ A19F3F920CD412E9063C6631 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/slice/Ice/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceSSL/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/IceSSL/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/Ice/ObjectAdapter.ice",
- "$SRCROOT/../slice/Ice/SliceChecksumDict.ice",
- "$SRCROOT/../slice/Ice/ImplicitContextF.ice",
- "$SRCROOT/../slice/Ice/Logger.ice",
- "$SRCROOT/../slice/Ice/Connection.ice",
- "$SRCROOT/../slice/Ice/RemoteLogger.ice",
- "$SRCROOT/../slice/Ice/PropertiesAdmin.ice",
- "$SRCROOT/../slice/Ice/EndpointF.ice",
- "$SRCROOT/../slice/Ice/ValueFactory.ice",
- "$SRCROOT/../slice/Ice/Communicator.ice",
- "$SRCROOT/../slice/Ice/Plugin.ice",
- "$SRCROOT/../slice/Ice/ObjectAdapterF.ice",
- "$SRCROOT/../slice/Ice/Properties.ice",
- "$SRCROOT/../slice/Ice/ConnectionF.ice",
- "$SRCROOT/../slice/Ice/LocalException.ice",
- "$SRCROOT/../slice/Ice/Locator.ice",
- "$SRCROOT/../slice/Ice/PluginF.ice",
- "$SRCROOT/../slice/Ice/PropertiesF.ice",
- "$SRCROOT/../slice/Ice/BuiltinSequences.ice",
- "$SRCROOT/../slice/Ice/Version.ice",
- "$SRCROOT/../slice/Ice/ServantLocator.ice",
- "$SRCROOT/../slice/Ice/InstrumentationF.ice",
- "$SRCROOT/../slice/Ice/Router.ice",
- "$SRCROOT/../slice/Ice/Endpoint.ice",
- "$SRCROOT/../slice/Ice/Metrics.ice",
- "$SRCROOT/../slice/Ice/ObjectFactory.ice",
- "$SRCROOT/../slice/Ice/Instrumentation.ice",
- "$SRCROOT/../slice/Ice/Identity.ice",
- "$SRCROOT/../slice/Ice/LoggerF.ice",
- "$SRCROOT/../slice/Ice/LocatorF.ice",
- "$SRCROOT/../slice/Ice/EndpointTypes.ice",
- "$SRCROOT/../slice/Ice/CommunicatorF.ice",
- "$SRCROOT/../slice/Ice/Current.ice",
- "$SRCROOT/../slice/Ice/ProcessF.ice",
- "$SRCROOT/../slice/Ice/RouterF.ice",
- "$SRCROOT/../slice/Ice/Process.ice",
- "$SRCROOT/../slice/Ice/ImplicitContext.ice",
- "$SRCROOT/../slice/Ice/FacetMap.ice",
- "$SRCROOT/../slice/Ice/ServantLocatorF.ice",
+ "$SRCROOT/../slice/IceSSL/ConnectionInfo.ice",
+ "$SRCROOT/../slice/IceSSL/ConnectionInfoF.ice",
+ "$SRCROOT/../slice/IceSSL/EndpointInfo.ice",
);
isEditable = 1;
- name = "Slice Compiler for Ice/*.ice";
+ name = "Slice2Cpp Compiler for IceSSL/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/IceSSL/$(INPUT_FILE_BASE).cpp",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/IceSSL/$(INPUT_FILE_BASE).h",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Ice_$BASENAME.swift\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceSSL\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceSSL --output-dir \"$DERIVED_FILE_DIR/IceSSL\" --depend --depend-file \"$DERIVED_FILE_DIR/IceSSL/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceSSL/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceSSL --output-dir \"$DERIVED_FILE_DIR/IceSSL\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceSSL\"\nmv \"$DERIVED_FILE_DIR/IceSSL/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceSSL/$BASENAME.h\"\n";
};
- C80D9A1ED9AD9446DFCF122C /* PBXBuildRule */ = {
+ A48E9626497212F402FCBA92 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
filePatterns = "*/test/Ice/udp/*.ice";
fileType = pattern.proxy;
inputFiles = (
@@ -2901,1266 +3003,1266 @@
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- CA4D98746A747C9E7AD097A9 /* PBXBuildRule */ = {
+ A7E377C918B1DB9D6E6489D5 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/slicing/objects/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).d";
+ filePatterns = "*/slice/IceStorm/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/slicing/objects/ClientPrivate.ice,
- test/Ice/slicing/objects/TestAMD.ice,
- test/Ice/slicing/objects/ServerPrivateAMD.ice,
- test/Ice/slicing/objects/Test.ice,
- test/Ice/slicing/objects/ServerPrivate.ice,
+ "$SRCROOT/../slice/IceStorm/IceStorm.ice",
+ "$SRCROOT/../slice/IceStorm/Metrics.ice",
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/slicing/objects/*.ice";
+ name = "Slice Compiler for IceStorm/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceStorm\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceStorm_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceStorm_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceStorm\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceStorm/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceStorm_$BASENAME.swift\"\n";
};
- CB9688869B3E5369FCDCA3A4 /* PBXBuildRule */ = {
+ AA7F3693220F7502E60334F6 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/info/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/enums/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/info/Test.ice,
+ test/Ice/enums/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/info/*.ice";
+ name = "Slice Compiler for test/Ice/enums/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- CBF341A9DF67B3CA074250DC /* PBXBuildRule */ = {
+ ADE40EA47B1818FD6D528159 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/hold/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/exceptions/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/hold/Test.ice,
+ test/Ice/exceptions/Test.ice,
+ test/Ice/exceptions/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/hold/*.ice";
+ name = "Slice Compiler for test/Ice/exceptions/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- D0ED84E8E3327D4360B50DF8 /* PBXBuildRule */ = {
+ AEDE8C486FA7ED6DF9D9AC0C /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/slicing/objects/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/TestCommon/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/slicing/objects/ClientPrivate.ice,
- test/Ice/slicing/objects/TestAMD.ice,
- test/Ice/slicing/objects/ServerPrivateAMD.ice,
- test/Ice/slicing/objects/Test.ice,
- test/Ice/slicing/objects/ServerPrivate.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/slicing/objects/*.ice";
+ name = "Slice Compiler for test/TestCommon/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- D2D787B575C1BC9B5F278337 /* PBXBuildRule */ = {
+ AFF6B340A54426F2C48429E6 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/facets/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/slicing/exceptions/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/facets/Test.ice,
+ test/Ice/slicing/exceptions/ClientPrivate.ice,
+ test/Ice/slicing/exceptions/ServerPrivate.ice,
+ test/Ice/slicing/exceptions/ServerPrivateAMD.ice,
+ test/Ice/slicing/exceptions/Test.ice,
+ test/Ice/slicing/exceptions/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/facets/*.ice";
+ name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- D3488CF345BDE58B5550D1B6 /* PBXBuildRule */ = {
+ BDF9B57ED55153A6116D68DF /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/optional/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/operations/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/optional/TestAMD.ice,
- test/Ice/optional/Test.ice,
+ test/Ice/operations/Test.ice,
+ test/Ice/operations/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/optional/*.ice";
+ name = "Slice Compiler for test/Ice/operations/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- D4FE20BF437FA0B2C6ECDAC4 /* PBXBuildRule */ = {
+ BE8049C4EFA7F45D4EDFCCA9 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/stream/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/services/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/stream/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/stream/*.ice";
+ name = "Slice Compiler for test/Ice/services/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- D5730A9573FFE1C95A85A99C /* PBXBuildRule */ = {
+ BF7B4C57E2DDD9B077DF3FCF /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/slicing/objects/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/servantLocator/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/slicing/objects/ClientPrivate.ice,
- test/Ice/slicing/objects/TestAMD.ice,
- test/Ice/slicing/objects/ServerPrivateAMD.ice,
- test/Ice/slicing/objects/Test.ice,
- test/Ice/slicing/objects/ServerPrivate.ice,
+ test/Ice/servantLocator/Test.ice,
+ test/Ice/servantLocator/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/slicing/objects/*.ice";
+ name = "Slice Compiler for test/Ice/servantLocator/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- DDF4876FEAB9724BB5B9E7BA /* PBXBuildRule */ = {
+ C3201A2DE59CB50AF9F0ABCE /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/proxy/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/binding/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/proxy/TestAMD.ice,
- test/Ice/proxy/Test.ice,
+ test/Ice/binding/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/proxy/*.ice";
+ name = "Slice Compiler for test/Ice/binding/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- E0C276430979A9D36E7B9A4C /* PBXBuildRule */ = {
+ C5DD475406DFE059F294DC30 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/facets/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Slice/escape/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/facets/Test.ice,
+ test/Slice/escape/Clash.ice,
+ test/Slice/escape/Key.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/facets/*.ice";
+ name = "Slice Compiler for test/Slice/escape/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- E41F751E0A2E895E8F70AD21 /* PBXBuildRule */ = {
+ C9E254EE9AEB2984EDF5727B /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/servantLocator/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/optional/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/servantLocator/TestAMD.ice,
- test/Ice/servantLocator/Test.ice,
+ test/Ice/optional/Test.ice,
+ test/Ice/optional/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/servantLocator/*.ice";
+ name = "Slice Compiler for test/Ice/optional/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- E453D0CDCEE769E08A60CDE0 /* PBXBuildRule */ = {
+ CFDDFB44B3E9C95882C9CF88 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/slice/Ice/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).d";
+ filePatterns = "*/slice/Glacier2/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/Ice/ObjectAdapter.ice",
- "$SRCROOT/../slice/Ice/SliceChecksumDict.ice",
- "$SRCROOT/../slice/Ice/ImplicitContextF.ice",
- "$SRCROOT/../slice/Ice/Logger.ice",
- "$SRCROOT/../slice/Ice/Connection.ice",
- "$SRCROOT/../slice/Ice/RemoteLogger.ice",
- "$SRCROOT/../slice/Ice/PropertiesAdmin.ice",
- "$SRCROOT/../slice/Ice/EndpointF.ice",
- "$SRCROOT/../slice/Ice/ValueFactory.ice",
- "$SRCROOT/../slice/Ice/Communicator.ice",
- "$SRCROOT/../slice/Ice/Plugin.ice",
- "$SRCROOT/../slice/Ice/ObjectAdapterF.ice",
- "$SRCROOT/../slice/Ice/Properties.ice",
- "$SRCROOT/../slice/Ice/ConnectionF.ice",
- "$SRCROOT/../slice/Ice/LocalException.ice",
- "$SRCROOT/../slice/Ice/Locator.ice",
- "$SRCROOT/../slice/Ice/PluginF.ice",
- "$SRCROOT/../slice/Ice/PropertiesF.ice",
- "$SRCROOT/../slice/Ice/BuiltinSequences.ice",
- "$SRCROOT/../slice/Ice/Version.ice",
- "$SRCROOT/../slice/Ice/ServantLocator.ice",
- "$SRCROOT/../slice/Ice/InstrumentationF.ice",
- "$SRCROOT/../slice/Ice/Router.ice",
- "$SRCROOT/../slice/Ice/Endpoint.ice",
- "$SRCROOT/../slice/Ice/Metrics.ice",
- "$SRCROOT/../slice/Ice/ObjectFactory.ice",
- "$SRCROOT/../slice/Ice/Instrumentation.ice",
- "$SRCROOT/../slice/Ice/Identity.ice",
- "$SRCROOT/../slice/Ice/LoggerF.ice",
- "$SRCROOT/../slice/Ice/LocatorF.ice",
- "$SRCROOT/../slice/Ice/EndpointTypes.ice",
- "$SRCROOT/../slice/Ice/CommunicatorF.ice",
- "$SRCROOT/../slice/Ice/Current.ice",
- "$SRCROOT/../slice/Ice/ProcessF.ice",
- "$SRCROOT/../slice/Ice/RouterF.ice",
- "$SRCROOT/../slice/Ice/Process.ice",
- "$SRCROOT/../slice/Ice/ImplicitContext.ice",
- "$SRCROOT/../slice/Ice/FacetMap.ice",
- "$SRCROOT/../slice/Ice/ServantLocatorF.ice",
+ "$SRCROOT/../slice/Glacier2/Metrics.ice",
+ "$SRCROOT/../slice/Glacier2/PermissionsVerifier.ice",
+ "$SRCROOT/../slice/Glacier2/PermissionsVerifierF.ice",
+ "$SRCROOT/../slice/Glacier2/Router.ice",
+ "$SRCROOT/../slice/Glacier2/RouterF.ice",
+ "$SRCROOT/../slice/Glacier2/SSLInfo.ice",
+ "$SRCROOT/../slice/Glacier2/Session.ice",
);
isEditable = 1;
- name = "Slice Compiler for Ice/*.ice";
+ name = "Slice Compiler for Glacier2/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Ice_$BASENAME.swift\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Glacier2\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/Glacier2_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/Glacier2_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Glacier2\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Glacier2/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Glacier2_$BASENAME.swift\"\n";
};
- E4F90A82607EA0DAC54ACB6E /* PBXBuildRule */ = {
+ D3C9EBA2CDC320847E1BA8D7 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/IceDiscovery/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).d";
+ filePatterns = "*/slice/IceGrid/*.ice";
fileType = pattern.proxy;
inputFiles = (
- "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice",
+ "$SRCROOT/../slice/IceGrid/Admin.ice",
+ "$SRCROOT/../slice/IceGrid/Descriptor.ice",
+ "$SRCROOT/../slice/IceGrid/Exception.ice",
+ "$SRCROOT/../slice/IceGrid/FileParser.ice",
+ "$SRCROOT/../slice/IceGrid/PluginFacade.ice",
+ "$SRCROOT/../slice/IceGrid/Registry.ice",
+ "$SRCROOT/../slice/IceGrid/Session.ice",
+ "$SRCROOT/../slice/IceGrid/UserAccountMapper.ice",
);
isEditable = 1;
- name = "Slice2Cpp Compiler for IceDiscovery/*.ice";
+ name = "Slice Compiler for IceGrid/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).cpp",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/IceDiscovery/$(INPUT_FILE_BASE).h",
+ "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery/$BASENAME.h\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceGrid\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceGrid_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceGrid_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceGrid\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceGrid/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceGrid_$BASENAME.swift\"\n";
};
- ED402D1AB4208AAFF5FD4E2F /* PBXBuildRule */ = {
+ DBBB69CBD85F54EB83928867 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/operations/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/udp/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/operations/TestAMD.ice,
- test/Ice/operations/Test.ice,
+ test/Ice/udp/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/operations/*.ice";
+ name = "Slice Compiler for test/Ice/udp/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- F05F476BF078B9E3197C75E7 /* PBXBuildRule */ = {
+ DDFBFB634CB064A39D01F83B /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/scripts/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/hold/*.ice";
fileType = pattern.proxy;
inputFiles = (
- ../scripts/Controller.ice,
+ test/Ice/hold/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/TestDriver/*.ice";
+ name = "Slice Compiler for test/Ice/hold/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- F163C99B764CE5398D82F7D9 /* PBXBuildRule */ = {
+ DFD83888019F7A81E0B12BB4 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/proxy/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/optional/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/proxy/TestAMD.ice,
- test/Ice/proxy/Test.ice,
+ test/Ice/optional/Test.ice,
+ test/Ice/optional/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/proxy/*.ice";
+ name = "Slice Compiler for test/Ice/optional/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- F240F7B1B2078524D9E5C013 /* PBXBuildRule */ = {
+ E38A933BEE8E9CEDE73793D8 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/properties/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/slicing/objects/*.ice";
fileType = pattern.proxy;
inputFiles = (
+ test/Ice/slicing/objects/ClientPrivate.ice,
+ test/Ice/slicing/objects/ServerPrivate.ice,
+ test/Ice/slicing/objects/ServerPrivateAMD.ice,
+ test/Ice/slicing/objects/Test.ice,
+ test/Ice/slicing/objects/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/properties/*.ice";
+ name = "Slice Compiler for test/Ice/slicing/objects/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- F325A1B9F3A8578944FCDB38 /* PBXBuildRule */ = {
+ E914077A9BD68E2A51033078 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/services/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/optional/*.ice";
fileType = pattern.proxy;
inputFiles = (
+ test/Ice/optional/Test.ice,
+ test/Ice/optional/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/services/*.ice";
+ name = "Slice Compiler for test/Ice/optional/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- F53AADACB7A733352918CA94 /* PBXBuildRule */ = {
+ EF3119F06227FEA86582E2B5 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Slice/escape/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/adapterDeactivation/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Slice/escape/Key.ice,
- test/Slice/escape/Clash.ice,
+ test/Ice/adapterDeactivation/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Slice/escape/*.ice";
+ name = "Slice Compiler for test/Ice/adapterDeactivation/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- F616305128F06B33044C8483 /* PBXBuildRule */ = {
+ F2260A7B9F04A685D2051DE3 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/operations/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/optional/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/operations/TestAMD.ice,
- test/Ice/operations/Test.ice,
+ test/Ice/optional/Test.ice,
+ test/Ice/optional/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/operations/*.ice";
+ name = "Slice Compiler for test/Ice/optional/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- F7DCEBD108D164725F31A068 /* PBXBuildRule */ = {
+ F250701A7B28E60F90C0934A /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/invoke/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/IceDiscovery/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/invoke/Test.ice,
+ "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice",
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/invoke/*.ice";
+ name = "Slice2Cpp Compiler for IceDiscovery/*.ice";
outputFiles = (
- "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
+ "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).cpp",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/IceDiscovery/$(INPUT_FILE_BASE).h",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/cpp/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f /usr/local/opt/slice2swift/libexec/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/opt/slice2swift/libexec/bin/slice2cpp\nelif [ -f /usr/local/bin/slice2cpp ]; then\n SLICE2CPP=/usr/local/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" --depend --depend-file \"$DERIVED_FILE_DIR/IceDiscovery/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceDiscovery/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery/$BASENAME.h\"\n";
};
- FC524E0725C8085B65060F13 /* PBXBuildRule */ = {
+ F34B8EA07F270BC53AA1121A /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/inheritance/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/defaultValue/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/inheritance/Test.ice,
+ test/Ice/defaultValue/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/inheritance/*.ice";
+ name = "Slice Compiler for test/Ice/defaultValue/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- FDB19A19103F2BA9983BB240 /* PBXBuildRule */ = {
+ F3F5D5290AC3A3FA96263A28 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/servantLocator/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/operations/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/servantLocator/TestAMD.ice,
- test/Ice/servantLocator/Test.ice,
+ test/Ice/operations/Test.ice,
+ test/Ice/operations/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/servantLocator/*.ice";
+ name = "Slice Compiler for test/Ice/operations/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- FE3714B84FE483BB227055F8 /* PBXBuildRule */ = {
+ F483673324C543869947A837 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/slicing/objects/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/slicing/exceptions/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/slicing/objects/ClientPrivate.ice,
- test/Ice/slicing/objects/TestAMD.ice,
- test/Ice/slicing/objects/ServerPrivateAMD.ice,
- test/Ice/slicing/objects/Test.ice,
- test/Ice/slicing/objects/ServerPrivate.ice,
+ test/Ice/slicing/exceptions/ClientPrivate.ice,
+ test/Ice/slicing/exceptions/ServerPrivate.ice,
+ test/Ice/slicing/exceptions/ServerPrivateAMD.ice,
+ test/Ice/slicing/exceptions/Test.ice,
+ test/Ice/slicing/exceptions/TestAMD.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/slicing/objects/*.ice";
+ name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- FF09340DCCCDCC76624437F5 /* PBXBuildRule */ = {
+ FAEF8F4AEF26C83D11BC6C31 /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Ice/exceptions/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/IceSSL/configuration/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Ice/exceptions/TestAMD.ice,
- test/Ice/exceptions/Test.ice,
+ test/IceSSL/configuration/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Ice/exceptions/*.ice";
+ name = "Slice Compiler for test/IceSSL/configuration/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
- FF2BB6DD9BE033784754D8FB /* PBXBuildRule */ = {
+ FB191F47675FE5CED7DD9EBB /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
- filePatterns = "*/test/Slice/escape/*.ice";
+ dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d";
+ filePatterns = "*/test/Ice/objects/*.ice";
fileType = pattern.proxy;
inputFiles = (
- test/Slice/escape/Key.ice,
- test/Slice/escape/Clash.ice,
+ test/Ice/objects/Derived.ice,
+ test/Ice/objects/DerivedEx.ice,
+ test/Ice/objects/Forward.ice,
+ test/Ice/objects/Test.ice,
);
isEditable = 1;
- name = "Slice Compiler for test/Slice/escape/*.ice";
+ name = "Slice Compiler for test/Ice/objects/*.ice";
outputFiles = (
"$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift",
);
runOncePerArchitecture = 0;
- script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
+ script = "if [ -f \"$ICE_HOME/cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/cpp/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f /usr/local/bin/slice2swift ]; then\n SLICE2SWIFT=/usr/local/bin/slice2swift\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n";
};
/* End PBXBuildRule section */
/* Begin PBXContainerItemProxy section */
- 00E3F66FF93D5D55B1E158A0 /* PBXContainerItemProxy */ = {
+ 0020920B7A22E412DACC9451 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 89D3AFE4AD95A970E6498E06;
- remoteInfo = "Ice macOS";
+ remoteGlobalIDString = 4A2ABF9D0923453422834FC0;
+ remoteInfo = "IceSlicingExceptionsAMD iOS";
};
- 01C0F84CD799EAB9DD522742 /* PBXContainerItemProxy */ = {
+ 008FD62653844744B4AA841B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = FEF5913971918DD52A9A1A5F;
- remoteInfo = "IceServantLocatorAMD macOS";
+ remoteGlobalIDString = 215AFD7E3854FE327298A93E;
+ remoteInfo = "IceInterceptor macOS";
};
- 01CDB5E43B90041D364880E6 /* PBXContainerItemProxy */ = {
+ 030214C9E38DA4F8C962472F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = A767A66A0553040C3E4C8FE8;
- remoteInfo = "IceInterceptor macOS";
+ remoteGlobalIDString = 1A56C6EA194130F78ED3E3D7;
+ remoteInfo = "IceRetry macOS";
};
- 01D2F1D7ED32D5733E008B31 /* PBXContainerItemProxy */ = {
+ 0622433D61EC63CD0AEEAD60 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 969E38571FC7BE0D1FA5C0F2;
- remoteInfo = "IceTimeout macOS";
+ remoteGlobalIDString = AE89C19755A8AF0192B7C09E;
+ remoteInfo = "IceTimeout iOS";
};
- 0369FA668543E5078CCFEBDE /* PBXContainerItemProxy */ = {
+ 07923243FB1F42324EE1DF8D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 51D42EC70167D099FF9F11F6;
- remoteInfo = "IceProxy macOS";
+ remoteGlobalIDString = B51020A18D6BB52E85D2C0A0;
+ remoteInfo = "IceAdapterDeactivation macOS";
};
- 07661F58C40FC5FF33AFB4D6 /* PBXContainerItemProxy */ = {
+ 0820E70B3C6BA3900B77D630 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 3ED36C0437C2FD7C1609CEAA;
- remoteInfo = "IceInvoke macOS";
+ remoteGlobalIDString = 152C6B4D442533A14394AA59;
+ remoteInfo = "IceAdmin iOS";
};
- 0DA623B4ADE1999076789EAB /* PBXContainerItemProxy */ = {
+ 0D71D2B9A5E1D95A89DB1923 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = D8AD4CF3DB9467AF9BFA06BD;
- remoteInfo = "IceSlicingObjects macOS";
+ remoteGlobalIDString = A85959564B5FB3770489D66C;
+ remoteInfo = "IceInheritance iOS";
};
- 13619B9FD83B8A4B7709BF00 /* PBXContainerItemProxy */ = {
+ 0EA6A87BBFA33B86C9662C78 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = F72DCF0A21A0C8E25DFC8FFE;
- remoteInfo = "IceServices iOS";
+ remoteGlobalIDString = 70541D10A453A62A357FD6DA;
+ remoteInfo = "IceDefaultValue iOS";
};
- 17748F156E18B80C0904B2CC /* PBXContainerItemProxy */ = {
+ 13F5480E3629A73FDC070A56 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 41E689F7CB08945D981E736B;
- remoteInfo = "IceOperations iOS";
+ remoteGlobalIDString = 70073F296AA7A50B2A86451A;
+ remoteInfo = "Ice macOS";
};
- 22F604E46B8BD3BF406CAAC5 /* PBXContainerItemProxy */ = {
+ 158F1BE7CA0DBAA9BF8C8F82 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 8F8ECD3FC3C6C282CA7C748A;
- remoteInfo = "SliceEscape iOS";
+ remoteGlobalIDString = E072028161A34E7533BE2CCE;
+ remoteInfo = "IceProxyAMD macOS";
};
- 24DAFDD99EC66E6FDD5B6DC1 /* PBXContainerItemProxy */ = {
+ 15C191585581CE597ECA477E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 16B8E7C8A49D358168590178;
- remoteInfo = "Ice C++11 macOS";
+ remoteGlobalIDString = 34CC3FB8F32A94970DA6C5BC;
+ remoteInfo = "IceScope iOS";
};
- 29D111096E6EBDFA7804F57F /* PBXContainerItemProxy */ = {
+ 175B787A239980152AF0AA3D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 19D6396909861EBAD283577E;
- remoteInfo = "IceOperations macOS";
+ remoteGlobalIDString = DB28B503557795AB1CA8DF41;
+ remoteInfo = "IceBinding macOS";
};
- 2AD827D3C61EC0AF325923AF /* PBXContainerItemProxy */ = {
+ 17DAA28383F58E29DCDDC6E2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = CE1F12199245AF18BE422490;
- remoteInfo = "IceRetry iOS";
+ remoteGlobalIDString = E1F75FFAED46F9A8EF5A6B58;
+ remoteInfo = "IceOperations iOS";
};
- 2CB4459734BC54B1587C7810 /* PBXContainerItemProxy */ = {
+ 1B6F42813AA740B1B64C7DA3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = AC2F87AF2DD6F1ED5E2590A9;
- remoteInfo = "IceOperationsAMD macOS";
+ remoteGlobalIDString = 5AB40796E10DD225752975C0;
+ remoteInfo = "IceDefaultValue macOS";
};
- 2DA7721FD712B484BC70A7AA /* PBXContainerItemProxy */ = {
+ 1C338FA279728277864BBD48 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = EFCCDA054A8107675B170FC1;
- remoteInfo = "IceAcm macOS";
+ remoteGlobalIDString = 780FF90F7A2E5DB653296F94;
+ remoteInfo = "IceStream iOS";
};
- 30606657C38188EFE9FF0626 /* PBXContainerItemProxy */ = {
+ 1F2AF50FB9FB6F8E539FB012 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = F8B243B2C39ADB2080563C0C;
- remoteInfo = "IceHold iOS";
+ remoteGlobalIDString = 7E58C9E85060E10DB9449968;
+ remoteInfo = "IceLocation macOS";
};
- 372CE67C60692782E53E7336 /* PBXContainerItemProxy */ = {
+ 1F2BE5AEEA8D926CB6027883 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = E6E909AF3A34692C76335CD5;
- remoteInfo = "IceOptional iOS";
+ remoteGlobalIDString = A044C3AF402929B4D55A9080;
+ remoteInfo = "IceExceptions iOS";
};
- 3898C4D10D60447C8B1F5F55 /* PBXContainerItemProxy */ = {
+ 2137ECF7371AC57A81E461DF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 6CEDEA9B995306DFD9C2E473;
- remoteInfo = "IceFacets iOS";
+ remoteGlobalIDString = 9005F12C5A1006056BCDD1BA;
+ remoteInfo = "IceSSLConfiguration macOS";
};
- 3A8510FD096717D0256141EA /* PBXContainerItemProxy */ = {
+ 28CBDDCEB5BEF8DA48D6E24F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = AF00BF11A38D6C49E3896A52;
- remoteInfo = "IceBinding iOS";
+ remoteGlobalIDString = 2FA692464307DB8942B81FCE;
+ remoteInfo = "IceInterceptor iOS";
};
- 3B5EB5AD35384D1716C13D19 /* PBXContainerItemProxy */ = {
+ 295E3E01E46D8D839336C441 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 4CF8A5E80D330A8FD27BC24C;
- remoteInfo = "IceSlicingExceptionsAMD macOS";
+ remoteGlobalIDString = 6A21D52AF98E02D675C03AB8;
+ remoteInfo = "IceInfo iOS";
};
- 3DA8DA4426546505C96F85AB /* PBXContainerItemProxy */ = {
+ 2A9D4A9095BE414C39CC0F22 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 3C76932432EC535E14CAA9A8;
- remoteInfo = "IceSlicingObjects iOS";
+ remoteGlobalIDString = E63C32A9BA1812EC9E117B93;
+ remoteInfo = "IceFacets macOS";
};
- 4123FB9562BBC3041DF8C41D /* PBXContainerItemProxy */ = {
+ 2F1032CC0C3EB3EEDC7410EF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = BE9F28CD4A7397D091DE85B6;
- remoteInfo = "IceDefaultServant macOS";
+ remoteGlobalIDString = E994CBBED485628BB1F1F56D;
+ remoteInfo = "IceServantLocatorAMD iOS";
};
- 46822CD9009A6F654B281AE9 /* PBXContainerItemProxy */ = {
+ 34B7973FEADF152F8E4686DE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = FCAA4DCF1BD66E55753D8DE0;
- remoteInfo = "Glacier2 iOS";
+ remoteGlobalIDString = B4B423BCBEA896092FC8A89D;
+ remoteInfo = "IceOptionalAMD macOS";
};
- 495CDE5ED647B80E0E5267BC /* PBXContainerItemProxy */ = {
+ 36522001193F522518AF73BF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 1904592D5D35822D47AD8D76;
- remoteInfo = "IceFacets macOS";
+ remoteGlobalIDString = 70073F296AA7A50B2A86451A;
+ remoteInfo = "Ice macOS";
};
- 4FDD7CFF8ECE0E0A2F594D8D /* PBXContainerItemProxy */ = {
+ 36E6965B3A44C1A9A8DE4BB6 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = FAA60FF4700E1629AA35CA6B;
- remoteInfo = "Ice iOS";
+ remoteGlobalIDString = CD69162F352A58A781D2191D;
+ remoteInfo = "IceProxy iOS";
};
- 51B749D7B183D29F02E083A8 /* PBXContainerItemProxy */ = {
+ 3AA76ADBC0DD2EF29D45A9A8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 0D1E892424EEBFE0181DF694;
- remoteInfo = "Glacier2 macOS";
+ remoteGlobalIDString = 74C6B641416DEE756B63F83B;
+ remoteInfo = "IceTimeout macOS";
};
- 5235E98D9CDD847396EE48F7 /* PBXContainerItemProxy */ = {
+ 3AF1EC58A0C779BED09B0A14 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 84314C42C05E6B069FAF3710;
- remoteInfo = "IceProperties iOS";
+ remoteGlobalIDString = DA7E46E820F346FEEB71D302;
+ remoteInfo = "IceDefaultServant macOS";
};
- 52580AC9FD9205E6AA99F3F4 /* PBXContainerItemProxy */ = {
+ 3D1A46B3010687F8703691C2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = A924D28ED6AB052D7610258D;
- remoteInfo = "IceScope macOS";
+ remoteGlobalIDString = CFCBBCD749119BF8D24C0547;
+ remoteInfo = "Ice C++11 iOS";
};
- 567A5C33020935983744146B /* PBXContainerItemProxy */ = {
+ 42000A2FCB950869777189C6 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = F9FE0C1E75C7CE2FEAC8545F;
- remoteInfo = "IceObjects macOS";
+ remoteGlobalIDString = 2B0DA341DBA94884D0304509;
+ remoteInfo = "Ice C++11 macOS";
};
- 5C162295F1666568BA9B74EE /* PBXContainerItemProxy */ = {
+ 42DA9B4447CDA4BD2178FB67 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = F5FC59FA400A88FD72FDB307;
- remoteInfo = "IceTimeout iOS";
+ remoteGlobalIDString = 9CC26892A88B1BB899E53DF5;
+ remoteInfo = "Ice iOS";
};
- 5D3491BB66EDD307D5A5A4CC /* PBXContainerItemProxy */ = {
+ 454D64584C823AF9EDD745ED /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 89D3AFE4AD95A970E6498E06;
- remoteInfo = "Ice macOS";
+ remoteGlobalIDString = AFF5C170D720B29E4A6ABD57;
+ remoteInfo = "IceBinding iOS";
};
- 60E400E716B1862956C11904 /* PBXContainerItemProxy */ = {
+ 466E1FDD53C91CC3A2247C07 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = A0C4BC07716CFC719E71B864;
- remoteInfo = "IceOptionalAMD iOS";
+ remoteGlobalIDString = F620D8585971DEC00C33207F;
+ remoteInfo = "IceOperationsAMD macOS";
};
- 6527054E216E3F6B0DC2D01C /* PBXContainerItemProxy */ = {
+ 46E031F4818390C5FC15F2AB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = FAA60FF4700E1629AA35CA6B;
- remoteInfo = "Ice iOS";
+ remoteGlobalIDString = ED591945226DC859C59BD051;
+ remoteInfo = "IceExceptions macOS";
};
- 6658C8E9BC51CEBC33C03574 /* PBXContainerItemProxy */ = {
+ 47A7FAF73D3C2E160CD743C7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 16B8E7C8A49D358168590178;
- remoteInfo = "Ice C++11 macOS";
+ remoteGlobalIDString = BC6991488D8CC573AA1BDC8F;
+ remoteInfo = "IceUdp macOS";
};
- 680E945C9BE9B2C5617DBFCB /* PBXContainerItemProxy */ = {
+ 47F0863EDFB9E441949654DB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = AF40834517F20D8EB2CCFCCE;
- remoteInfo = "IceScope iOS";
+ remoteGlobalIDString = CA67B414AA1971674CA1BB76;
+ remoteInfo = "IceFacets iOS";
};
- 692FC873349FCD11805CAE7A /* PBXContainerItemProxy */ = {
+ 5380992F59A423C8F1C9E9CD /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 6E6FDF29A9BD1AAC14D11E06;
- remoteInfo = "IceExceptionsAMD macOS";
+ remoteGlobalIDString = B3C1AB542406B80D9E28FD83;
+ remoteInfo = "IceProperties macOS";
};
- 6AB4FAD406B8F4D90B008373 /* PBXContainerItemProxy */ = {
+ 57E1A3D3F9187E89BA921F02 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = D9A5F8103D92E3527085B9D2;
- remoteInfo = "IceInheritance iOS";
+ remoteGlobalIDString = 70073F296AA7A50B2A86451A;
+ remoteInfo = "Ice macOS";
};
- 6D724E87C223C250ABE08115 /* PBXContainerItemProxy */ = {
+ 57EDE124882D3B0B91C474A6 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = C9C42E66F1D59B07261FE036;
- remoteInfo = "IceDefaultServant iOS";
+ remoteGlobalIDString = BB0FE27477960DDC5B6DB47E;
+ remoteInfo = "IceProxyAMD iOS";
};
- 705E2357A3FA78734C20ECE6 /* PBXContainerItemProxy */ = {
+ 5D69129449E3C495B2939FD5 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = ECDA8A6880B8784EAE848EFE;
- remoteInfo = "IceServices macOS";
+ remoteGlobalIDString = 1E406447B88C3D90364D4D1F;
+ remoteInfo = "IceOperations macOS";
};
- 770851319EDBD6DDC6CCC088 /* PBXContainerItemProxy */ = {
+ 5DA0E07575D8DC0F638CD1DA /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = EA33EAE1209A64C18B26C6DC;
- remoteInfo = "IceAmi iOS";
+ remoteGlobalIDString = E765EC8C4FC688664074FCAB;
+ remoteInfo = "IceServices macOS";
};
- 77959C9AC50BC71E6042979F /* PBXContainerItemProxy */ = {
+ 5FE5DF1E08144BB9F6DDCD23 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 2EB20E48501BD9D7B072833A;
- remoteInfo = "IceObjects iOS";
+ remoteGlobalIDString = 853E509B9FD262019EBA40BE;
+ remoteInfo = "Glacier2 iOS";
};
- 7912AEB462A4818D96CDD3C6 /* PBXContainerItemProxy */ = {
+ 6184B0E11E047254AC77EBB8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 14BA1B5F33A0E29CFB75C274;
- remoteInfo = "IceInterceptor iOS";
+ remoteGlobalIDString = 98425A8E3491D503D949A569;
+ remoteInfo = "IceSlicingObjectsAMD iOS";
};
- 7A571EBD465782ACA41FD059 /* PBXContainerItemProxy */ = {
+ 6A8243303224DCFD83107C71 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 830E9112B17863864A340FE9;
- remoteInfo = "IceInfo macOS";
+ remoteGlobalIDString = 0B9E7BE2574649A7DEAD1C1C;
+ remoteInfo = "IceUdp iOS";
};
- 7CF5BF5194CEA26D3EC2B7F6 /* PBXContainerItemProxy */ = {
+ 70BBB6B87F8A7009516284D4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 0914A24DE1888840E5B162E7;
- remoteInfo = "Ice C++11 iOS";
+ remoteGlobalIDString = BFD1D15D5C7B133F2BE814F2;
+ remoteInfo = "IceAcm macOS";
};
- 805A1CD37F6D848D6DF42F31 /* PBXContainerItemProxy */ = {
+ 71092F57FDC6265A20207BAB /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 5CF6468D18D175DFA0C3C15C;
- remoteInfo = "IceOptional macOS";
+ remoteGlobalIDString = 28CFE986A434086C3605887E;
+ remoteInfo = "IceEnums iOS";
};
- 83D629EC203376C82DFC3A30 /* PBXContainerItemProxy */ = {
+ 7176A154E99359A9F922D452 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = B3452891B8260C4BD87385FC;
- remoteInfo = "IceBinding macOS";
+ remoteGlobalIDString = B4E064E37239C58606BE5146;
+ remoteInfo = "IceSlicingObjects iOS";
};
- 8677C1DDC87F1667885396E6 /* PBXContainerItemProxy */ = {
+ 71DB73498C6066CC0B5045F8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 681378E5D9D07BAA1B211EAD;
- remoteInfo = "IceProperties macOS";
+ remoteGlobalIDString = 25A27A7EDF9F753CD06CD077;
+ remoteInfo = "IceInvoke iOS";
};
- 892B372D29CD810B9674F8F0 /* PBXContainerItemProxy */ = {
+ 76598028A2F93482B079F7AF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = E07DFEAC4405C142A89C313C;
- remoteInfo = "IceInvoke iOS";
+ remoteGlobalIDString = CFCBBCD749119BF8D24C0547;
+ remoteInfo = "Ice C++11 iOS";
};
- 89A0C44CF8CB8326273A77D5 /* PBXContainerItemProxy */ = {
+ 77A4489550D5E8FD2278A258 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 1F2AA78A763D19F22E79A046;
- remoteInfo = "IceServantLocator macOS";
+ remoteGlobalIDString = E9E6D506EA0A011CEDDBC701;
+ remoteInfo = "IceServices iOS";
};
- 8B0C79421CE237E98D9E81B8 /* PBXContainerItemProxy */ = {
+ 780D76738D63AB770CEBAD7A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 0914A24DE1888840E5B162E7;
- remoteInfo = "Ice C++11 iOS";
+ remoteGlobalIDString = 7B52FA8B327DB67AF60C0BB1;
+ remoteInfo = "IceExceptionsAMD macOS";
};
- 8C32F2D8834CC00396533552 /* PBXContainerItemProxy */ = {
+ 791AF9B734FB817D38F720C7 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 0914A24DE1888840E5B162E7;
- remoteInfo = "Ice C++11 iOS";
+ remoteGlobalIDString = CDA3E575A10E9943686D9651;
+ remoteInfo = "IceAcm iOS";
};
- 8CCF5CCC3782672A590A3B9A /* PBXContainerItemProxy */ = {
+ 7B39B929EECDC40B5277348A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 34B4FD44212BC22DE43DF98B;
- remoteInfo = "IceInheritance macOS";
+ remoteGlobalIDString = AD8EE389D94E8B7A9B7F1E3E;
+ remoteInfo = "IceRetry iOS";
};
- 8CD6685A1007F0133B97DF74 /* PBXContainerItemProxy */ = {
+ 7D89FD5439F8AB2174209906 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = DF0F057CC484113257567B98;
- remoteInfo = "IceUdp macOS";
+ remoteGlobalIDString = 7E64A09456EF45C06475AEF9;
+ remoteInfo = "IceStream macOS";
};
- 8F31E6A5438E78EC71E4E306 /* PBXContainerItemProxy */ = {
+ 821059E326891E5F6A719489 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 745B3C1B56A24EC2C6B28C0B;
- remoteInfo = "IceAdapterDeactivation macOS";
+ remoteGlobalIDString = 74BF9981D471516844317E41;
+ remoteInfo = "IceScope macOS";
};
- 9035746230519385E5995357 /* PBXContainerItemProxy */ = {
+ 84D21CA29598A45014722A3D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 0914A24DE1888840E5B162E7;
- remoteInfo = "Ice C++11 iOS";
+ remoteGlobalIDString = 9CC26892A88B1BB899E53DF5;
+ remoteInfo = "Ice iOS";
};
- 916A35394A23A1E0EB9C2BBF /* PBXContainerItemProxy */ = {
+ 859A7DBB34B120487EEC0D27 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 28D7C910F8C11FA8AE746E5F;
- remoteInfo = "IceSlicingObjectsAMD macOS";
+ remoteGlobalIDString = 5295813C4C98826FBA6D4CA4;
+ remoteInfo = "IceAdapterDeactivation iOS";
};
- 92F64720DE0369182A4AD85D /* PBXContainerItemProxy */ = {
+ 8CF263BC5EE9D8315C75F074 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 8785D7837C39C2283224DA75;
- remoteInfo = "IceRetry macOS";
+ remoteGlobalIDString = 2B0DA341DBA94884D0304509;
+ remoteInfo = "Ice C++11 macOS";
};
- 93E9332EE3E5DDC24923DB52 /* PBXContainerItemProxy */ = {
+ 8DF5291E8BB9FEF8CC5D3A89 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = F69E07D158565776D5926FF9;
- remoteInfo = "IceHold macOS";
+ remoteGlobalIDString = 9CC26892A88B1BB899E53DF5;
+ remoteInfo = "Ice iOS";
};
- 9446D57837E11F6328E89E81 /* PBXContainerItemProxy */ = {
+ 8E9E66E7606818A32FE4400A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = BA3C6CB03E611F920F0CBA82;
- remoteInfo = "IceEnums macOS";
+ remoteGlobalIDString = 201230D356840C5A08351F26;
+ remoteInfo = "IceExceptionsAMD iOS";
};
- 989F458F4F28C217CE52DAFD /* PBXContainerItemProxy */ = {
+ 8ED71FFE35F6B4C99BCC7E71 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = FAA60FF4700E1629AA35CA6B;
- remoteInfo = "Ice iOS";
+ remoteGlobalIDString = B0CE4A0950BF71C921ADDF6F;
+ remoteInfo = "IceObjects iOS";
};
- 9A903E4533595CFC35B34AF8 /* PBXContainerItemProxy */ = {
+ 914490C40B3F31F8EE874C25 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = B7B10DC70A80C1FB0D874813;
- remoteInfo = "IceUdp iOS";
+ remoteGlobalIDString = 66D7646E717E859CA23ACF56;
+ remoteInfo = "SliceEscape macOS";
};
- 9C540446F436435C0FA4E994 /* PBXContainerItemProxy */ = {
+ 93362B507ECB1C3B8FF09129 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 7D8B11B9BA9DF9540757E9E2;
- remoteInfo = "IceProxy iOS";
+ remoteGlobalIDString = 86A66976BDA39228F3A72337;
+ remoteInfo = "IceLocation iOS";
};
- 9FE2CE27837437F62F61A7CB /* PBXContainerItemProxy */ = {
+ 957FAF7B9691A77E0A3061C3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 72CC3BF62B704A82067C98D1;
- remoteInfo = "IceAmi macOS";
+ remoteGlobalIDString = B6E7B96E62DB9ACA0E5D579D;
+ remoteInfo = "Glacier2 macOS";
};
- A188481BCB244AE62EEECBBB /* PBXContainerItemProxy */ = {
+ 95BC7D77BD12AA94B1C57A8F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 28CE11EAF0AF8ED4144E13C3;
- remoteInfo = "IceInfo iOS";
+ remoteGlobalIDString = 57F4F70C7420D9DEB081223A;
+ remoteInfo = "IceOperationsAMD iOS";
};
- A21AC7CE2E1C0B22936B4CC5 /* PBXContainerItemProxy */ = {
+ 99668AA6AD37EAE8F8EA697C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 3721D48CE03788DE444C0915;
- remoteInfo = "IceAdmin macOS";
+ remoteGlobalIDString = 4A47CB078D8654283E9A288C;
+ remoteInfo = "IceOptional iOS";
};
- A279EFE60F7D2A8036AE833D /* PBXContainerItemProxy */ = {
+ 9984A75D791A016FAAB4327C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 2045B45980FB68801EA7DC30;
- remoteInfo = "IceStream iOS";
+ remoteGlobalIDString = 9481764D72790337282158DA;
+ remoteInfo = "SliceEscape iOS";
};
- A5995851B5E63B358FB1EE14 /* PBXContainerItemProxy */ = {
+ 99E0FCFD3FAF517DF98FB4E6 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 4528506F75BB1C17D38A8FB2;
- remoteInfo = "IceServantLocatorAMD iOS";
+ remoteGlobalIDString = 1AAC4E0E13E730A3EBE99884;
+ remoteInfo = "IceProperties iOS";
};
- AC23E6FABB451752237548DC /* PBXContainerItemProxy */ = {
+ 9FAAB98E0AA3E3F72B72D6B9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = D65ED0BD35F3EC0FC6466BCB;
- remoteInfo = "IceAdmin iOS";
+ remoteGlobalIDString = 718273E1950034827BC4BCF7;
+ remoteInfo = "IceInvoke macOS";
};
- ACBA1D4680155762D94FDFFF /* PBXContainerItemProxy */ = {
+ A690C8A30A880775964DF498 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = FDE91A15EA90BB247AB8ABBB;
- remoteInfo = "IceLocation iOS";
+ remoteGlobalIDString = CFCBBCD749119BF8D24C0547;
+ remoteInfo = "Ice C++11 iOS";
};
- AE2581B83FEAD1F021912FC3 /* PBXContainerItemProxy */ = {
+ A75906D1680C44085B721E4E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 83CCFF5F1359DE0B92E2AF70;
- remoteInfo = "SliceEscape macOS";
+ remoteGlobalIDString = B7D8F90200493C54A87563A7;
+ remoteInfo = "IceInheritance macOS";
};
- AE945E534EB596469129B732 /* PBXContainerItemProxy */ = {
+ A94EC94485839F8ACFA00C7E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 95BBF08A50DC5F76CB2F6923;
- remoteInfo = "IceAcm iOS";
+ remoteGlobalIDString = F532269BF56C02A5A87C95A7;
+ remoteInfo = "IceAdmin macOS";
};
- B303B6583947A230B6657276 /* PBXContainerItemProxy */ = {
+ AA73E8B7592BD4709EC6D212 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 16B8E7C8A49D358168590178;
- remoteInfo = "Ice C++11 macOS";
+ remoteGlobalIDString = 9CC7B60AEA78A6484EAA237C;
+ remoteInfo = "IceOptional macOS";
};
- B39CB56FD06D7130844A60BD /* PBXContainerItemProxy */ = {
+ AB0BAF31D32F75A1A224B301 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = BF98F490756093B64A2F9A38;
- remoteInfo = "IceStream macOS";
+ remoteGlobalIDString = D0D371AC63C9FC42EB4E27B9;
+ remoteInfo = "IceSSLConfiguration iOS";
};
- B3B1FCF6B15FF94A71BA0301 /* PBXContainerItemProxy */ = {
+ AECFBBD339CEA9A5E88F83C3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = FAFC63CCC240428D0B5A7F82;
- remoteInfo = "IceSlicingObjectsAMD iOS";
+ remoteGlobalIDString = 2B0DA341DBA94884D0304509;
+ remoteInfo = "Ice C++11 macOS";
};
- B4EEED1302AC73F29A861D51 /* PBXContainerItemProxy */ = {
+ AF09B5EAF3F1C756D717F57F /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = EC193DAA8373DAB1D6CE3C67;
- remoteInfo = "IceOptionalAMD macOS";
+ remoteGlobalIDString = 9BF54EDF114BEAB8899A47F9;
+ remoteInfo = "IceAmi macOS";
};
- B602525DAC501FCEC750B25D /* PBXContainerItemProxy */ = {
+ B1BFAFCA440C2E161333A28B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = A62091DEE8CD959DE94A8F0D;
- remoteInfo = "IceProxyAMD macOS";
+ remoteGlobalIDString = EE95BFEA8BAE4CCD7D0C5C92;
+ remoteInfo = "IceSlicingExceptions iOS";
};
- B8B9BA6D6881EF78D3508E64 /* PBXContainerItemProxy */ = {
+ B1ED1F6250D9F96DA8A7C518 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 1021ADEEE20D0179A7D1EAE5;
- remoteInfo = "IceExceptionsAMD iOS";
+ remoteGlobalIDString = FEF324BE2711D4602F6574BC;
+ remoteInfo = "IceSlicingObjects macOS";
};
- BD9CE44EAABAE25964532A2D /* PBXContainerItemProxy */ = {
+ B38E19BDF8A95378611F66B4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 6B88A98489947A12B8C8631A;
- remoteInfo = "IceSSLConfiguration macOS";
+ remoteGlobalIDString = 11F37400E8E07989B6E1EC6B;
+ remoteInfo = "IceProxy macOS";
};
- C678B00450EC3FBEF34E487B /* PBXContainerItemProxy */ = {
+ BDFFE4E8B33D61F6EE8AE552 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = E6C971120A8271A079AADB39;
- remoteInfo = "IceEnums iOS";
+ remoteGlobalIDString = CC1E58215C72A515E5C4E968;
+ remoteInfo = "IceInfo macOS";
};
- C80FB86ECA885BACEDE87960 /* PBXContainerItemProxy */ = {
+ BFAB99A0AE823ABA47DCA0F4 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 2FCF9711489B071F1761C95C;
- remoteInfo = "IceSlicingExceptions iOS";
+ remoteGlobalIDString = 33A418E3474BE5E738D35102;
+ remoteInfo = "IceEnums macOS";
};
- CAD74DA69D1D3CC1089E6772 /* PBXContainerItemProxy */ = {
+ D196512B7D8C14C65BA20B71 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = FE86CB123B13ECCFF37B1D0B;
- remoteInfo = "IceExceptions macOS";
+ remoteGlobalIDString = E959FDFA9037FBC6F3BC42D7;
+ remoteInfo = "IceServantLocator iOS";
};
- D516C57C51AE87C8EEB2F353 /* PBXContainerItemProxy */ = {
+ D3107B9EBA977436DD1694CD /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = A1F0756F55089999FFC176DC;
- remoteInfo = "IceSSLConfiguration iOS";
+ remoteGlobalIDString = AF5DFD5174E2D34ED1167326;
+ remoteInfo = "IceAmi iOS";
};
- D5898D7BEEBEC126584B9DF9 /* PBXContainerItemProxy */ = {
+ D5C7828B65751F01E9864FE3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 52292A0F78EADC0126136916;
- remoteInfo = "IceProxyAMD iOS";
+ remoteGlobalIDString = B0DD51FFCF661AD3AAF3C70D;
+ remoteInfo = "IceHold macOS";
};
- D9A3B8A9F48B76F51DEADE81 /* PBXContainerItemProxy */ = {
+ D6EA85E44DDFBC509EDE59C1 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 404E0C7A0B6D245EF6B20FBE;
- remoteInfo = "IceExceptions iOS";
+ remoteGlobalIDString = 51B83832597A166C70372361;
+ remoteInfo = "IceServantLocatorAMD macOS";
};
- DB8B5F9CF52B6A124F607572 /* PBXContainerItemProxy */ = {
+ E029381EC5C5083053F04DBE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 4FACAB223C4BE57F8313B439;
- remoteInfo = "IceAdapterDeactivation iOS";
+ remoteGlobalIDString = CFCBBCD749119BF8D24C0547;
+ remoteInfo = "Ice C++11 iOS";
};
- DC7182F780C0B651B66B66BD /* PBXContainerItemProxy */ = {
+ E63D2789C8FA62E33DDD176C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 076983A948FE64CF9ABD1844;
- remoteInfo = "IceLocation macOS";
+ remoteGlobalIDString = C45CC74DC170C850261716E7;
+ remoteInfo = "IceHold iOS";
};
- E250D94FB3D3D56A4027C9F7 /* PBXContainerItemProxy */ = {
+ E63FD911A40125C2CF043B18 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 61C1F3CDEF881BCAD67C369D;
- remoteInfo = "IceOperationsAMD iOS";
+ remoteGlobalIDString = 181D4BB2B500C7095E790261;
+ remoteInfo = "IceServantLocator macOS";
};
- EADDA7A41C4243784CDDE9C5 /* PBXContainerItemProxy */ = {
+ E7938DB28487BCA100AF1F10 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = E6132AB8E453580BE3A35BA1;
- remoteInfo = "IceDefaultValue iOS";
+ remoteGlobalIDString = CA75423F06FACFFA27DD068F;
+ remoteInfo = "IceOptionalAMD iOS";
};
- ED6431DD910A350DEFDD2F45 /* PBXContainerItemProxy */ = {
+ E9D47ECAEF7A425BE3FA5A4C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 928BFD8C43F5AA1C2F7F86EE;
+ remoteGlobalIDString = EE2F6B7F5CAB0150B8F5A31E;
remoteInfo = "IceSlicingExceptions macOS";
};
- EF300B245E07E28E99EB7CD2 /* PBXContainerItemProxy */ = {
+ EC5359ED4F810E3D12CB314A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 46D6805E63BB07D00857FF65;
- remoteInfo = "IceDefaultValue macOS";
+ remoteGlobalIDString = E61D28A41E985F8384CE50D1;
+ remoteInfo = "IceDefaultServant iOS";
};
- F044A6FEAB4F66884E07051D /* PBXContainerItemProxy */ = {
+ F5C328F080F8954B7A03554E /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 58E0983675E6A21751BA077D;
- remoteInfo = "IceServantLocator iOS";
+ remoteGlobalIDString = 917FA4C5A8B4A5A1376C00A7;
+ remoteInfo = "IceSlicingObjectsAMD macOS";
};
- F5BBFB810AD8D2E71E102996 /* PBXContainerItemProxy */ = {
+ F9E4AF687879C20C39BDDE78 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 4D4688E27490C1B57417BEC2;
- remoteInfo = "IceSlicingExceptionsAMD iOS";
+ remoteGlobalIDString = CC09866B17B00F50BB557DAA;
+ remoteInfo = "IceSlicingExceptionsAMD macOS";
};
- F6075072A6FC0C0CED81663F /* PBXContainerItemProxy */ = {
+ FC4FB387B8EA9BB2E7445ED2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 41F00024FF339B5061D8BCF4 /* Project object */;
+ containerPortal = 0726E601744CEB8B4C528E4A /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 89D3AFE4AD95A970E6498E06;
- remoteInfo = "Ice macOS";
+ remoteGlobalIDString = A95A462BF3224269501972C7;
+ remoteInfo = "IceObjects macOS";
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
- 111FF68721EC29A87E53169E /* Copy Frameworks */ = {
+ 10CF17D2EF5F6C22F68E6806 /* Copy Symbols */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
- dstSubfolderSpec = 10;
+ dstSubfolderSpec = 16;
files = (
- 2A6EF59EFED6D6DA35CD8700 /* Glacier2.framework in Copy Frameworks */,
- FCBC5FDF3DBC8F01B322140A /* Ice.framework in Copy Frameworks */,
- 452BFD551BF10D123D326D27 /* IceAcm.bundle in Copy Frameworks */,
- 4571C5D7CFA9713095D78989 /* IceAdapterDeactivation.bundle in Copy Frameworks */,
- 87B190044829C3F2177B5517 /* IceAdmin.bundle in Copy Frameworks */,
- F164E6BE9282221A5A5022EB /* IceAmi.bundle in Copy Frameworks */,
- 827893060CDDC3BE2EBE624F /* IceBinding.bundle in Copy Frameworks */,
- 54B8DD04D36068A5287215A9 /* IceDefaultServant.bundle in Copy Frameworks */,
- 4100B4F23177A3BBDE5B502B /* IceDefaultValue.bundle in Copy Frameworks */,
- BEE5AE47D2B69ACCADC8DCF6 /* IceEnums.bundle in Copy Frameworks */,
- 618169E2E136D62E22096BFE /* IceExceptions.bundle in Copy Frameworks */,
- 6B3273D3693BCDD9FC81F842 /* IceExceptionsAMD.bundle in Copy Frameworks */,
- 8A9160FAC92352AD0C7D05FE /* IceFacets.bundle in Copy Frameworks */,
- 38899291F86F88353D5D77C2 /* IceGrid.framework in Copy Frameworks */,
- AA73293FF1A5696216BC3293 /* IceHold.bundle in Copy Frameworks */,
- 44173FAA4E6D8A35A81379E5 /* IceImpl.framework in Copy Frameworks */,
- 9A9EE511CC310844E5CE3585 /* IceInfo.bundle in Copy Frameworks */,
- E4C46CF21AAFFC8F205BC0BE /* IceInheritance.bundle in Copy Frameworks */,
- 138F3139C4CEF51858766A43 /* IceInterceptor.bundle in Copy Frameworks */,
- D11E77D0595CDBBB532EDF0F /* IceInvoke.bundle in Copy Frameworks */,
- D96293D971F57A39EB9FCE1B /* IceLocation.bundle in Copy Frameworks */,
- FF5C4FDB49B24F69C5696164 /* IceObjects.bundle in Copy Frameworks */,
- 4E775FAADA5DDB72B2BCDE43 /* IceOperations.bundle in Copy Frameworks */,
- EBA3D5B59ACAFD51AC1294D4 /* IceOperationsAMD.bundle in Copy Frameworks */,
- 52CBC49A476F096C197EE10D /* IceOptional.bundle in Copy Frameworks */,
- 0A8986CB14AA829985256EAA /* IceOptionalAMD.bundle in Copy Frameworks */,
- 9D2B1958AC2D265D5154B5F2 /* IceProperties.bundle in Copy Frameworks */,
- F0C165731989DC076F703A79 /* IceProxy.bundle in Copy Frameworks */,
- 8FC25EC94FC0B4A2A48C680B /* IceProxyAMD.bundle in Copy Frameworks */,
- 6C5DF668420BAF073617EB31 /* IceRetry.bundle in Copy Frameworks */,
- 6B5B5F59B724358081451EB2 /* IceScope.bundle in Copy Frameworks */,
- 46EA2B136FC9C5D4F81447A9 /* IceServantLocator.bundle in Copy Frameworks */,
- B9ECC3C439E21F2FC326AC83 /* IceServantLocatorAMD.bundle in Copy Frameworks */,
- 3CCFB556F101BBC98C56EA7B /* IceServices.bundle in Copy Frameworks */,
- F3E6B1C421FEEBDBFE8A75C7 /* IceSlicingExceptions.bundle in Copy Frameworks */,
- A99DCF609EEE269725883222 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */,
- CFF936ED8E1CD735CF02F635 /* IceSlicingObjects.bundle in Copy Frameworks */,
- B2B40EBE0BFEA2920EC3A03F /* IceSlicingObjectsAMD.bundle in Copy Frameworks */,
- 3B2EE646A48DDCD0A8A2CCAC /* IceSSLConfiguration.bundle in Copy Frameworks */,
- 2C6D52485900E7F8ABA01997 /* IceStorm.framework in Copy Frameworks */,
- 336A2F6065E27D67073F69A7 /* IceStream.bundle in Copy Frameworks */,
- 30F124A3D9DEA06964AB4C81 /* IceTimeout.bundle in Copy Frameworks */,
- B59664655DE9A9EEE78BF5A7 /* IceUdp.bundle in Copy Frameworks */,
- 1EE233D194D829CCA51074B6 /* SliceEscape.bundle in Copy Frameworks */,
- ACEDA94B5EBDA2B34BCBCA3A /* TestCommon.framework in Copy Frameworks */,
);
- name = "Copy Frameworks";
+ name = "Copy Symbols";
runOnlyForDeploymentPostprocessing = 0;
};
- 5B93E56D795C385F1853E9BE /* Copy Symbols */ = {
+ 11FFB1BF9E84148E37F41708 /* Copy Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
- dstSubfolderSpec = 16;
+ dstSubfolderSpec = 10;
files = (
+ D6EEF2F1A1F2E9BFF1057359 /* Glacier2.framework in Copy Frameworks */,
+ 38B3F3831758315063BD9CA3 /* Ice.framework in Copy Frameworks */,
+ 368B61D705EE3C6B25FB0262 /* IceAcm.bundle in Copy Frameworks */,
+ 353DCAAD03B6378AC08595F9 /* IceAdapterDeactivation.bundle in Copy Frameworks */,
+ 3A3CD1E547C99FF9B5AC1610 /* IceAdmin.bundle in Copy Frameworks */,
+ 198E9B828A48BE79035C6168 /* IceAmi.bundle in Copy Frameworks */,
+ 77EDD50F6EF8B275BB62C8C2 /* IceBinding.bundle in Copy Frameworks */,
+ 6F78891AB156A0B9161E18B5 /* IceDefaultServant.bundle in Copy Frameworks */,
+ EEDFB4ECCEC143FC045B19F6 /* IceDefaultValue.bundle in Copy Frameworks */,
+ 378C0E7B182FE55DDD369FBB /* IceEnums.bundle in Copy Frameworks */,
+ 5943DC289DC33E8E6AC4217F /* IceExceptions.bundle in Copy Frameworks */,
+ F98B452B5D6D4D7BD3813985 /* IceExceptionsAMD.bundle in Copy Frameworks */,
+ 87224233426B84A451F6F741 /* IceFacets.bundle in Copy Frameworks */,
+ 65508446D1088D14C03E23FD /* IceGrid.framework in Copy Frameworks */,
+ 6752234078E83A4EF0888CAA /* IceHold.bundle in Copy Frameworks */,
+ 4413F4C4E50E8548FE8BF972 /* IceImpl.framework in Copy Frameworks */,
+ 86F738F09C35608193CC4FDB /* IceInfo.bundle in Copy Frameworks */,
+ 4206E2C08B16A88D3183C35A /* IceInheritance.bundle in Copy Frameworks */,
+ 65BC8596BE1802DF1B908CA1 /* IceInterceptor.bundle in Copy Frameworks */,
+ 178315D963A76B516A1DB186 /* IceInvoke.bundle in Copy Frameworks */,
+ F7BD9FC05494964BCD8B0BC6 /* IceLocation.bundle in Copy Frameworks */,
+ D22AD45D41FD268CD4A99394 /* IceObjects.bundle in Copy Frameworks */,
+ 4AD3E8A4886C318510F7C987 /* IceOperations.bundle in Copy Frameworks */,
+ 2355DEECBA392F60D17D4351 /* IceOperationsAMD.bundle in Copy Frameworks */,
+ 7E79E1EE164662EA4D28584A /* IceOptional.bundle in Copy Frameworks */,
+ FAAAD0CBA4A5A49471DD4EFF /* IceOptionalAMD.bundle in Copy Frameworks */,
+ 8C9B8B42F24295FA590FD194 /* IceProperties.bundle in Copy Frameworks */,
+ E6A0659D7455CBC95D789E20 /* IceProxy.bundle in Copy Frameworks */,
+ F0A8D31F73F47493E4EE66F1 /* IceProxyAMD.bundle in Copy Frameworks */,
+ 1441128BAEF2F4C6CC057891 /* IceRetry.bundle in Copy Frameworks */,
+ 23A7256695925C8B370C23AA /* IceScope.bundle in Copy Frameworks */,
+ 6A3B3FD8D40723739F8DB1E4 /* IceServantLocator.bundle in Copy Frameworks */,
+ 6474EA0548B44684A80735EB /* IceServantLocatorAMD.bundle in Copy Frameworks */,
+ 9556986840E2270D54457131 /* IceServices.bundle in Copy Frameworks */,
+ 99AC3F448CA3D0D47A2A7FDC /* IceSlicingExceptions.bundle in Copy Frameworks */,
+ 6ADE2906868F6684BF6B66B6 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */,
+ F5D0228AE03BE3B31A36D454 /* IceSlicingObjects.bundle in Copy Frameworks */,
+ B512632A7BF119EA1BFE2B49 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */,
+ 297D0356DC95C100598AD3F0 /* IceSSLConfiguration.bundle in Copy Frameworks */,
+ 197BA3D8F705130080D6E04F /* IceStorm.framework in Copy Frameworks */,
+ 690721A3AF48067E335D4017 /* IceStream.bundle in Copy Frameworks */,
+ 66E9E6181A6CAC8912030E44 /* IceTimeout.bundle in Copy Frameworks */,
+ A906CD209FF6D744F43A6240 /* IceUdp.bundle in Copy Frameworks */,
+ E99F05CBEEB623AA1CDE8726 /* SliceEscape.bundle in Copy Frameworks */,
+ DC1298E7E6F7C0B5028FBF91 /* TestCommon.framework in Copy Frameworks */,
);
- name = "Copy Symbols";
+ name = "Copy Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
- D0BFF0E4F14730D0B48B3170 /* Copy Frameworks */ = {
+ 1E4BA54E6C17567129C4A64C /* Copy Frameworks */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 10;
files = (
- C41E168446904363CA97B72D /* Glacier2.framework in Copy Frameworks */,
- 1298FAB9E2D6512738B6651A /* Ice.framework in Copy Frameworks */,
- 66D17D08A93618BE507487E6 /* IceAcm.bundle in Copy Frameworks */,
- 9013ECC26187C431BE27D562 /* IceAdapterDeactivation.bundle in Copy Frameworks */,
- FED01C3E9D7F7086D83EF7EC /* IceAdmin.bundle in Copy Frameworks */,
- E20DD593BC26546D3F641312 /* IceAmi.bundle in Copy Frameworks */,
- 363985B44F4F8721B3FF0E0C /* IceBinding.bundle in Copy Frameworks */,
- 50AAC8AE5F65704C8458AE7C /* IceDefaultServant.bundle in Copy Frameworks */,
- A2C553DBD89CDFA82E9F4251 /* IceDefaultValue.bundle in Copy Frameworks */,
- D041A660414D5DE82C29E19E /* IceEnums.bundle in Copy Frameworks */,
- 13F95BE8B524D53C6C58FE4B /* IceExceptions.bundle in Copy Frameworks */,
- 7C57EF3273681C4DF3EBAA55 /* IceExceptionsAMD.bundle in Copy Frameworks */,
- A25CC69AC08BF7DD465EF0E8 /* IceFacets.bundle in Copy Frameworks */,
- 73FD6C80D25E74B38CA4A27F /* IceGrid.framework in Copy Frameworks */,
- 0414432482BE28DB14FB3B27 /* IceHold.bundle in Copy Frameworks */,
- 0DE422437BB4476D96E42ADD /* IceImpl.framework in Copy Frameworks */,
- A2BA50BBEBE11C1C85DA9BD1 /* IceInfo.bundle in Copy Frameworks */,
- 155E62AF779301659FF32A01 /* IceInheritance.bundle in Copy Frameworks */,
- CEC88818CD901C919DC50AAE /* IceInterceptor.bundle in Copy Frameworks */,
- DAFA6CADADCABF4CA5BDAF75 /* IceInvoke.bundle in Copy Frameworks */,
- 92D160E56A3BCA991F0822AB /* IceLocation.bundle in Copy Frameworks */,
- CA68946B9271EC459276D2BC /* IceObjects.bundle in Copy Frameworks */,
- BB245D011B61E22D34B0C735 /* IceOperations.bundle in Copy Frameworks */,
- 77A9D957AEFF645C4C3D9A70 /* IceOperationsAMD.bundle in Copy Frameworks */,
- 72D7A8D1D83783B4592AE5DF /* IceOptional.bundle in Copy Frameworks */,
- 43D08C5AD6403785D4F2E432 /* IceOptionalAMD.bundle in Copy Frameworks */,
- FF929CE36891406A3913F694 /* IceProperties.bundle in Copy Frameworks */,
- BF84AD4ACD6C2A4133A1587D /* IceProxy.bundle in Copy Frameworks */,
- 30702A828BEB53FDB2D9D74D /* IceProxyAMD.bundle in Copy Frameworks */,
- C4F88F0086B961D58C4F6847 /* IceRetry.bundle in Copy Frameworks */,
- 6FDAA2291B14E3E7D2FE837B /* IceScope.bundle in Copy Frameworks */,
- 7162F73F6D2BC9A3E37D02E1 /* IceServantLocator.bundle in Copy Frameworks */,
- 30C77BFB7DC63EEBAC6D2DB9 /* IceServantLocatorAMD.bundle in Copy Frameworks */,
- FC08DCA14F32FD037166D3A3 /* IceServices.bundle in Copy Frameworks */,
- 69D69113C7DCC545F48893CB /* IceSlicingExceptions.bundle in Copy Frameworks */,
- D9952965F295F34FA4D9BFF3 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */,
- 4E60ED1D9B664E4028D40647 /* IceSlicingObjects.bundle in Copy Frameworks */,
- 074E2AF046CE3EE08DFFDEE0 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */,
- B520B55791788AAD9EAA2C6D /* IceSSLConfiguration.bundle in Copy Frameworks */,
- 6D8EB8581084DBEFFD79648A /* IceStorm.framework in Copy Frameworks */,
- BBCA80C141DE87ABB672DC22 /* IceStream.bundle in Copy Frameworks */,
- A95D2F39E4812174049B925F /* IceTimeout.bundle in Copy Frameworks */,
- 3D0CB1164097FCC9602E52BD /* IceUdp.bundle in Copy Frameworks */,
- 87D541263CF3BC692291E655 /* PromiseKit.framework in Copy Frameworks */,
- 514E8B2F09C5A01AD80F5135 /* SliceEscape.bundle in Copy Frameworks */,
- 4F74EBC430E031CE392DEB82 /* TestCommon.framework in Copy Frameworks */,
+ 12DE1D0FA6F1D673900C3562 /* Glacier2.framework in Copy Frameworks */,
+ B6C47B42C73933231F23D461 /* Ice.framework in Copy Frameworks */,
+ 71117AF155C0293DB4069859 /* IceAcm.bundle in Copy Frameworks */,
+ 2030C012E514B2194BDE3B5B /* IceAdapterDeactivation.bundle in Copy Frameworks */,
+ EC0FFEBE2D8E2E8AD4571D0D /* IceAdmin.bundle in Copy Frameworks */,
+ 7E27D91467D4863FB0478B46 /* IceAmi.bundle in Copy Frameworks */,
+ EE8CBBD47FFD86E4B393E41B /* IceBinding.bundle in Copy Frameworks */,
+ 47D40A85C6C668E3022AEDCE /* IceDefaultServant.bundle in Copy Frameworks */,
+ 79D43D82945EBBAF9ED423DB /* IceDefaultValue.bundle in Copy Frameworks */,
+ C41FDED39D22723E49CCD5C8 /* IceEnums.bundle in Copy Frameworks */,
+ E7B8A92F4AB413E533A06B2F /* IceExceptions.bundle in Copy Frameworks */,
+ C89990DA431C68973D7FA931 /* IceExceptionsAMD.bundle in Copy Frameworks */,
+ FF04F029F0EDCBB0D8BFBDE9 /* IceFacets.bundle in Copy Frameworks */,
+ 04E569CF55B39E547F02969B /* IceGrid.framework in Copy Frameworks */,
+ 7530F05BFD642DF2CE496BF0 /* IceHold.bundle in Copy Frameworks */,
+ 3D6C6574D0E964A64F226D97 /* IceImpl.framework in Copy Frameworks */,
+ DAD807528197DD22F090EA8B /* IceInfo.bundle in Copy Frameworks */,
+ F8E5EDF2F1C13C37AAD705F3 /* IceInheritance.bundle in Copy Frameworks */,
+ 8F72EE84B99A59A880CF5E68 /* IceInterceptor.bundle in Copy Frameworks */,
+ 109084F9ACA2F600044C309E /* IceInvoke.bundle in Copy Frameworks */,
+ E57F4F40C8E82DA29142C8AA /* IceLocation.bundle in Copy Frameworks */,
+ 31A3041EC0496417F2AEFBF6 /* IceObjects.bundle in Copy Frameworks */,
+ 69CAE9A9007AE6B11FA1EC7A /* IceOperations.bundle in Copy Frameworks */,
+ 48A480B46CCA0DCA8926C880 /* IceOperationsAMD.bundle in Copy Frameworks */,
+ 7F704DF81C780E51B4A7BCA5 /* IceOptional.bundle in Copy Frameworks */,
+ 50A2464D8179FA635F349213 /* IceOptionalAMD.bundle in Copy Frameworks */,
+ B7F5CFFFF060E25CFE9A6894 /* IceProperties.bundle in Copy Frameworks */,
+ 30DF3580ED7B8C0BF361E1B5 /* IceProxy.bundle in Copy Frameworks */,
+ F6091011DD6BF4BDB4970786 /* IceProxyAMD.bundle in Copy Frameworks */,
+ 1C933501BB26715DA3340BEB /* IceRetry.bundle in Copy Frameworks */,
+ 1779A8B94DB4E3E2FEBEA894 /* IceScope.bundle in Copy Frameworks */,
+ 209540B55B7A1A7DBF2FCC68 /* IceServantLocator.bundle in Copy Frameworks */,
+ 9D1E6C43DE61F075106E5539 /* IceServantLocatorAMD.bundle in Copy Frameworks */,
+ 73FA8B398036B33D70B9A004 /* IceServices.bundle in Copy Frameworks */,
+ EAF1A64B7B259007F6F8AAE5 /* IceSlicingExceptions.bundle in Copy Frameworks */,
+ 48B6CDE214B215A17397F99F /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */,
+ 1EB713715366551BFB74E447 /* IceSlicingObjects.bundle in Copy Frameworks */,
+ 50E4B8969DB2AEDB96DFEA61 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */,
+ 0AD01636B142847A722DC33E /* IceSSLConfiguration.bundle in Copy Frameworks */,
+ C6D60251659B303018F378AE /* IceStorm.framework in Copy Frameworks */,
+ 7DB3369066EB2FD41D6E84E4 /* IceStream.bundle in Copy Frameworks */,
+ 4071E4AB931E129B57805FFF /* IceTimeout.bundle in Copy Frameworks */,
+ EFD1AB232347F5850B9FC462 /* IceUdp.bundle in Copy Frameworks */,
+ F7E7EF7F20447080AB0C4A32 /* PromiseKit.framework in Copy Frameworks */,
+ 9DBCB4B6198A7D10363FBCF3 /* SliceEscape.bundle in Copy Frameworks */,
+ 302053A6F0E67A56D6B48E48 /* TestCommon.framework in Copy Frameworks */,
);
name = "Copy Frameworks";
runOnlyForDeploymentPostprocessing = 0;
};
- FF51A9F21744FA92219F545D /* Copy Symbols */ = {
+ 7A1DAD903573F751F091B1EE /* Copy Symbols */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
@@ -4173,3034 +4275,3034 @@
/* End PBXCopyFilesBuildPhase section */
/* Begin PBXFileReference section */
- 002A1F93B04C21ED5D7D0A59 /* StreamAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamAcceptor.cpp; path = ../cpp/src/Ice/ios/StreamAcceptor.cpp; sourceTree = "<group>"; };
- 006D663BDD6E4FFF082691DE /* UnknownSlicedValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UnknownSlicedValue.swift; path = src/Ice/UnknownSlicedValue.swift; sourceTree = "<group>"; };
- 01A223FD456711580DCF691D /* EndpointI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointI.swift; path = src/Ice/EndpointI.swift; sourceTree = "<group>"; };
- 01DB1D21D9147DC0B4A2C592 /* InstrumentationI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InstrumentationI.cpp; path = ../cpp/src/Ice/InstrumentationI.cpp; sourceTree = "<group>"; };
- 02A653BDDFE566D6362AC794 /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 02DEAA767E87169F7169F463 /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 0308C33B62C738A6BCCA5F8C /* Proxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Proxy.cpp; path = ../cpp/src/Ice/Proxy.cpp; sourceTree = "<group>"; };
- 034D5FF825FFE2A304A95FEB /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 0364945BE497EB41753D11E1 /* FactoryTableInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FactoryTableInit.cpp; path = ../cpp/src/Ice/FactoryTableInit.cpp; sourceTree = "<group>"; };
- 0470353BC071A5E153B343AB /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/optional/TestI.swift; sourceTree = "<group>"; };
- 0471648078F278BE3C56ED32 /* TraceUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TraceUtil.cpp; path = ../cpp/src/Ice/TraceUtil.cpp; sourceTree = "<group>"; };
- 04A46D91D6CD644BB8B5950A /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/scope/Server.swift; sourceTree = "<group>"; };
- 04D0F68E7D927E1D94AF8316 /* Endpoint.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Endpoint.ice; path = ../slice/Ice/Endpoint.ice; sourceTree = "<group>"; };
- 0551639DEFF9603D6E191663 /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 0557DD89BF16A3F68732BD7E /* PermissionsVerifier.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PermissionsVerifier.ice; path = ../slice/Glacier2/PermissionsVerifier.ice; sourceTree = "<group>"; };
- 05962EAA5614E67971DE4579 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/retry/AllTests.swift; sourceTree = "<group>"; };
- 0597A64D56F0F7AAAB7EE396 /* SSLInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLInfo.ice; path = ../slice/Glacier2/SSLInfo.ice; sourceTree = "<group>"; };
- 05CCFAC55D71DB3861715464 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultValue/Test.ice; sourceTree = "<group>"; };
- 05F39D9B55130C164A5DD5F3 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/interceptor/Client.swift; sourceTree = "<group>"; };
- 061B78B43B4D93F17EE8EA1F /* SecureTransportEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SecureTransportEngine.cpp; path = ../cpp/src/IceSSL/SecureTransportEngine.cpp; sourceTree = "<group>"; };
- 06D16CE3A5EE261D52409F5D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/invoke/Client.swift; sourceTree = "<group>"; };
- 06DF4B6E97814A6B7777C17B /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 070D5938E6B942DCE7794856 /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointI.cpp; path = ../cpp/src/Ice/EndpointI.cpp; sourceTree = "<group>"; };
- 07C19BFF26EA2D5A9BFF11C2 /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 07FB3A14A7C0F45E500CDD83 /* Convert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Convert.h; path = src/IceImpl/Convert.h; sourceTree = "<group>"; };
- 084D0AE194DE5B466ECB36A8 /* ObjectAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapter.mm; path = src/IceImpl/ObjectAdapter.mm; sourceTree = "<group>"; };
- 085ADF4042B82804E463AD53 /* SecureTransportTransceiverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SecureTransportTransceiverI.cpp; path = ../cpp/src/IceSSL/SecureTransportTransceiverI.cpp; sourceTree = "<group>"; };
- 08EB484467B2D88A84FDF24C /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/facets/Server.swift; sourceTree = "<group>"; };
- 095EE31DB49AA69220A140AE /* AppDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = test/TestDriver/iOS/AppDelegate.swift; sourceTree = "<group>"; };
- 095FD037AD9F4A3D5CE458DF /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 09A77AFA5D366FAFD7CDC0D5 /* libIceDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 09CD9498FF6E5A10C898C57D /* TraceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = TraceUtil.mm; path = src/IceImpl/TraceUtil.mm; sourceTree = "<group>"; };
- 09D1CEBFECBBCC3BE50933C6 /* ConnectionInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionInfo.ice; path = ../slice/IceSSL/ConnectionInfo.ice; sourceTree = "<group>"; };
- 09F67F6A3286C045388B9AB4 /* ConnectRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectRequestHandler.cpp; path = ../cpp/src/Ice/ConnectRequestHandler.cpp; sourceTree = "<group>"; };
- 0AC87AC3932C89B1E8784540 /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 0B14E705E07F0D0D4EA85665 /* ServantLocatorF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServantLocatorF.ice; path = ../slice/Ice/ServantLocatorF.ice; sourceTree = "<group>"; };
- 0B4A2E3C7C18AD9170E2DFEC /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 0B74FA74740DAA7C3B4E0242 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/facets/Collocated.swift; sourceTree = "<group>"; };
- 0BAE10E904FEE12EA4322283 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultServant/AllTests.swift; sourceTree = "<group>"; };
- 0C28D3AB8568CED3044958A9 /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Ice/Router.ice; sourceTree = "<group>"; };
- 0CF1A05BFD1DFE952E400A29 /* Key.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Key.ice; path = test/Slice/escape/Key.ice; sourceTree = "<group>"; };
- 0D0030849F57FCFF88081EB6 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Random.cpp; path = ../cpp/src/IceUtil/Random.cpp; sourceTree = "<group>"; };
- 0DCD33B375F6BD8CCFDC4458 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/objects/Client.swift; sourceTree = "<group>"; };
- 0DD700D41041F13457102359 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 0DDDA40A28D90D0803610374 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/objects/Test.ice; sourceTree = "<group>"; };
- 0DF6B8067E8C2C037234700B /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 0E4EC875DEC29DB7D493FABC /* ProtocolPluginFacade.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ProtocolPluginFacade.cpp; path = ../cpp/src/Ice/ProtocolPluginFacade.cpp; sourceTree = "<group>"; };
- 0E6E56298993D5697BF2E4ED /* SliceChecksumDict.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = SliceChecksumDict.ice; path = ../slice/Ice/SliceChecksumDict.ice; sourceTree = "<group>"; };
- 0F0FD20AA29FA651CD5E40BA /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/IceSSL/configuration/TestI.swift; sourceTree = "<group>"; };
- 0F400D91B52F6ED22A761CAF /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 0FBF93F2D51FCD340542AF0C /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 0FCC4DC0402E212F3FA567F5 /* UnsupportedAdminFacet.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = UnsupportedAdminFacet.mm; path = src/IceImpl/UnsupportedAdminFacet.mm; sourceTree = "<group>"; };
- 0FFA3A0EB2D8C3D84B1A3E88 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/operations/Client.swift; sourceTree = "<group>"; };
- 11143767904B7C97DBFD073E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultServant/Test.ice; sourceTree = "<group>"; };
- 1163261D5D5B1E89E8CD4F19 /* ServantLocatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocatorI.swift; path = test/Ice/servantLocator/ServantLocatorI.swift; sourceTree = "<group>"; };
- 12ED27C9D65B6E6DE0A5F8E3 /* ObjectAdapterFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapterFactory.cpp; path = ../cpp/src/Ice/ObjectAdapterFactory.cpp; sourceTree = "<group>"; };
- 12FA5204D52643D5E55E36CA /* OutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OutputStream.h; path = src/IceImpl/OutputStream.h; sourceTree = "<group>"; };
- 134A1DF02D07DE1B48BDD9E5 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/acm/Server.swift; sourceTree = "<group>"; };
- 1388C42229ECE520D4DE4E0A /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/scope/Client.swift; sourceTree = "<group>"; };
- 13F8DEDC3CF968015BFABDE6 /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 140ED17FF6BC91F62945A7CD /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/ExternalAccessory.framework; sourceTree = DEVELOPER_DIR; };
- 14187A00ECA6E25D40B21B3D /* Properties.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Properties.ice; path = ../slice/Ice/Properties.ice; sourceTree = "<group>"; };
- 1442BF82598B6CA3BA82A542 /* Options.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Options.cpp; path = ../cpp/src/IceUtil/Options.cpp; sourceTree = "<group>"; };
- 147D40176DDCC60B8AE883A8 /* IPEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IPEndpointI.cpp; path = ../cpp/src/Ice/IPEndpointI.cpp; sourceTree = "<group>"; };
- 152C6962CBD63C02057179CD /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 15CF7EB078034B9AD74C30C0 /* CountDownLatch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CountDownLatch.cpp; path = ../cpp/src/Ice/CountDownLatch.cpp; sourceTree = "<group>"; };
- 15DB23B1A38B3EDC5027330E /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/objects/Collocated.swift; sourceTree = "<group>"; };
- 163218AF8429A93CC6DB516A /* ObjectPrx.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectPrx.mm; path = src/IceImpl/ObjectPrx.mm; sourceTree = "<group>"; };
- 1659DF4E83656B630CFEB6BE /* ImplicitContext.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContext.mm; path = src/IceImpl/ImplicitContext.mm; sourceTree = "<group>"; };
- 16AA78E32597072B631DE358 /* Forward.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Forward.ice; path = test/Ice/objects/Forward.ice; sourceTree = "<group>"; };
- 16B802BE4C8C5176C6AAD741 /* RouterF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RouterF.ice; path = ../slice/Ice/RouterF.ice; sourceTree = "<group>"; };
- 172906A275B3BCFD142CB7F0 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/IceSSL/configuration/Test.ice; sourceTree = "<group>"; };
- 17440D04F7DAE85D3D43E242 /* BlobjectAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BlobjectAsync.swift; path = src/Ice/BlobjectAsync.swift; sourceTree = "<group>"; };
- 1750BB621C7A498239A5F893 /* Properties.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Properties.mm; path = src/IceImpl/Properties.mm; sourceTree = "<group>"; };
- 1783729E7EF7417321B68CBA /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 1894208F6C1914A62E4E9BDC /* ControllerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControllerI.swift; path = test/TestDriver/iOS/ControllerI.swift; sourceTree = "<group>"; };
- 19329E19D18D022FA95D9623 /* Twoways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Twoways.swift; path = test/Ice/operations/Twoways.swift; sourceTree = "<group>"; };
- 19751DD4AAFD07FFE294832E /* Convert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Convert.mm; path = src/IceImpl/Convert.mm; sourceTree = "<group>"; };
- 1A99EED2576E4B2717BF7F69 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/operations/TestAMDI.swift; sourceTree = "<group>"; };
- 1B2834C54144051028FC3E38 /* IceLocatorDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceLocatorDiscovery.ice; path = ../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice; sourceTree = "<group>"; };
- 1C1B28D6DE78776F9C8B0E3D /* Incoming.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Incoming.swift; path = src/Ice/Incoming.swift; sourceTree = "<group>"; };
- 1C9CF1CBF941960EEAB640B9 /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 1D7D240CBFD7A18DC4A68866 /* ConnectionInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionInfoFactory.swift; path = src/Ice/ConnectionInfoFactory.swift; sourceTree = "<group>"; };
- 1DDC3DDCA9986ADA036C197B /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/adapterDeactivation/TestI.swift; sourceTree = "<group>"; };
- 1EC3D745718F997AFE79335D /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/Glacier2/Session.ice; sourceTree = "<group>"; };
- 1FAC631A855367CC829C10BE /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultValue/Client.swift; sourceTree = "<group>"; };
- 1FD091EA548CF51A8AB261E4 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/optional/AllTests.swift; sourceTree = "<group>"; };
- 202045998BA207BE21F9742F /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 20E8394869BBE3A6A0E8B73A /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 21101A4A8B29F9285DA12AC8 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 217D1B8BD2609F6135197ED9 /* libIceLocatorDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 21B195F543EFC2F193A1DD0C /* libIceSSL C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceSSL C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 2283D69713D5C7438C9D5292 /* libIceIAP C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceIAP C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 228CABBDAD2E4CB85FA7A1C8 /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 229B9CB20575480C7011720F /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 22B8F11BF7DF3C7A9FCC50EE /* Communicator.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Communicator.ice; path = ../slice/Ice/Communicator.ice; sourceTree = "<group>"; };
- 22BFB6FDB6B68D3C3AFE5007 /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 24040ECF3C403E5A3612408E /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/exceptions/ServerAMD.swift; sourceTree = "<group>"; };
- 25D23CB8F54EFB2A4493A943 /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 25D63C9C027B6F0B799F1B46 /* Logger.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Logger.mm; path = src/IceImpl/Logger.mm; sourceTree = "<group>"; };
- 26922D4B3BD8D332A7E61B62 /* Version.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Version.ice; path = ../slice/Ice/Version.ice; sourceTree = "<group>"; };
- 2703F6DB8B1EDE26B743784A /* LocatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LocatorI.cpp; path = ../cpp/src/IceDiscovery/LocatorI.cpp; sourceTree = "<group>"; };
- 279D2A3D441126FBD205D935 /* TcpAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpAcceptor.cpp; path = ../cpp/src/Ice/TcpAcceptor.cpp; sourceTree = "<group>"; };
- 27F5894F948B4EABD275EA37 /* IceDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceDiscovery.ice; path = ../slice/IceDiscovery/IceDiscovery.ice; sourceTree = "<group>"; };
- 28567530F9E0A117AC6E5ADD /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/servantLocator/TestI.swift; sourceTree = "<group>"; };
- 286AC9F03F771730D5409FBD /* Controller.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Controller.ice; path = ../scripts/Controller.ice; sourceTree = "<group>"; };
- 29608E038E5A3187528EA62D /* ProcessI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ProcessI.swift; path = src/Ice/ProcessI.swift; sourceTree = "<group>"; };
- 2996F3F1F4CBAF613DAE139D /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EventHandler.cpp; path = ../cpp/src/Ice/EventHandler.cpp; sourceTree = "<group>"; };
- 2ACDB6B6A5E97650FDC72203 /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = test/IceSSL/configuration/../../../../cpp/test/IceSSL/certs; sourceTree = "<group>"; };
- 2B16B70F3C1E50EC4C26CF18 /* UnsupportedAdminFacet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnsupportedAdminFacet.h; path = src/IceImpl/UnsupportedAdminFacet.h; sourceTree = "<group>"; };
- 2B59DE6E7E31115EA6E52219 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 2BD61767B51929724F9CE9AF /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/enums/Server.swift; sourceTree = "<group>"; };
- 2BEC7B17F4C2963599CD0381 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/servantLocator/TestAMDI.swift; sourceTree = "<group>"; };
- 2BEEA6951A353148A9BEC38D /* SlicedData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SlicedData.cpp; path = ../cpp/src/Ice/SlicedData.cpp; sourceTree = "<group>"; };
- 2CAAB9F27FD8B9C3DBD01B84 /* EndpointInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointInfo.ice; path = ../slice/IceSSL/EndpointInfo.ice; sourceTree = "<group>"; };
- 2D9D35236C0D3E070BF1A2FC /* RequestHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestHandlerFactory.cpp; path = ../cpp/src/Ice/RequestHandlerFactory.cpp; sourceTree = "<group>"; };
- 2E087939A5341BEBE076ABE3 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/acm/TestI.swift; sourceTree = "<group>"; };
- 2E3061B136FE7ADBB8DB9114 /* TraceLevels.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TraceLevels.cpp; path = ../cpp/src/Ice/TraceLevels.cpp; sourceTree = "<group>"; };
- 2E45B0F3A37E9A497981BFBA /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/exceptions/TestAMDI.swift; sourceTree = "<group>"; };
- 2E99C484A830F853F840DA09 /* EndpointFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointFactory.cpp; path = ../cpp/src/Ice/EndpointFactory.cpp; sourceTree = "<group>"; };
- 2EBDA0CFEACD3987EFAD6252 /* UUID.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UUID.cpp; path = ../cpp/src/IceUtil/UUID.cpp; sourceTree = "<group>"; };
- 2F19C4044C942EC16995BEEF /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/objects/AllTests.swift; sourceTree = "<group>"; };
- 2F61780DB1A2DD448877BC09 /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 2FBCCFC5733CBDD1381BB260 /* OutputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OutputStream.swift; path = src/Ice/OutputStream.swift; sourceTree = "<group>"; };
- 2FEEB7A710CB728ED1FC66D6 /* libIceDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 30085C9646A152B2D6C70FB0 /* Object.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Object.cpp; path = ../cpp/src/Ice/Object.cpp; sourceTree = "<group>"; };
- 30294CCCA80848D1D31F2B4D /* AdminFacetFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdminFacetFactory.swift; path = src/Ice/AdminFacetFactory.swift; sourceTree = "<group>"; };
- 30651437FA2FDCBF346659C0 /* Value.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Value.cpp; path = ../cpp/src/Ice/Value.cpp; sourceTree = "<group>"; };
- 3098E4273D7B3498F83FD430 /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 30EB9BBF93E3D0A41ECF8A7E /* CtrlCHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CtrlCHandler.cpp; path = ../cpp/src/IceUtil/CtrlCHandler.cpp; sourceTree = "<group>"; };
- 30EF39EE8BEC9D00D24DC208 /* LocatorInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LocatorInfo.cpp; path = ../cpp/src/Ice/LocatorInfo.cpp; sourceTree = "<group>"; };
- 30EFA157E8237328FE7BBC82 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/timeout/AllTests.swift; sourceTree = "<group>"; };
- 311D4B7DADBD8F5B6AAFCCD3 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/acm/AllTests.swift; sourceTree = "<group>"; };
- 316C45F32FFF05031C96287D /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 318B4362356CAEAF664C3474 /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 32A77CBAF984A63EC964E91D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/objects/Client.swift; sourceTree = "<group>"; };
- 333B004D083BA02A84489B27 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/objects/TestI.swift; sourceTree = "<group>"; };
- 338881AF6EF560BF91024571 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/exceptions/Client.swift; sourceTree = "<group>"; };
- 33B27BAFFD57E6205ECED1F3 /* TcpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpConnector.cpp; path = ../cpp/src/Ice/TcpConnector.cpp; sourceTree = "<group>"; };
- 341C025BDAE25FEE0B7FC5BC /* RemoteLogger.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RemoteLogger.ice; path = ../slice/Ice/RemoteLogger.ice; sourceTree = "<group>"; };
- 34401CC6421E5D0E724E88FE /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/adapterDeactivation/Collocated.swift; sourceTree = "<group>"; };
- 35304D3B36A6003F44E7DB80 /* Shared.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Shared.cpp; path = ../cpp/src/IceUtil/Shared.cpp; sourceTree = "<group>"; };
- 361E8C29CA5E426DB25B7890 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/proxy/AllTests.swift; sourceTree = "<group>"; };
- 3704FDBEECAE57DB98E459C8 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/optional/Client.swift; sourceTree = "<group>"; };
- 376FEFA66EA60F109FCF6D7D /* SSLEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLEngine.cpp; path = ../cpp/src/IceSSL/SSLEngine.cpp; sourceTree = "<group>"; };
- 39DB31123BB2D5E35D2235EF /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/servantLocator/Server.swift; sourceTree = "<group>"; };
- 3A10F2C3A2F308F94F3EA3DD /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/inheritance/AllTests.swift; sourceTree = "<group>"; };
- 3ACC00EC3978AA2856397560 /* PluginF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PluginF.ice; path = ../slice/Ice/PluginF.ice; sourceTree = "<group>"; };
- 3AF3636501CCEBD661504929 /* Exception.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.mm; path = src/IceImpl/Exception.mm; sourceTree = "<group>"; };
- 3BEE997F490F1B90AE8FF904 /* Instrumentation.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Instrumentation.ice; path = ../slice/Ice/Instrumentation.ice; sourceTree = "<group>"; };
- 3BF1C026046DF91425D0C38C /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/binding/AllTests.swift; sourceTree = "<group>"; };
- 3C1C6EE40F63454C782F7A99 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 3C6244048BFBCED451F04E34 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/info/TestI.swift; sourceTree = "<group>"; };
- 3D0142D4874A0F09238F6358 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/optional/TestAMDI.swift; sourceTree = "<group>"; };
- 3DFEA80D8F03282B1A5F1A49 /* Initialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Initialize.swift; path = src/Ice/Initialize.swift; sourceTree = "<group>"; };
- 3E6B5AD7E9945BABB2529D9E /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 3E91DC3598F5343C8C478FFA /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/location/AllTests.swift; sourceTree = "<group>"; };
- 3EAF7BFE9FA00B536E33DBF9 /* Registry.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Registry.ice; path = ../slice/IceGrid/Registry.ice; sourceTree = "<group>"; };
- 3EC2422F7DF9807B4B59F69E /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 3EEFF728E276BAA633A852DB /* PropertiesAdmin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.mm; path = src/IceImpl/PropertiesAdmin.mm; sourceTree = "<group>"; };
- 3F187CE3CC99555A8AA5B48A /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 3FD34596289445D5D953E2D1 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/exceptions/Server.swift; sourceTree = "<group>"; };
- 3FFD751D514266DA7C58D2E0 /* Exception.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.ice; path = ../slice/IceGrid/Exception.ice; sourceTree = "<group>"; };
- 407F44656B90271C8A2F226F /* ObjectPrx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectPrx.h; path = src/IceImpl/ObjectPrx.h; sourceTree = "<group>"; };
- 4087F86ADF581D0B2D02509D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultServant/Client.swift; sourceTree = "<group>"; };
- 414F23E2600D35845151776A /* LocalObject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalObject.swift; path = src/Ice/LocalObject.swift; sourceTree = "<group>"; };
- 418EE006DB669F2A5A84699F /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 41A2A5BB85973F3BAD4272A9 /* ObjectAdapterF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapterF.ice; path = ../slice/Ice/ObjectAdapterF.ice; sourceTree = "<group>"; };
- 41C480006CA91E286A5DCD77 /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/exceptions/ServerPrivate.ice; sourceTree = "<group>"; };
- 41FE28E72BC1880B2DE5D510 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/servantLocator/TestAMD.ice; sourceTree = "<group>"; };
- 422312FEC2781FF24FC912DC /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/adapterDeactivation/AllTests.swift; sourceTree = "<group>"; };
- 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 43EBC589686D2144CFD9CB97 /* libIceSSL C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceSSL C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 444E24597A92CC772C9E7CC1 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/optional/ServerAMD.swift; sourceTree = "<group>"; };
- 446EFF7ADC4B5939C4305AAC /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/admin/Server.swift; sourceTree = "<group>"; };
- 476ABE3234D05812619CD33C /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/servantLocator/AllTests.swift; sourceTree = "<group>"; };
- 47F5CF26C0AE1F89B6636870 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/objects/AllTests.swift; sourceTree = "<group>"; };
- 4822C67556D463404A0882AD /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/operations/Collocated.swift; sourceTree = "<group>"; };
- 48274B4B5C7A372D63FBDBDD /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/services/Client.swift; sourceTree = "<group>"; };
- 48E3BED1D96A31F2947B3802 /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 4910D3CB2B4F6A0F1A13C73E /* OutgoingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OutgoingAsync.cpp; path = ../cpp/src/Ice/OutgoingAsync.cpp; sourceTree = "<group>"; };
- 4A12F6C795182A146C127E41 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/proxy/Test.ice; sourceTree = "<group>"; };
- 4A27B0F345D951957A21F772 /* SHA1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SHA1.cpp; path = ../cpp/src/Ice/SHA1.cpp; sourceTree = "<group>"; };
- 4A80AB46F43494F47663DC7C /* OpaqueEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OpaqueEndpointI.cpp; path = ../cpp/src/Ice/OpaqueEndpointI.cpp; sourceTree = "<group>"; };
- 4B3C0B4156CE5D3101AA5A41 /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Glacier2/Router.ice; sourceTree = "<group>"; };
- 4B6450679899F9D620764A08 /* Base64.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Base64.cpp; path = ../cpp/src/Ice/Base64.cpp; sourceTree = "<group>"; };
- 4B9C7AF49DDB6092DD82BC68 /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/objects/ServerPrivateAMD.ice; sourceTree = "<group>"; };
- 4BCC9499232F3ED821955D3F /* Buffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Buffer.cpp; path = ../cpp/src/Ice/Buffer.cpp; sourceTree = "<group>"; };
- 4D476AE3362B76958AE23E2E /* Communicator.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Communicator.mm; path = src/IceImpl/Communicator.mm; sourceTree = "<group>"; };
- 4D61FF69C82E45F50A9E57E6 /* Service.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Service.cpp; path = ../cpp/src/Ice/Service.cpp; sourceTree = "<group>"; };
- 4D7B36C5EA0278C6FF3B6C2F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceGrid/Info.plist; sourceTree = "<group>"; };
- 4E0AA9FBEC424181F02EF258 /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 4F8F6196067871FC2BD34A24 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/hold/Client.swift; sourceTree = "<group>"; };
- 5036FDEC396D3BE548AFD8BD /* BlobjectFacade.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = BlobjectFacade.mm; path = src/IceImpl/BlobjectFacade.mm; sourceTree = "<group>"; };
- 51AADD84F9FA058A6B272117 /* SecureTransportUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SecureTransportUtil.cpp; path = ../cpp/src/IceSSL/SecureTransportUtil.cpp; sourceTree = "<group>"; };
- 52660B66383EDC81626C3C67 /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 52B82665E4CA54E9C28CC521 /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 532CA154F23513782E12F0A9 /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Connection.h; path = src/IceImpl/Connection.h; sourceTree = "<group>"; };
- 5341AD79B0696BDEF6F41101 /* LocalObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LocalObject.cpp; path = ../cpp/src/Ice/LocalObject.cpp; sourceTree = "<group>"; };
- 5346CCCFF12A71D81795AD83 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 535F8D91A4A19A5BFDA99EE5 /* ConnectionI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionI.cpp; path = ../cpp/src/Ice/ConnectionI.cpp; sourceTree = "<group>"; };
- 540F2D25E70EBD9203E8BBB7 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/objects/ServerAMD.swift; sourceTree = "<group>"; };
- 553A566BD014B379277E2FEE /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/optional/Server.swift; sourceTree = "<group>"; };
- 56C3F3F779CF422987DC4B6A /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/binding/Server.swift; sourceTree = "<group>"; };
- 578762DACAF19CAE80B60584 /* BatchOneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOneways.swift; path = test/Ice/operations/BatchOneways.swift; sourceTree = "<group>"; };
- 57B0874282316DB417FD6AAD /* StreamEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamEndpointI.cpp; path = ../cpp/src/Ice/ios/StreamEndpointI.cpp; sourceTree = "<group>"; };
- 58001B947CD78939BE9CBFAD /* OutputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OutputUtil.cpp; path = ../cpp/src/IceUtil/OutputUtil.cpp; sourceTree = "<group>"; };
- 5885D5FFD3D6F50139F94947 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 58C2EB6C86D346799E4DE444 /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 594CACC0045DC32A52CF8674 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 59B7C9A405B6E7E1BDC347E2 /* InitializationData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InitializationData.swift; path = src/Ice/InitializationData.swift; sourceTree = "<group>"; };
- 59BDA919B81B67B5D58B445E /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 5A039512AF1CC9B8A5825882 /* TrustManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TrustManager.cpp; path = ../cpp/src/IceSSL/TrustManager.cpp; sourceTree = "<group>"; };
- 5A05394CC1EFA4C1C9619075 /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 5A4773F9B5A0740C005F9730 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 5A5BCF475EA7FB8C43E528DB /* LocalObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = LocalObject.mm; path = src/IceImpl/LocalObject.mm; sourceTree = "<group>"; };
- 5AAF5AB8C9CB904F380E26BA /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; };
- 5BAB9C69CF7FC392AAF1BFC4 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/servantLocator/Collocated.swift; sourceTree = "<group>"; };
- 5BB6BC7C53DEDF3D635D3357 /* RequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RequestHandler.cpp; path = ../cpp/src/Ice/RequestHandler.cpp; sourceTree = "<group>"; };
- 5E2229E45A7997941DA6BE77 /* StringUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StringUtil.cpp; path = ../cpp/src/IceUtil/StringUtil.cpp; sourceTree = "<group>"; };
- 5EF983122BD6F435855FC204 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 5F179019ED3F072B2C479ECD /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/inheritance/Server.swift; sourceTree = "<group>"; };
- 5F7E6B658E93B0786448C7D2 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/exceptions/ClientPrivate.ice; sourceTree = "<group>"; };
- 605659C3453F483E3F0728C9 /* LoggerWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LoggerWrapper.swift; path = src/Ice/LoggerWrapper.swift; sourceTree = "<group>"; };
- 60648E86C0107835E62067FD /* AdminFacetFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AdminFacetFactory.h; path = src/IceImpl/AdminFacetFactory.h; sourceTree = "<group>"; };
- 60FC1B97E8333ECD56618EFD /* MetricsObserverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MetricsObserverI.cpp; path = ../cpp/src/Ice/MetricsObserverI.cpp; sourceTree = "<group>"; };
- 61F2BD2F23764D117F1428E8 /* Locator.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Locator.ice; path = ../slice/Ice/Locator.ice; sourceTree = "<group>"; };
- 6222468F2E3276D9AE70AA72 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/proxy/TestAMD.ice; sourceTree = "<group>"; };
- 6272F7EF8D6AB7F8554B4EF5 /* Util.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Util.cpp; path = ../cpp/src/IceSSL/Util.cpp; sourceTree = "<group>"; };
- 62C9721EA6BFBD908FF0AACF /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/facets/Client.swift; sourceTree = "<group>"; };
- 62D24BEFA55328A8DBA6A3F4 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/info/Client.swift; sourceTree = "<group>"; };
- 62E33380F585921F9A5DC522 /* Current.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Current.ice; path = ../slice/Ice/Current.ice; sourceTree = "<group>"; };
- 632C58E40F3481563D19816D /* UtilException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UtilException.cpp; path = ../cpp/src/IceUtil/UtilException.cpp; sourceTree = "<group>"; };
- 633A5792AB562E47E7D9B487 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = src/IceImpl/Config.h; sourceTree = "<group>"; };
- 63786455698CC010D5E23870 /* RouterInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RouterInfo.cpp; path = ../cpp/src/Ice/RouterInfo.cpp; sourceTree = "<group>"; };
- 63A75A7C192FABC8F78F064A /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Glacier2/Metrics.ice; sourceTree = "<group>"; };
- 63E5E1D78291FE22A632016E /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
- 6474371F9D4B7F7290A2EFB9 /* ConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionFactory.cpp; path = ../cpp/src/Ice/ConnectionFactory.cpp; sourceTree = "<group>"; };
- 65102DC69C890429DD83B912 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/proxy/Client.swift; sourceTree = "<group>"; };
- 65FF5D01B46A1B78D9156A2B /* Main.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Main.storyboard; path = test/TestDriver/iOS/Base.lproj/Main.storyboard; sourceTree = "<group>"; };
- 664DE546AEA6A224A9B4EB0A /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 66591C1991E7BEA609899269 /* Oneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Oneways.swift; path = test/Ice/operations/Oneways.swift; sourceTree = "<group>"; };
- 66ADCED501F072AE2B41A2C1 /* DynamicLibrary.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = DynamicLibrary.cpp; path = ../cpp/src/Ice/DynamicLibrary.cpp; sourceTree = "<group>"; };
- 66C88F295990C3B47386A522 /* PluginFacade.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PluginFacade.ice; path = ../slice/IceGrid/PluginFacade.ice; sourceTree = "<group>"; };
- 676957D87A84B482C7552C1D /* ArgVector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ArgVector.cpp; path = ../cpp/src/Ice/ArgVector.cpp; sourceTree = "<group>"; };
- 67E0822E520FD5EE3BCFA0E1 /* ServantManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantManager.swift; path = src/Ice/ServantManager.swift; sourceTree = "<group>"; };
- 6856EAB3EE7EA36D427CBC6B /* SecureTransportPluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SecureTransportPluginI.cpp; path = ../cpp/src/IceSSL/SecureTransportPluginI.cpp; sourceTree = "<group>"; };
- 688BF037AD7D7B8AEEC5D1BF /* ServantManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ServantManager.cpp; path = ../cpp/src/Ice/ServantManager.cpp; sourceTree = "<group>"; };
- 692BD56989D55425DA5EE6FB /* Glacier2Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Glacier2Swift.h; path = src/Glacier2/Glacier2Swift.h; sourceTree = "<group>"; };
- 6B6D02010D405B25EDD70A6A /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/location/Client.swift; sourceTree = "<group>"; };
- 6C0BE5A338AFE985D3EC4A10 /* BatchRequestQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BatchRequestQueue.cpp; path = ../cpp/src/Ice/BatchRequestQueue.cpp; sourceTree = "<group>"; };
- 6D1138147C3E8462D27C7917 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/inheritance/Client.swift; sourceTree = "<group>"; };
- 6D1875F559842A9D7E7AAFEA /* UdpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UdpEndpointI.cpp; path = ../cpp/src/Ice/UdpEndpointI.cpp; sourceTree = "<group>"; };
- 6D41DC672B44BACE0CFB6341 /* SliceFlags.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceFlags.swift; path = src/Ice/SliceFlags.swift; sourceTree = "<group>"; };
- 6D5813108D63FD32A1C3EF34 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/IceSSL/configuration/AllTests.swift; sourceTree = "<group>"; };
- 6DE8323ECDD12C5252E02FF4 /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 6E12E6EDB9DBD7DA624D4BBF /* Logger.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Logger.ice; path = ../slice/Ice/Logger.ice; sourceTree = "<group>"; };
- 6E239CF9DF24E5B58D95D4D1 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/properties/Client.swift; sourceTree = "<group>"; };
- 6FBA8D76866321E998D2E5C6 /* ObjectAdapterI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapterI.cpp; path = ../cpp/src/Ice/ObjectAdapterI.cpp; sourceTree = "<group>"; };
- 70BF5BD1E0899C46253D13EE /* RouterF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RouterF.ice; path = ../slice/Glacier2/RouterF.ice; sourceTree = "<group>"; };
- 70D8F4B545E7DB529C8B6466 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/admin/AllTests.swift; sourceTree = "<group>"; };
- 710469C3B6096B0FE2B59B88 /* LookupI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LookupI.cpp; path = ../cpp/src/IceDiscovery/LookupI.cpp; sourceTree = "<group>"; };
- 7124A0C4FF563256CECFFD11 /* Acceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Acceptor.cpp; path = ../cpp/src/Ice/Acceptor.cpp; sourceTree = "<group>"; };
- 731F2E91CB97626EE8C88C79 /* Endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Endpoint.h; path = src/IceImpl/Endpoint.h; sourceTree = "<group>"; };
- 734A694F78C0E5DB148EC8DF /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 73A97154F0F1D051F4D4077F /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 73B967E49FF30C3D96F002C6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceStorm/Info.plist; sourceTree = "<group>"; };
- 73F31FDC9B8AF9605CA88F5C /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/retry/Collocated.swift; sourceTree = "<group>"; };
- 742F61019388E32D5A1F50AA /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/interceptor/Test.ice; sourceTree = "<group>"; };
- 74396E017957EAD78E8BB63F /* PromiseKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PromiseKit.framework; path = ../Carthage/Build/Mac/PromiseKit.framework; sourceTree = "<group>"; };
- 74414740EAAC22AD8701B446 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/binding/Client.swift; sourceTree = "<group>"; };
- 744D55EEF1A3510BDDD8BD3A /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/optional/Test.ice; sourceTree = "<group>"; };
- 75667BF18FEF533899F00773 /* LoggerWrapperI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoggerWrapperI.h; path = src/IceImpl/LoggerWrapperI.h; sourceTree = "<group>"; };
- 757CAAFA705B2AD13DCED72B /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 762D926265F709AAFABAE603 /* Descriptor.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Descriptor.ice; path = ../slice/IceGrid/Descriptor.ice; sourceTree = "<group>"; };
- 76699AC2F244DA402D7D78F9 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/hold/Test.ice; sourceTree = "<group>"; };
- 76D2C9478917EE70EA6C1EC8 /* Connection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connection.mm; path = src/IceImpl/Connection.mm; sourceTree = "<group>"; };
- 772409D1E7437F7872F894D7 /* Value.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Value.swift; path = src/Ice/Value.swift; sourceTree = "<group>"; };
- 77A945CF34D00CD45A128D1D /* Process.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Process.h; path = src/IceImpl/Process.h; sourceTree = "<group>"; };
- 7851F7E848C61460B1283AFA /* UdpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UdpConnector.cpp; path = ../cpp/src/Ice/UdpConnector.cpp; sourceTree = "<group>"; };
- 78E541B6D2455480311DA7B4 /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/exceptions/ServerPrivateAMD.ice; sourceTree = "<group>"; };
- 794CB5C40C28921A7F8899C9 /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 7AAF4AECDF16E4E1A198E5F6 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/udp/Server.swift; sourceTree = "<group>"; };
- 7AED884E1A03A999C4E251E5 /* Transceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Transceiver.cpp; path = ../cpp/src/Ice/Transceiver.cpp; sourceTree = "<group>"; };
- 7B6D005E02B69AF9FE56313C /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 7DC0C622594F31649B4E5A2D /* ProcessF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ProcessF.ice; path = ../slice/Ice/ProcessF.ice; sourceTree = "<group>"; };
- 7DE422E2E8A03B7162B8A1B1 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; };
- 7DE81360A81D49D120B6B4B5 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/invoke/Test.ice; sourceTree = "<group>"; };
- 7DEA75801F4667F22FBB0E23 /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 7DF1B0A92A1D0B1F6195641C /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/invoke/TestI.swift; sourceTree = "<group>"; };
- 7E2A4E9B62EE2D64338BEB6E /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = src/IceImpl/Exception.h; sourceTree = "<group>"; };
- 80341A9A47F4D0BAA1DB2C05 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/ami/Collocated.swift; sourceTree = "<group>"; };
- 809AE206F2AB806E345F2005 /* PropertiesI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesI.swift; path = src/Ice/PropertiesI.swift; sourceTree = "<group>"; };
- 812538EE9C39FA7D928A56CE /* ImplicitContextI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContextI.swift; path = src/Ice/ImplicitContextI.swift; sourceTree = "<group>"; };
- 813816EAFE765EBDEB00023C /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/proxy/Server.swift; sourceTree = "<group>"; };
- 81952BA176E8390931A31646 /* ObjectAdapterI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapterI.swift; path = src/Ice/ObjectAdapterI.swift; sourceTree = "<group>"; };
- 8232FBA739FC5D5AE2064B88 /* IceImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceImpl.h; path = src/IceImpl/IceImpl.h; sourceTree = "<group>"; };
- 82517F3B6E20C15F5332436C /* ThreadPool.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadPool.cpp; path = ../cpp/src/Ice/ThreadPool.cpp; sourceTree = "<group>"; };
- 8257492D8853CD3D7B39FDB7 /* PropertiesAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdminI.cpp; path = ../cpp/src/Ice/PropertiesAdminI.cpp; sourceTree = "<group>"; };
- 82A629797B7B8BB12073531E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/IceSSL/configuration/Server.swift; sourceTree = "<group>"; };
- 848EB2CE9593C1D8F923FD8C /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/objects/Server.swift; sourceTree = "<group>"; };
- 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PromiseKit.framework; path = ../Carthage/Build/iOS/PromiseKit.framework; sourceTree = "<group>"; };
- 84ECCCF740467E67DFD0E89F /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/exceptions/TestAMD.ice; sourceTree = "<group>"; };
- 85D3CC9185EE59A9C1AE8A07 /* Transceiver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Transceiver.mm; path = ../cpp/src/IceIAP/Transceiver.mm; sourceTree = "<group>"; };
- 863C25418E5FE7D05B9868CC /* OSLogLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OSLogLoggerI.cpp; path = ../cpp/src/Ice/OSLogLoggerI.cpp; sourceTree = "<group>"; };
- 86E120D7592D593667241A60 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 8735A9A652C31C2A3CC241E1 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultValue/AllTests.swift; sourceTree = "<group>"; };
- 874074FB03119B3A6BA9EFC1 /* Protocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Protocol.cpp; path = ../cpp/src/Ice/Protocol.cpp; sourceTree = "<group>"; };
- 8744E07211FFA1299AF62ED5 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/objects/ClientPrivate.ice; sourceTree = "<group>"; };
- 879A4949935A71A19295C582 /* SystemdJournalI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SystemdJournalI.cpp; path = ../cpp/src/Ice/SystemdJournalI.cpp; sourceTree = "<group>"; };
- 889F33329EA3D8479FFC0479 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Slice/escape/Client.swift; sourceTree = "<group>"; };
- 88A754C6553122C38633A5A1 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/udp/TestI.swift; sourceTree = "<group>"; };
- 88ABB01C5CFBF55B5120743F /* NetworkProxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = NetworkProxy.cpp; path = ../cpp/src/Ice/NetworkProxy.cpp; sourceTree = "<group>"; };
- 88C3EA2CCA4EBF7644C76309 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/enums/TestI.swift; sourceTree = "<group>"; };
- 8915DEC95041AA153E5919EE /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/ami/TestI.swift; sourceTree = "<group>"; };
- 8981DD5DCA70CBDB4DF515AB /* LaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = test/TestDriver/iOS/Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
- 89A51B23E16E26B5745CD61F /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 89F30B8D1202CAD2F2CD7C65 /* TwowaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TwowaysAMI.swift; path = test/Ice/operations/TwowaysAMI.swift; sourceTree = "<group>"; };
- 8A06049A48F122A4755875A1 /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointI.cpp; path = ../cpp/src/IceSSL/EndpointI.cpp; sourceTree = "<group>"; };
- 8A354429E9BF7539C167CEB8 /* libIceLocatorDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 8AC18A896A122DA629C069E6 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/udp/AllTests.swift; sourceTree = "<group>"; };
- 8B164AFAD89E661E862701E3 /* BlobjectFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlobjectFacade.h; path = src/IceImpl/BlobjectFacade.h; sourceTree = "<group>"; };
- 8C57C835F74C40FCAAC884ED /* ValueFactoryManagerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactoryManagerI.swift; path = src/Ice/ValueFactoryManagerI.swift; sourceTree = "<group>"; };
- 8D032685700F557C2A42FC11 /* AcceptorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = AcceptorI.cpp; path = ../cpp/src/IceSSL/AcceptorI.cpp; sourceTree = "<group>"; };
- 8D864A3AEB83284835B73866 /* Notifications.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Notifications.mm; path = ../cpp/src/Ice/ios/Notifications.mm; sourceTree = "<group>"; };
- 8E319CE1E162A972A783C06A /* libIce C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 8E6A82D7E03BC98B98FD1BD9 /* EndpointTypes.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointTypes.ice; path = ../slice/Ice/EndpointTypes.ice; sourceTree = "<group>"; };
- 8E8BB0CB5BF9A48E9E7CC2BF /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 8F0C2E31D1A2B60BC0B612B7 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/retry/Test.ice; sourceTree = "<group>"; };
- 8F990810B7617DA7106535C4 /* LoggerUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LoggerUtil.cpp; path = ../cpp/src/Ice/LoggerUtil.cpp; sourceTree = "<group>"; };
- 8FA7AC1292C0E991DF4BA8E4 /* Incoming.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Incoming.cpp; path = ../cpp/src/Ice/Incoming.cpp; sourceTree = "<group>"; };
- 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 8FD15FDDBA73FF5502EBB212 /* SlicedData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SlicedData.swift; path = src/Ice/SlicedData.swift; sourceTree = "<group>"; };
- 905AE808B7C689F60497E5CB /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/facets/TestI.swift; sourceTree = "<group>"; };
- 9090E70CCAD0C33985B09965 /* Identity.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Identity.ice; path = ../slice/Ice/Identity.ice; sourceTree = "<group>"; };
- 91BD324C4B2EF75A964F7C98 /* RFC2253.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RFC2253.cpp; path = ../cpp/src/IceSSL/RFC2253.cpp; sourceTree = "<group>"; };
- 91D514977778BE3BB6D79A7B /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/exceptions/AllTests.swift; sourceTree = "<group>"; };
- 91DCFB9FB66B3F09AD4D70C9 /* Cond.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Cond.cpp; path = ../cpp/src/Ice/Cond.cpp; sourceTree = "<group>"; };
- 91FCB36988ECF92BF0E1B88A /* IceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IceUtil.mm; path = src/IceImpl/IceUtil.mm; sourceTree = "<group>"; };
- 925DB5248C14B77BC3D63815 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/servantLocator/Client.swift; sourceTree = "<group>"; };
- 93A149AA95BCE53B8FFC7805 /* ThreadException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ThreadException.cpp; path = ../cpp/src/IceUtil/ThreadException.cpp; sourceTree = "<group>"; };
- 93D9509A39BDFCB18004A379 /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 93FE3BB13A699CC144FAE518 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/timeout/TestI.swift; sourceTree = "<group>"; };
- 94296D6FA0B4EAD77524CA74 /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/IceStorm/Metrics.ice; sourceTree = "<group>"; };
- 9433B4B70F6482C4CE2C7037 /* WSTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WSTransceiver.cpp; path = ../cpp/src/Ice/WSTransceiver.cpp; sourceTree = "<group>"; };
- 94855C851EE72D36CB469925 /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = ../certs; sourceTree = "<group>"; };
- 95BF6E1AA2CD495DABDDD13E /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/exceptions/ServerAMD.swift; sourceTree = "<group>"; };
- 95D89375D28F76DDF26C3903 /* RetryQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RetryQueue.cpp; path = ../cpp/src/Ice/RetryQueue.cpp; sourceTree = "<group>"; };
- 9657545DF1F8621BB42054C9 /* Exception.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Exception.swift; path = src/Ice/Exception.swift; sourceTree = "<group>"; };
- 9684550CFCD0DCA46C26AAD0 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/adapterDeactivation/Test.ice; sourceTree = "<group>"; };
- 9688D2BFFD3AB9CA38696B81 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/info/Test.ice; sourceTree = "<group>"; };
- 96C14F92E4BD1A78F04D6B73 /* PropertyNames.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertyNames.cpp; path = ../cpp/src/Ice/PropertyNames.cpp; sourceTree = "<group>"; };
- 96CA3097D4D2A913A3FB3E8F /* ClassResolver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClassResolver.swift; path = src/Ice/ClassResolver.swift; sourceTree = "<group>"; };
- 972219A24F2C5C5705191006 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/retry/TestI.swift; sourceTree = "<group>"; };
- 97BB4C9ABE94E3DC15D15C74 /* WSConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WSConnector.cpp; path = ../cpp/src/Ice/WSConnector.cpp; sourceTree = "<group>"; };
- 97BEA79F0125D279F22C3183 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/acm/Test.ice; sourceTree = "<group>"; };
- 97F3894AB33DBF74E3804C48 /* ConnectionRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionRequestHandler.cpp; path = ../cpp/src/Ice/ConnectionRequestHandler.cpp; sourceTree = "<group>"; };
- 97F654181891F3B80AA29092 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 98437340B4E11617BBA3F01A /* EndpointI.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointI.mm; path = ../cpp/src/IceIAP/EndpointI.mm; sourceTree = "<group>"; };
- 98F5968AA05F599244249E40 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/binding/TestI.swift; sourceTree = "<group>"; };
- 99666CECEA6438765B394579 /* CertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CertificateI.cpp; path = ../cpp/src/IceSSL/CertificateI.cpp; sourceTree = "<group>"; };
- 996ABE607D675178248C81FC /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; };
- 9A0CD78B16D57E052BF40A4B /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- 9AC337C228145DA2BDA97C70 /* WSEndpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WSEndpoint.cpp; path = ../cpp/src/Ice/WSEndpoint.cpp; sourceTree = "<group>"; };
- 9B074A6A8908048DAE95EBCA /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/servantLocator/Test.ice; sourceTree = "<group>"; };
- 9B1276DE9905199A2B5214F9 /* CommunicatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CommunicatorI.cpp; path = ../cpp/src/Ice/CommunicatorI.cpp; sourceTree = "<group>"; };
- 9B59BE30057C1D6398E3853C /* OptionalFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OptionalFormat.swift; path = src/Ice/OptionalFormat.swift; sourceTree = "<group>"; };
- 9B84CFA5C141E9FA1769464F /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FileUtil.cpp; path = ../cpp/src/IceUtil/FileUtil.cpp; sourceTree = "<group>"; };
- 9B8745353A2FAF2E521B79E5 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Glacier2/Info.plist; sourceTree = "<group>"; };
- 9B9E64C4322C1EE4927BC863 /* PropertiesI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesI.cpp; path = ../cpp/src/Ice/PropertiesI.cpp; sourceTree = "<group>"; };
- 9C03AE788FB60178B55DA0DC /* ObjectAdapter.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapter.ice; path = ../slice/Ice/ObjectAdapter.ice; sourceTree = "<group>"; };
- 9C2EC602112629E6DBF7B880 /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/IceGrid/Session.ice; sourceTree = "<group>"; };
- 9C54D77862357F5D5EBB46E3 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/enums/AllTests.swift; sourceTree = "<group>"; };
- 9C7EED74A36BBFBB80D7586D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/hold/TestI.swift; sourceTree = "<group>"; };
- 9CC6A0D58EF34E75E8886700 /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Thread.cpp; path = ../cpp/src/Ice/Thread.cpp; sourceTree = "<group>"; };
- 9CDFC4CF614616375CE09C76 /* Exception.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.cpp; path = ../cpp/src/Ice/Exception.cpp; sourceTree = "<group>"; };
- 9D9AAADD7F79C7BC26E00BB1 /* LocatorF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = LocatorF.ice; path = ../slice/Ice/LocatorF.ice; sourceTree = "<group>"; };
- 9DBAFB63AB99E112958DDC68 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/exceptions/TestAMD.ice; sourceTree = "<group>"; };
- 9DBD11846C6A0B8CB5794F9F /* Network.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Network.cpp; path = ../cpp/src/Ice/Network.cpp; sourceTree = "<group>"; };
- 9EBAD84EC2FEA68FA8C18372 /* EndpointFactoryManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointFactoryManager.cpp; path = ../cpp/src/Ice/EndpointFactoryManager.cpp; sourceTree = "<group>"; };
- 9F3677CB2FA10D16B41580F8 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PluginI.cpp; path = ../cpp/src/IceSSL/PluginI.cpp; sourceTree = "<group>"; };
- 9FB2E368B28852F98DEC6680 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = test/TestCommon/Info.plist; sourceTree = "<group>"; };
- 9FBE1ABE84062848AA5FCF44 /* IceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceUtil.h; path = src/IceImpl/IceUtil.h; sourceTree = "<group>"; };
- 9FD432169D0F2D2F20892D4D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/scope/Test.ice; sourceTree = "<group>"; };
- 9FED4EE7B5090FE0DAE755DC /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- A02E61AC41C5A07BE70796C5 /* EndpointInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointInfoFactory.swift; path = src/Ice/EndpointInfoFactory.swift; sourceTree = "<group>"; };
- A0662C2D0BCCED8D856B24A3 /* ImplicitContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImplicitContext.h; path = src/IceImpl/ImplicitContext.h; sourceTree = "<group>"; };
- A0D695F59B98F23481D6A838 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PluginI.cpp; path = ../cpp/src/IceDiscovery/PluginI.cpp; sourceTree = "<group>"; };
- A1974A9DFCD5CE75829EEDDB /* StreamSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamSocket.cpp; path = ../cpp/src/Ice/StreamSocket.cpp; sourceTree = "<group>"; };
- A1D63C4A474EDCB9B48A8908 /* NativePropertiesAdmin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NativePropertiesAdmin.swift; path = src/Ice/NativePropertiesAdmin.swift; sourceTree = "<group>"; };
- A34C37443D800851EE183689 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/exceptions/Test.ice; sourceTree = "<group>"; };
- A4FFFF62292DDE44557B4482 /* SliceInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceInfo.swift; path = src/Ice/SliceInfo.swift; sourceTree = "<group>"; };
- A52B06D312D79F5422D0081A /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/objects/TestAMD.ice; sourceTree = "<group>"; };
- A564D8841C0E4D61A91B76D4 /* LocalExceptionFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionFactory.swift; path = src/Ice/LocalExceptionFactory.swift; sourceTree = "<group>"; };
- A59F882486D21E98C368D3C8 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/acm/Client.swift; sourceTree = "<group>"; };
- A656B7EA027D8EED38F05BA9 /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- A69BC365372EB27631A886EC /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/servantLocator/ServerAMD.swift; sourceTree = "<group>"; };
- A7B013E5D11F9D9B67E1C837 /* UserAccountMapper.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = UserAccountMapper.ice; path = ../slice/IceGrid/UserAccountMapper.ice; sourceTree = "<group>"; };
- A8C85A49004476632B254372 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/ami/Client.swift; sourceTree = "<group>"; };
- A982546A8BFEC96551798AFC /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/exceptions/Collocated.swift; sourceTree = "<group>"; };
- A9A124033A824161B2DFDF12 /* MutexProtocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MutexProtocol.cpp; path = ../cpp/src/IceUtil/MutexProtocol.cpp; sourceTree = "<group>"; };
- A9AF41322A6116F0AC78A561 /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- AA6BB836B7BFC1BFB90E33B7 /* IceStormSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceStormSwift.h; path = src/IceStorm/IceStormSwift.h; sourceTree = "<group>"; };
- AB0A0FB5971AA10641F5FFDF /* Properties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Properties.h; path = src/IceImpl/Properties.h; sourceTree = "<group>"; };
- AB7DA486D9F91B070B84F439 /* WSAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = WSAcceptor.cpp; path = ../cpp/src/Ice/WSAcceptor.cpp; sourceTree = "<group>"; };
- ABAFBED8C90A204AFA67BBF4 /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- ABB07381540E04817390A3ED /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/optional/TestAMD.ice; sourceTree = "<group>"; };
- AC2DD492B9AE60EC7E84873B /* Initialize.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Initialize.cpp; path = ../cpp/src/Ice/Initialize.cpp; sourceTree = "<group>"; };
- AC8267215D8D6D9C5B4EF6CD /* OutputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = OutputStream.cpp; path = ../cpp/src/Ice/OutputStream.cpp; sourceTree = "<group>"; };
- AC9D24A849C7A636BD399949 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/proxy/ServerAMD.swift; sourceTree = "<group>"; };
- AC9E443E70BA5034FEFCD21E /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/inheritance/TestI.swift; sourceTree = "<group>"; };
- ACF4E8E01FC452B93358E977 /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; };
- ADA3BC4A8C6D8692B2DF2AA9 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Instance.cpp; path = ../cpp/src/IceSSL/Instance.cpp; sourceTree = "<group>"; };
- ADE87D0700232F5E9EC96C80 /* ImplicitContextF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContextF.ice; path = ../slice/Ice/ImplicitContextF.ice; sourceTree = "<group>"; };
- AE7536F921A465ACD1F7FA00 /* InputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InputStream.cpp; path = ../cpp/src/Ice/InputStream.cpp; sourceTree = "<group>"; };
- AE9D2B607B5204A4D8E9624F /* ImplicitContext.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContext.ice; path = ../slice/Ice/ImplicitContext.ice; sourceTree = "<group>"; };
- AED68CB5181C8322535C8B0F /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/admin/TestI.swift; sourceTree = "<group>"; };
- AFCD7006F87053DD280B355D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/facets/Test.ice; sourceTree = "<group>"; };
- B041A98294800176C75C97EF /* Connector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Connector.cpp; path = ../cpp/src/Ice/Connector.cpp; sourceTree = "<group>"; };
- B0ED3F4472239D27B9CDAC15 /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- B11CCA200A0ADBCA9854BA2E /* IconvStringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IconvStringConverter.cpp; path = ../cpp/src/Ice/IconvStringConverter.cpp; sourceTree = "<group>"; };
- B171708BCC523826FFA93B00 /* InstrumentationF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = InstrumentationF.ice; path = ../slice/Ice/InstrumentationF.ice; sourceTree = "<group>"; };
- B224AB6DD347E466648E1E0A /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/scope/TestI.swift; sourceTree = "<group>"; };
- B2375B428874B348D86BD212 /* LocalObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LocalObject.h; path = src/IceImpl/LocalObject.h; sourceTree = "<group>"; };
- B2D710C4A79835F70B72D08A /* libIce C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- B3015F5A4D587FFE1F446C5E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/enums/Test.ice; sourceTree = "<group>"; };
- B331105BF98C61980A1A1C39 /* LoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LoggerI.cpp; path = ../cpp/src/Ice/LoggerI.cpp; sourceTree = "<group>"; };
- B3977282F7A97C8FAFAC2272 /* PropertiesF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesF.ice; path = ../slice/Ice/PropertiesF.ice; sourceTree = "<group>"; };
- B49E3D640D575476EDF754DE /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- B57BB1B00847273287A8173F /* Timer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Timer.cpp; path = ../cpp/src/Ice/Timer.cpp; sourceTree = "<group>"; };
- B586192AD27D885AC465F3CE /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/admin/Client.swift; sourceTree = "<group>"; };
- B5D8735FF60B61D4FC93C43B /* EndpointInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointInfo.ice; path = ../slice/IceIAP/EndpointInfo.ice; sourceTree = "<group>"; };
- B5F9951678F470F12C213085 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Instance.cpp; path = ../cpp/src/Ice/Instance.cpp; sourceTree = "<group>"; };
- B5FBA5C3DA77A619F58782F7 /* PropertiesAdminI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesAdminI.swift; path = src/Ice/PropertiesAdminI.swift; sourceTree = "<group>"; };
- B765395F779020FC5A5487F2 /* Process.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.mm; path = src/IceImpl/Process.mm; sourceTree = "<group>"; };
- B8A655E25C1FF11282E3A8F6 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/ami/AllTests.swift; sourceTree = "<group>"; };
- B8DC2C52549E7BE254AE5AD5 /* ConnectionF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionF.ice; path = ../slice/Ice/ConnectionF.ice; sourceTree = "<group>"; };
- B945AE7D2A5E38D6EF889CCE /* HttpParser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = HttpParser.cpp; path = ../cpp/src/Ice/HttpParser.cpp; sourceTree = "<group>"; };
- B99D534A8CA5522365B9B4D7 /* PropertiesAdmin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropertiesAdmin.h; path = src/IceImpl/PropertiesAdmin.h; sourceTree = "<group>"; };
- BA8101A60EED9B96E5B22B7F /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- BB16C7E23D561A45A823E737 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/retry/Client.swift; sourceTree = "<group>"; };
- BB85FA1A85C83E850BEB6B6D /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/exceptions/AllTests.swift; sourceTree = "<group>"; };
- BC022737AB290471B0DB3DD4 /* Admin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Admin.ice; path = ../slice/IceGrid/Admin.ice; sourceTree = "<group>"; };
- BD3B63910D4CB7D40D357BE8 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- BD42BAADD50274E65B29EE2F /* ValueFactory.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ValueFactory.ice; path = ../slice/Ice/ValueFactory.ice; sourceTree = "<group>"; };
- BD62BD11BBAE8426F02120BF /* ACM.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ACM.cpp; path = ../cpp/src/Ice/ACM.cpp; sourceTree = "<group>"; };
- BE04BC59D9267C53B2E2E426 /* MetricsAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MetricsAdminI.cpp; path = ../cpp/src/Ice/MetricsAdminI.cpp; sourceTree = "<group>"; };
- BEDDC5B3EF92448FC0068999 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/objects/TestAMDI.swift; sourceTree = "<group>"; };
- C0B463F676E7D216881CBD82 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/exceptions/TestAMDI.swift; sourceTree = "<group>"; };
- C0C6303C93DFEDECE6EB5DEF /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/operations/AllTests.swift; sourceTree = "<group>"; };
- C0CD22B04F5BAB9D3EC504A9 /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/objects/ServerPrivate.ice; sourceTree = "<group>"; };
- C0D21CD021F167AEAD53D54A /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/info/AllTests.swift; sourceTree = "<group>"; };
- C16D3B2B5C0920A104C079FF /* Clash.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Clash.ice; path = test/Slice/escape/Clash.ice; sourceTree = "<group>"; };
- C235CDCE4E60CE8402C56D30 /* ProxyFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ProxyFactory.cpp; path = ../cpp/src/Ice/ProxyFactory.cpp; sourceTree = "<group>"; };
- C2A22B3B3EF5EE88BDA1C081 /* FileParser.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = FileParser.ice; path = ../slice/IceGrid/FileParser.ice; sourceTree = "<group>"; };
- C3EB1A27FAA5ACE22108F3FA /* LoggerF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = LoggerF.ice; path = ../slice/Ice/LoggerF.ice; sourceTree = "<group>"; };
- C486A2A63E827BCDB5D00E12 /* StringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StringConverter.cpp; path = ../cpp/src/IceUtil/StringConverter.cpp; sourceTree = "<group>"; };
- C4BA3625B23FF8B62705AFE7 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/timeout/Client.swift; sourceTree = "<group>"; };
- C5B9882C199FA2525680ED41 /* TcpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpTransceiver.cpp; path = ../cpp/src/Ice/TcpTransceiver.cpp; sourceTree = "<group>"; };
- C5B9FC9AA6346E56C974A0E0 /* CollocatedRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = CollocatedRequestHandler.cpp; path = ../cpp/src/Ice/CollocatedRequestHandler.cpp; sourceTree = "<group>"; };
- C65B6C7BED85697CBEA44EAA /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- C66D3DAD3E482FD08A3DA82F /* TcpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TcpEndpointI.cpp; path = ../cpp/src/Ice/TcpEndpointI.cpp; sourceTree = "<group>"; };
- C69408EA18903F90CF12E137 /* Connector.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connector.mm; path = ../cpp/src/IceIAP/Connector.mm; sourceTree = "<group>"; };
- C6B3F64CC2D6760BFCBC3E16 /* InputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputStream.swift; path = src/Ice/InputStream.swift; sourceTree = "<group>"; };
- C74909BB863CC39AAC549FE3 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; };
- C7E63AE45231F2F2078ED04A /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = test/TestDriver/iOS/Assets.xcassets; sourceTree = "<group>"; };
- C81E1C63F2ECA36BFF45C065 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/retry/Server.swift; sourceTree = "<group>"; };
- C8694BDBD11F2B3C0C6735E3 /* Endpoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Endpoint.mm; path = src/IceImpl/Endpoint.mm; sourceTree = "<group>"; };
- C86D9EB201376B093A888135 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/IceSSL/configuration/Client.swift; sourceTree = "<group>"; };
- C8E60A264C8456DE0ED5C966 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/location/Test.ice; sourceTree = "<group>"; };
- C9BA1FB81A16EBA643FD14FD /* StreamConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamConnector.cpp; path = ../cpp/src/Ice/ios/StreamConnector.cpp; sourceTree = "<group>"; };
- C9CAE747331B4404A63FE18A /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/proxy/Collocated.swift; sourceTree = "<group>"; };
- C9F567597B3E2656038F84F4 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/exceptions/TestI.swift; sourceTree = "<group>"; };
- CA74DA0687BFE8C109976FF5 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/scope/AllTests.swift; sourceTree = "<group>"; };
- CAA48833BF8F037D16C27B2F /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/objects/TestI.swift; sourceTree = "<group>"; };
- CB079155D6B2B714CD02C702 /* ConsoleUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConsoleUtil.cpp; path = ../cpp/src/IceUtil/ConsoleUtil.cpp; sourceTree = "<group>"; };
- CB87D2A2C1C7BBC4369A68F6 /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- CC29C4495F4355C22DAE2870 /* ObjectFactory.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectFactory.ice; path = ../slice/Ice/ObjectFactory.ice; sourceTree = "<group>"; };
- CC75B16FF436AC4A5D2A1B23 /* TestCommon.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestCommon.swift; path = test/TestCommon/TestCommon.swift; sourceTree = "<group>"; };
- CCC228ED34AB80D8D5D263C0 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/exceptions/Server.swift; sourceTree = "<group>"; };
- CCC6391BF44ABA9EA371F984 /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- CD14CFE67744C5F820EF9517 /* CommunicatorF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = CommunicatorF.ice; path = ../slice/Ice/CommunicatorF.ice; sourceTree = "<group>"; };
- CD9A7AAD93C61A24508A0108 /* Mutex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mutex.swift; path = src/Ice/Mutex.swift; sourceTree = "<group>"; };
- CF2ED98FA8B64E0AADEFAB7D /* ConnectionI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionI.swift; path = src/Ice/ConnectionI.swift; sourceTree = "<group>"; };
- CF7CAC785DC6DD5CF3D1EBDF /* Communicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Communicator.h; path = src/IceImpl/Communicator.h; sourceTree = "<group>"; };
- CFC0001929385A130EAFD24B /* IceGridSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceGridSwift.h; path = src/IceGrid/IceGridSwift.h; sourceTree = "<group>"; };
- D0DC93B091DBEFF7FE8E604F /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/operations/Test.ice; sourceTree = "<group>"; };
- D17047642664F3ADD4EF85D9 /* FormatType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatType.swift; path = src/Ice/FormatType.swift; sourceTree = "<group>"; };
- D198723359CE7598DAED2EEB /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- D2196E4A5420376F7F320400 /* Reference.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Reference.cpp; path = ../cpp/src/Ice/Reference.cpp; sourceTree = "<group>"; };
- D287C5BD715B37D926214E22 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/invoke/Server.swift; sourceTree = "<group>"; };
- D33BA2168DC65471FF754DE9 /* ReferenceFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ReferenceFactory.cpp; path = ../cpp/src/Ice/ReferenceFactory.cpp; sourceTree = "<group>"; };
- D37101549BEDABD23E8A508F /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- D3AF6048FF1364F79B74A51B /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/facets/AllTests.swift; sourceTree = "<group>"; };
- D3EE1B4FEF0422D2F4B67156 /* FacetMap.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = FacetMap.ice; path = ../slice/Ice/FacetMap.ice; sourceTree = "<group>"; };
- D4A07ED7D698A3B54594C912 /* SecureTransportCertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SecureTransportCertificateI.cpp; path = ../cpp/src/IceSSL/SecureTransportCertificateI.cpp; sourceTree = "<group>"; };
- D6BE4397021F3C34B7564B4E /* EndpointF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointF.ice; path = ../slice/Ice/EndpointF.ice; sourceTree = "<group>"; };
- D6C044ED53A7D3CF886C85EB /* ObserverHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ObserverHelper.cpp; path = ../cpp/src/Ice/ObserverHelper.cpp; sourceTree = "<group>"; };
- D75D40BC53137EF8657BC4EE /* ServantLocator.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServantLocator.ice; path = ../slice/Ice/ServantLocator.ice; sourceTree = "<group>"; };
- D80900AAE1BA05236D22A848 /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- D858BF30039875BFFF7B4678 /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Time.cpp; path = ../cpp/src/IceUtil/Time.cpp; sourceTree = "<group>"; };
- D8B59B23A4678E945FD1C27A /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/operations/TestAMD.ice; sourceTree = "<group>"; };
- D8E357652C5E3E692CCA7295 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/exceptions/Test.ice; sourceTree = "<group>"; };
- D99433C106AE10804BD3CFDA /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/ami/Test.ice; sourceTree = "<group>"; };
- D9FD8EEEC96A3E1539F3ED89 /* ConnectorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectorI.cpp; path = ../cpp/src/IceSSL/ConnectorI.cpp; sourceTree = "<group>"; };
- DA692E2EA6088AE2EAA1411D /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/location/Server.swift; sourceTree = "<group>"; };
- DB53D7F75100F4CF52B8DC8F /* RegisterPluginsInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RegisterPluginsInit.cpp; path = ../cpp/src/Ice/RegisterPluginsInit.cpp; sourceTree = "<group>"; };
- DB595DC33109E5DA276AC0DF /* ViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewController.swift; path = test/TestDriver/iOS/ViewController.swift; sourceTree = "<group>"; };
- DB6F34328505B8307EF4E2DC /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/enums/Client.swift; sourceTree = "<group>"; };
- DC2AD126C492934CEB62BD83 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/timeout/Server.swift; sourceTree = "<group>"; };
- DC36BC6D1565E1D09AFAE38F /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/objects/Server.swift; sourceTree = "<group>"; };
- DC984CB3FFCC2EC6CE323941 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Ice/Info.plist; sourceTree = "<group>"; };
- DD4858602F52D9C980D4A055 /* ImplicitContextI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContextI.cpp; path = ../cpp/src/Ice/ImplicitContextI.cpp; sourceTree = "<group>"; };
- DD7671A9B2009FB71C4C5844 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/operations/Server.swift; sourceTree = "<group>"; };
- DD8BE18EC250A1A64787067E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/admin/Test.ice; sourceTree = "<group>"; };
- DDBEBA80F9238CA9CBFB341A /* SysLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SysLoggerI.cpp; path = ../cpp/src/Ice/SysLoggerI.cpp; sourceTree = "<group>"; };
- DF32ECF6778150AC88459CEF /* LocalException.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = LocalException.ice; path = ../slice/Ice/LocalException.ice; sourceTree = "<group>"; };
- DFCBE8EAA93ED627F6C1336D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/udp/Client.swift; sourceTree = "<group>"; };
- E029349141DF6DF8F2B6BA54 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/objects/Test.ice; sourceTree = "<group>"; };
- E03F4146023712CCF5C90907 /* Process.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.ice; path = ../slice/Ice/Process.ice; sourceTree = "<group>"; };
- E0AD95718A26B63BB13863BA /* Proxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Proxy.swift; path = src/Ice/Proxy.swift; sourceTree = "<group>"; };
- E11927D502E93CF55F23E448 /* IncomingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = IncomingAsync.cpp; path = ../cpp/src/Ice/IncomingAsync.cpp; sourceTree = "<group>"; };
- E19DC19296ABDDB29732AEB2 /* RecMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = RecMutex.cpp; path = ../cpp/src/IceUtil/RecMutex.cpp; sourceTree = "<group>"; };
- E1A2C7F234AB794104399BAA /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- E1EB1A3E272FDA0AEB67EF78 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/hold/AllTests.swift; sourceTree = "<group>"; };
- E2221223DDFEC20D1310DB77 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- E24BC43BD797306F62D06810 /* StringConverterPlugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StringConverterPlugin.cpp; path = ../cpp/src/Ice/StringConverterPlugin.cpp; sourceTree = "<group>"; };
- E3CDF6C5A2CDF07A6BFA1616 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PluginI.cpp; path = ../cpp/src/IceLocatorDiscovery/PluginI.cpp; sourceTree = "<group>"; };
- E456B634781CC6536E96BA61 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/binding/Test.ice; sourceTree = "<group>"; };
- E45CA56C87B74048C2351B64 /* Plugin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Plugin.ice; path = ../slice/Ice/Plugin.ice; sourceTree = "<group>"; };
- E565EEA036FCDFE7E2231B17 /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- E5BEE9FCD147249B52EA9011 /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- E5F69164D6EF6D67644585DE /* Connection.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Connection.ice; path = ../slice/Ice/Connection.ice; sourceTree = "<group>"; };
- E63D1778300CEBCA0A19515A /* Blobject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Blobject.swift; path = src/Ice/Blobject.swift; sourceTree = "<group>"; };
- E6B6F7D8170ED48B12F0B6F7 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/adapterDeactivation/Server.swift; sourceTree = "<group>"; };
- E825C7A580DEC5B44856C0FB /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/proxy/TestI.swift; sourceTree = "<group>"; };
- E82B90F980D1160E663F4054 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/udp/Test.ice; sourceTree = "<group>"; };
- E97BD444178119BC32E07B8F /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/inheritance/Test.ice; sourceTree = "<group>"; };
- E9DF9BA893942F5D6906B77C /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/location/TestI.swift; sourceTree = "<group>"; };
- EAE9EBCEE41A733F7CEE2C57 /* StreamTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = StreamTransceiver.cpp; path = ../cpp/src/Ice/ios/StreamTransceiver.cpp; sourceTree = "<group>"; };
- EAEA6F78056CA0855F0D7E27 /* PropertiesAdmin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.ice; path = ../slice/Ice/PropertiesAdmin.ice; sourceTree = "<group>"; };
- EB2B3D47708A5B8E3B97922A /* IceSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceSwift.h; path = src/Ice/IceSwift.h; sourceTree = "<group>"; };
- EB7F09E370CF39B0DC8F9EED /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- EBAA9F213C418E18F89E8552 /* LocalExceptionDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionDescription.swift; path = src/Ice/LocalExceptionDescription.swift; sourceTree = "<group>"; };
- EBC949A8BF16F44AE0A65971 /* InputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = InputUtil.cpp; path = ../cpp/src/IceUtil/InputUtil.cpp; sourceTree = "<group>"; };
- EBD0BA0C20BD4A72616B55A7 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- EC8D81DC4E22E249C0DD3842 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/info/Server.swift; sourceTree = "<group>"; };
- EDCA8B1E59D2612ED83D81BB /* CommunicatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommunicatorI.swift; path = src/Ice/CommunicatorI.swift; sourceTree = "<group>"; };
- EDCEDCD14224AE9E77D6485D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/exceptions/TestI.swift; sourceTree = "<group>"; };
- EDE8895B8D3A8C48B371CB17 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/invoke/AllTests.swift; sourceTree = "<group>"; };
- EE16F167CC49EDDC79F69F5F /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- EE522B8340CE3A4E595DDA94 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/stream/Test.ice; sourceTree = "<group>"; };
- EEC4D11C0BB2ADEB582AFD3E /* DefaultsAndOverrides.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = DefaultsAndOverrides.cpp; path = ../cpp/src/Ice/DefaultsAndOverrides.cpp; sourceTree = "<group>"; };
- EECE59D208760AAEF8F05D43 /* UdpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = UdpTransceiver.cpp; path = ../cpp/src/Ice/UdpTransceiver.cpp; sourceTree = "<group>"; };
- EFCF742514A3DC3E7B51E0D7 /* ValueFactoryManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ValueFactoryManagerI.cpp; path = ../cpp/src/Ice/ValueFactoryManagerI.cpp; sourceTree = "<group>"; };
- F0A2495853FF103040F35EB7 /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- F0BBA7C1DD8C98341168BF4B /* Logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Logger.h; path = src/IceImpl/Logger.h; sourceTree = "<group>"; };
- F18C23F990FBF94BB8B7FE60 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/operations/TestI.swift; sourceTree = "<group>"; };
- F1F49CE58160B74F9BAFED79 /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- F25EF4101674FED1FCFD03A8 /* Object.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Object.swift; path = src/Ice/Object.swift; sourceTree = "<group>"; };
- F3D8DF4CB3647850A85D5025 /* BatchOnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOnewaysAMI.swift; path = test/Ice/operations/BatchOnewaysAMI.swift; sourceTree = "<group>"; };
- F4AA714EDBBA725022DE32AB /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- F4BFAEBBA896E626D1112663 /* main.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = main.swift; path = test/TestDriver/macOS/main.swift; sourceTree = "<group>"; };
- F54102FD9173D5948F3DB693 /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- F589827258A97B0283CECB0C /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
- F622A140E6FAD50298A18A5C /* BuiltinSequences.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = BuiltinSequences.ice; path = ../slice/Ice/BuiltinSequences.ice; sourceTree = "<group>"; };
- F6F943274DED61792E50D25A /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- F739FD7322F6B60CFCF49B80 /* PluginManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = PluginManagerI.cpp; path = ../cpp/src/Ice/PluginManagerI.cpp; sourceTree = "<group>"; };
- F7DF8CD98667A56B105D8ADD /* ConnectionInfoF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionInfoF.ice; path = ../slice/IceSSL/ConnectionInfoF.ice; sourceTree = "<group>"; };
- F825FBF238DF5D758C3B255E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/adapterDeactivation/Client.swift; sourceTree = "<group>"; };
- F8AD6B67521A305AADC0614C /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- F8BC8E349B2D4DDB3153DF69 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/operations/ServerAMD.swift; sourceTree = "<group>"; };
- F8C325488C328D211818F373 /* ObjectAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectAdapter.h; path = src/IceImpl/ObjectAdapter.h; sourceTree = "<group>"; };
- F905AD0AE255FB45823B63F4 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/hold/Server.swift; sourceTree = "<group>"; };
- F94D68149D88079DA1A291D5 /* LoggerAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LoggerAdminI.cpp; path = ../cpp/src/Ice/LoggerAdminI.cpp; sourceTree = "<group>"; };
- F95AC7A675CA60BB2ABF448A /* DispatchInterceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = DispatchInterceptor.cpp; path = ../cpp/src/Ice/DispatchInterceptor.cpp; sourceTree = "<group>"; };
- F96B6725563EBB8A4C22C9FE /* OnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnewaysAMI.swift; path = test/Ice/operations/OnewaysAMI.swift; sourceTree = "<group>"; };
- FA07C456CDC45581C13A3139 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/timeout/Test.ice; sourceTree = "<group>"; };
- FACFC7BA89D5443063D59EC3 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/inheritance/Collocated.swift; sourceTree = "<group>"; };
- FAD293D61093C51F5D7F2162 /* IceStorm.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceStorm.ice; path = ../slice/IceStorm/IceStorm.ice; sourceTree = "<group>"; };
- FAE305163CFD14F81D434502 /* ProtocolInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ProtocolInstance.cpp; path = ../cpp/src/Ice/ProtocolInstance.cpp; sourceTree = "<group>"; };
- FB6228EBC14451C32B3FABAF /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/stream/Client.swift; sourceTree = "<group>"; };
- FBA6181009014692E2D8957F /* ConnectionInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionInfo.ice; path = ../slice/IceIAP/ConnectionInfo.ice; sourceTree = "<group>"; };
- FBAFB9130DA7AD0BDA89BEAF /* SliceChecksums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SliceChecksums.cpp; path = ../cpp/src/Ice/SliceChecksums.cpp; sourceTree = "<group>"; };
- FBF01BA38FA6128BB69D22F8 /* TraceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceUtil.h; path = src/IceImpl/TraceUtil.h; sourceTree = "<group>"; };
- FC1CAC41F32D3AFB526FA69F /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/exceptions/Client.swift; sourceTree = "<group>"; };
- FC91A6274871AB414E3DF146 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/ami/Server.swift; sourceTree = "<group>"; };
- FC9FE3389D154DFEBBC55491 /* Selector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Selector.cpp; path = ../cpp/src/Ice/Selector.cpp; sourceTree = "<group>"; };
- FD2995A6E792AC39FFA9D59A /* PermissionsVerifierF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PermissionsVerifierF.ice; path = ../slice/Glacier2/PermissionsVerifierF.ice; sourceTree = "<group>"; };
- FE4C4F56D4DAB1733638A5C6 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/proxy/TestAMDI.swift; sourceTree = "<group>"; };
- FECF8197B2391C644A0DBBAE /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Ice/Metrics.ice; sourceTree = "<group>"; };
- FF0571D193794236BC596A7D /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- FF0F98E6AF1E0870BEB89E7A /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- FF8E0A097882F883C3663637 /* FactoryTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = FactoryTable.cpp; path = ../cpp/src/Ice/FactoryTable.cpp; sourceTree = "<group>"; };
- FFB394B08836052CA7E4B822 /* Util.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Util.swift; path = src/Ice/Util.swift; sourceTree = "<group>"; };
+ 003B81E404BD951D35B23A9C /* Connection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connection.mm; path = src/IceImpl/Connection.mm; sourceTree = "<group>"; };
+ 004AC667D8AC449AF8D18665 /* NetworkProxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetworkProxy.cpp; path = ../cpp/src/Ice/NetworkProxy.cpp; sourceTree = "<group>"; };
+ 004F49EECEC5EF0532144014 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/operations/Collocated.swift; sourceTree = "<group>"; };
+ 027BBF959E6AF6CDD5006D5F /* RegisterPluginsInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RegisterPluginsInit.cpp; path = ../cpp/src/Ice/RegisterPluginsInit.cpp; sourceTree = "<group>"; };
+ 02CAE11517F65F36BB6B3CC1 /* Identity.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Identity.ice; path = ../slice/Ice/Identity.ice; sourceTree = "<group>"; };
+ 0313E5DCB24F56323CECF640 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/ami/Test.ice; sourceTree = "<group>"; };
+ 04E8688B1F6178675968991F /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/Ice/EndpointI.cpp; sourceTree = "<group>"; };
+ 0507C0145EE5B124FE90FA6E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/inheritance/Client.swift; sourceTree = "<group>"; };
+ 059160A9429AADF7083C704C /* PluginF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PluginF.ice; path = ../slice/Ice/PluginF.ice; sourceTree = "<group>"; };
+ 05BB39343FCE5405892D8C99 /* CertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CertificateI.cpp; path = ../cpp/src/IceSSL/CertificateI.cpp; sourceTree = "<group>"; };
+ 05BCAE0ED88B21DCC5FF26A1 /* OSLogLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OSLogLoggerI.cpp; path = ../cpp/src/Ice/OSLogLoggerI.cpp; sourceTree = "<group>"; };
+ 05FFDAA0F31D253BA2E31F6E /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/IceGrid/Session.ice; sourceTree = "<group>"; };
+ 0640D54D342A86B7F3F05698 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/objects/TestAMDI.swift; sourceTree = "<group>"; };
+ 06AAE6710F281EAE37864E17 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/exceptions/Collocated.swift; sourceTree = "<group>"; };
+ 07E8ADEA8F96C4739BC20F57 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/ami/TestI.swift; sourceTree = "<group>"; };
+ 08464B1715A37D17F3E14399 /* Communicator.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Communicator.mm; path = src/IceImpl/Communicator.mm; sourceTree = "<group>"; };
+ 08B0ED970FB5747320CDA718 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/exceptions/Test.ice; sourceTree = "<group>"; };
+ 08D4C2681B7D72E32D51CEE5 /* FileParser.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = FileParser.ice; path = ../slice/IceGrid/FileParser.ice; sourceTree = "<group>"; };
+ 0A7386B8D552BC1C5E342209 /* RecMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RecMutex.cpp; path = ../cpp/src/IceUtil/RecMutex.cpp; sourceTree = "<group>"; };
+ 0A8216F3431AAC7A8C47ED17 /* EndpointFactoryManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactoryManager.cpp; path = ../cpp/src/Ice/EndpointFactoryManager.cpp; sourceTree = "<group>"; };
+ 0A9BF1272CFE825F7F2D6814 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/exceptions/Server.swift; sourceTree = "<group>"; };
+ 0AFAD6C28DA1495DABD4127E /* libIceDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 0C6CA87763EF92E236588FBA /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 0CA40BD3219BDDA159CFBB40 /* RFC2253.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RFC2253.cpp; path = ../cpp/src/IceSSL/RFC2253.cpp; sourceTree = "<group>"; };
+ 0E3D40FBB00AD72FD390D1E4 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 0ECCC9FEE7E7376D4D76BB6D /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; };
+ 0EE0541C8C209BEE2760A321 /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/Glacier2/Session.ice; sourceTree = "<group>"; };
+ 10FBC76F9EB72AA7D657AD6A /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/operations/Client.swift; sourceTree = "<group>"; };
+ 117D977692C7C2D8FB2676C2 /* LocalExceptionFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionFactory.swift; path = src/Ice/LocalExceptionFactory.swift; sourceTree = "<group>"; };
+ 12065C41856FEC7169ECD5A0 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/location/AllTests.swift; sourceTree = "<group>"; };
+ 127FA99F1F575E391D24A800 /* Logger.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Logger.ice; path = ../slice/Ice/Logger.ice; sourceTree = "<group>"; };
+ 12D74FE4EA7C6A660AF74591 /* PropertiesAdminI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesAdminI.swift; path = src/Ice/PropertiesAdminI.swift; sourceTree = "<group>"; };
+ 1326E162E95AA649537C06E8 /* ProcessI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ProcessI.swift; path = src/Ice/ProcessI.swift; sourceTree = "<group>"; };
+ 14BD1B55FC2A006813A829C3 /* IceGridSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceGridSwift.h; path = src/IceGrid/IceGridSwift.h; sourceTree = "<group>"; };
+ 158A84D614CB3E2C3AC2A5E3 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/facets/TestI.swift; sourceTree = "<group>"; };
+ 15E1BA9F33DE8EF789B1E6AC /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 1607EA8204961B94B47DF689 /* OnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnewaysAMI.swift; path = test/Ice/operations/OnewaysAMI.swift; sourceTree = "<group>"; };
+ 16717ECD10710B6A0018D2C2 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 16A8E8F8E99D146123EF3409 /* Logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Logger.h; path = src/IceImpl/Logger.h; sourceTree = "<group>"; };
+ 17212BB3CB370C143D6A746A /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/ami/Server.swift; sourceTree = "<group>"; };
+ 17329147DB1EA3BC64BB13E3 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/binding/Test.ice; sourceTree = "<group>"; };
+ 182A1AA2D3A49D6E5464E1AF /* UnsupportedAdminFacet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnsupportedAdminFacet.h; path = src/IceImpl/UnsupportedAdminFacet.h; sourceTree = "<group>"; };
+ 18C83E8AB5E723D20CA0B89D /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/servantLocator/Collocated.swift; sourceTree = "<group>"; };
+ 18D84E7BFF897CD18E15CC92 /* Service.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Service.cpp; path = ../cpp/src/Ice/Service.cpp; sourceTree = "<group>"; };
+ 19EC86E70EBD4A492213EA37 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 1A4FE73B5B6FDF4F56912AEF /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/objects/Server.swift; sourceTree = "<group>"; };
+ 1A6072E86A263FC327B1F44C /* LoggerF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = LoggerF.ice; path = ../slice/Ice/LoggerF.ice; sourceTree = "<group>"; };
+ 1B618430EB6F5FD497FB0DDB /* RouterInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RouterInfo.cpp; path = ../cpp/src/Ice/RouterInfo.cpp; sourceTree = "<group>"; };
+ 1B61A6FA40AFB5C32FEAA154 /* libIceLocatorDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 1B8CA636A2A4EB28960FDD61 /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 1C3E9C2120573ABEE7328084 /* Plugin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Plugin.ice; path = ../slice/Ice/Plugin.ice; sourceTree = "<group>"; };
+ 1C5538E9A7CF1DD7E34FB55F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Glacier2/Info.plist; sourceTree = "<group>"; };
+ 1CBBD656C39C80C5AF2EA1DB /* Base64.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Base64.cpp; path = ../cpp/src/Ice/Base64.cpp; sourceTree = "<group>"; };
+ 1CBD0880B67614DBCBD9E84D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/enums/TestI.swift; sourceTree = "<group>"; };
+ 1CEEDF4566395391C9E226BF /* NativePropertiesAdmin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NativePropertiesAdmin.swift; path = src/Ice/NativePropertiesAdmin.swift; sourceTree = "<group>"; };
+ 1D29625E4A3FBB59DF59537D /* CommunicatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorI.cpp; path = ../cpp/src/Ice/CommunicatorI.cpp; sourceTree = "<group>"; };
+ 1DEAE5A8F941AB2CCAA16FB6 /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 1E384C57B8AE41D5ADE5382E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/objects/Client.swift; sourceTree = "<group>"; };
+ 1E6A4C5DFD494697F0FF5C2A /* Key.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Key.ice; path = test/Slice/escape/Key.ice; sourceTree = "<group>"; };
+ 1E8A8FCD073B502C50AF409E /* ServantLocatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocatorI.swift; path = test/Ice/servantLocator/ServantLocatorI.swift; sourceTree = "<group>"; };
+ 1F04CA1BA60A991B7A79D8D2 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/retry/TestI.swift; sourceTree = "<group>"; };
+ 1FE6F0C53A155D2DE7E5858E /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/objects/TestAMD.ice; sourceTree = "<group>"; };
+ 200A8DF5882EB835681B33B6 /* PluginFacade.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PluginFacade.ice; path = ../slice/IceGrid/PluginFacade.ice; sourceTree = "<group>"; };
+ 20295373CA09AE8ECFCB450B /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 203606D7DC16FEAAC9468535 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/proxy/TestAMDI.swift; sourceTree = "<group>"; };
+ 203A89D1A926F10F7840B7F2 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultValue/Client.swift; sourceTree = "<group>"; };
+ 20486AFFB86A5E44084EDF99 /* Admin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Admin.ice; path = ../slice/IceGrid/Admin.ice; sourceTree = "<group>"; };
+ 20B2EFE81749EB63ECF0E74E /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/exceptions/TestAMDI.swift; sourceTree = "<group>"; };
+ 20D7939D93CC5A16B157838A /* SysLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysLoggerI.cpp; path = ../cpp/src/Ice/SysLoggerI.cpp; sourceTree = "<group>"; };
+ 214166CE121F3A29265D1D8C /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/inheritance/Collocated.swift; sourceTree = "<group>"; };
+ 2154E21B0223CFA07D47B8CE /* IceSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceSwift.h; path = src/Ice/IceSwift.h; sourceTree = "<group>"; };
+ 22138CAA2F575EA5E4376E27 /* MutexProtocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MutexProtocol.cpp; path = ../cpp/src/IceUtil/MutexProtocol.cpp; sourceTree = "<group>"; };
+ 226E6E31A9D9B1EEB6E4EFE1 /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 22825AA9BAA549D3D3C418E4 /* Exception.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Exception.swift; path = src/Ice/Exception.swift; sourceTree = "<group>"; };
+ 228DDCBD015FAE5B3571D90B /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 2305AE83E13AEC1F82A891A4 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/objects/AllTests.swift; sourceTree = "<group>"; };
+ 2364A6DD20E3A6D924D2D4BE /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/properties/Client.swift; sourceTree = "<group>"; };
+ 23A7A3D04FD6DD262946F705 /* ConnectorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectorI.cpp; path = ../cpp/src/IceSSL/ConnectorI.cpp; sourceTree = "<group>"; };
+ 2404C7AD8DEA6F29CF5127EC /* TcpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnector.cpp; path = ../cpp/src/Ice/TcpConnector.cpp; sourceTree = "<group>"; };
+ 245D2B5223975F47997BD145 /* Options.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Options.cpp; path = ../cpp/src/IceUtil/Options.cpp; sourceTree = "<group>"; };
+ 254298ADB9C25668AB610F92 /* Exception.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.ice; path = ../slice/IceGrid/Exception.ice; sourceTree = "<group>"; };
+ 2571F704974BBB39DF54E196 /* LocalException.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = LocalException.ice; path = ../slice/Ice/LocalException.ice; sourceTree = "<group>"; };
+ 258DAA9E0D1E1ECB4B65ED80 /* PropertiesAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesAdminI.cpp; path = ../cpp/src/Ice/PropertiesAdminI.cpp; sourceTree = "<group>"; };
+ 26D19B8F44761D7F15D55351 /* Initialize.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Initialize.cpp; path = ../cpp/src/Ice/Initialize.cpp; sourceTree = "<group>"; };
+ 273C8A37832131D101BED487 /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 2761AE969F9024BC359E5325 /* libIce C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 27C783DC4191F70386A77532 /* ValueFactoryManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactoryManagerI.cpp; path = ../cpp/src/Ice/ValueFactoryManagerI.cpp; sourceTree = "<group>"; };
+ 284E9BE541AD26DB761BDFA5 /* InputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputStream.swift; path = src/Ice/InputStream.swift; sourceTree = "<group>"; };
+ 2876A819259365ACA41C9819 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/location/Server.swift; sourceTree = "<group>"; };
+ 28E35D2DCB8C267F2653242F /* ConnectionRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionRequestHandler.cpp; path = ../cpp/src/Ice/ConnectionRequestHandler.cpp; sourceTree = "<group>"; };
+ 2916F51DB2AAC73749DCE7DC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = test/TestCommon/Info.plist; sourceTree = "<group>"; };
+ 29B4460C0949A3B6196C42F8 /* ObjectAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectAdapter.h; path = src/IceImpl/ObjectAdapter.h; sourceTree = "<group>"; };
+ 29C0938AAE0BAC68179CBCB0 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/acm/Server.swift; sourceTree = "<group>"; };
+ 29E2F3A5B3FF4733FE29B372 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/optional/TestI.swift; sourceTree = "<group>"; };
+ 2A56A987814C21FAD838ED42 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/invoke/AllTests.swift; sourceTree = "<group>"; };
+ 2AA88014FB3AA166A95BE666 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultValue/AllTests.swift; sourceTree = "<group>"; };
+ 2AADDF310CC1F8D9621EA843 /* OutgoingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutgoingAsync.cpp; path = ../cpp/src/Ice/OutgoingAsync.cpp; sourceTree = "<group>"; };
+ 2AC0FE6725FBB1C2DC5A9E78 /* ServantLocator.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServantLocator.ice; path = ../slice/Ice/ServantLocator.ice; sourceTree = "<group>"; };
+ 2B60F1EE25531E060808BBCB /* Proxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Proxy.swift; path = src/Ice/Proxy.swift; sourceTree = "<group>"; };
+ 2B8D6033EF5DBC2905586933 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/exceptions/TestAMD.ice; sourceTree = "<group>"; };
+ 2C37F4117B16BB71AFE86813 /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 2C5F429607AD626A6D88871B /* TrustManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TrustManager.cpp; path = ../cpp/src/IceSSL/TrustManager.cpp; sourceTree = "<group>"; };
+ 2CFEA89611CEACA1F95612F1 /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 2D1907C2D29A0010AACB3DBB /* IncomingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IncomingAsync.cpp; path = ../cpp/src/Ice/IncomingAsync.cpp; sourceTree = "<group>"; };
+ 2E7E69875C244C5778EEC372 /* Util.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Util.cpp; path = ../cpp/src/IceSSL/Util.cpp; sourceTree = "<group>"; };
+ 2FD01E8AD2B0DFDB800C76AF /* Blobject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Blobject.swift; path = src/Ice/Blobject.swift; sourceTree = "<group>"; };
+ 305DF5FE549D3C4D4B428924 /* Incoming.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Incoming.swift; path = src/Ice/Incoming.swift; sourceTree = "<group>"; };
+ 316AF622F0283CDC19C52E76 /* InstrumentationF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = InstrumentationF.ice; path = ../slice/Ice/InstrumentationF.ice; sourceTree = "<group>"; };
+ 31B36589E40A384AAC70F89D /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 31FD0E8873503AA6351BA289 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/scope/AllTests.swift; sourceTree = "<group>"; };
+ 3213430A8FFA260ABBFFE6DF /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 322C504F6FBC0E00C381D83D /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 326D898FED70991AC1BA0347 /* Communicator.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Communicator.ice; path = ../slice/Ice/Communicator.ice; sourceTree = "<group>"; };
+ 330EC83D3738ECC6A7536C9D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/optional/Client.swift; sourceTree = "<group>"; };
+ 331C0AFBDD1EC10EBBC33B68 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/invoke/TestI.swift; sourceTree = "<group>"; };
+ 34C3773FF720DB41BE3543B0 /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 34FBA26DDA9D52224A61F465 /* SHA1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SHA1.cpp; path = ../cpp/src/Ice/SHA1.cpp; sourceTree = "<group>"; };
+ 3503F3A5CCF7376BD4A00DB2 /* ObjectAdapterFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterFactory.cpp; path = ../cpp/src/Ice/ObjectAdapterFactory.cpp; sourceTree = "<group>"; };
+ 351BCBF951501569DADF145C /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 357A78B6281F30D25FD5C410 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/proxy/Server.swift; sourceTree = "<group>"; };
+ 35C037DF51255C7CDCD5861B /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 362F347C523AD63B9BF0488E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/invoke/Test.ice; sourceTree = "<group>"; };
+ 37E322077E762CEEF4853257 /* libIceSSL C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceSSL C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 39AAC6533C866ED8BA4C5DDA /* TcpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpEndpointI.cpp; path = ../cpp/src/Ice/TcpEndpointI.cpp; sourceTree = "<group>"; };
+ 39AE997BF225284894A3427E /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3A1C67939300D984A3E2AD68 /* RetryQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RetryQueue.cpp; path = ../cpp/src/Ice/RetryQueue.cpp; sourceTree = "<group>"; };
+ 3A94409373930E6F6393C67C /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/optional/Server.swift; sourceTree = "<group>"; };
+ 3B4606981283ED921B421816 /* PermissionsVerifierF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PermissionsVerifierF.ice; path = ../slice/Glacier2/PermissionsVerifierF.ice; sourceTree = "<group>"; };
+ 3B6F273274F0A33E74B63CA8 /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 3C03C03C64676FDFAB9D2C9F /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultValue/Test.ice; sourceTree = "<group>"; };
+ 3CF321DBB41A7E378EDBDE46 /* UdpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpTransceiver.cpp; path = ../cpp/src/Ice/UdpTransceiver.cpp; sourceTree = "<group>"; };
+ 3D1C638EB8448A2F8DCFF844 /* ObjectAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapter.mm; path = src/IceImpl/ObjectAdapter.mm; sourceTree = "<group>"; };
+ 3D27803EEB8E05AA2872DC0F /* DefaultsAndOverrides.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultsAndOverrides.cpp; path = ../cpp/src/Ice/DefaultsAndOverrides.cpp; sourceTree = "<group>"; };
+ 3D340D331AF4440A1FD7BB72 /* Oneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Oneways.swift; path = test/Ice/operations/Oneways.swift; sourceTree = "<group>"; };
+ 3D439C008667EFC7662E935F /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/inheritance/Test.ice; sourceTree = "<group>"; };
+ 3D6906B8A17903ED8A46AB4F /* MetricsObserverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsObserverI.cpp; path = ../cpp/src/Ice/MetricsObserverI.cpp; sourceTree = "<group>"; };
+ 3DCFEE5E8FC3124CDFAE7671 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; };
+ 3E4DA6E69B6D870D4106D05D /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/servantLocator/ServerAMD.swift; sourceTree = "<group>"; };
+ 3E610B0E67C9B6A1DBBF172C /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/binding/Server.swift; sourceTree = "<group>"; };
+ 3EDDB1270424DCAB7F691B6B /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/operations/TestAMDI.swift; sourceTree = "<group>"; };
+ 3EE0E3DBF68592091E1CFFFB /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/interceptor/Test.ice; sourceTree = "<group>"; };
+ 3EE292939C43A0B9A8B787D7 /* Locator.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Locator.ice; path = ../slice/Ice/Locator.ice; sourceTree = "<group>"; };
+ 3EF4BD416FEEEA65585C8FA8 /* ConnectionI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionI.cpp; path = ../cpp/src/Ice/ConnectionI.cpp; sourceTree = "<group>"; };
+ 40E9F5F5F2A1FDD9AD507CFE /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/ami/Collocated.swift; sourceTree = "<group>"; };
+ 413017D5FD36BC0B6A5377B0 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; };
+ 41F920720773452A5300D74A /* TcpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpTransceiver.cpp; path = ../cpp/src/Ice/TcpTransceiver.cpp; sourceTree = "<group>"; };
+ 4209DB74FE392398BBBAA7AB /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/exceptions/Client.swift; sourceTree = "<group>"; };
+ 424E07F72C36775987E78D9B /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/admin/Server.swift; sourceTree = "<group>"; };
+ 42D78FE28A5FD6909B09171E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/inheritance/Server.swift; sourceTree = "<group>"; };
+ 431FCA1AB962B80BF654B3D0 /* ObjectAdapter.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapter.ice; path = ../slice/Ice/ObjectAdapter.ice; sourceTree = "<group>"; };
+ 439CAA99857F58F11386EBC3 /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/objects/ServerPrivate.ice; sourceTree = "<group>"; };
+ 43D8936E6314196D19095048 /* Controller.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Controller.ice; path = ../scripts/Controller.ice; sourceTree = "<group>"; };
+ 444C81F85FACB1A5BC7AE4E1 /* Properties.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Properties.mm; path = src/IceImpl/Properties.mm; sourceTree = "<group>"; };
+ 450AD776C8151E42914041A8 /* RouterF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RouterF.ice; path = ../slice/Glacier2/RouterF.ice; sourceTree = "<group>"; };
+ 46CCEC5938A075D12D2F812A /* UserAccountMapper.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = UserAccountMapper.ice; path = ../slice/IceGrid/UserAccountMapper.ice; sourceTree = "<group>"; };
+ 477E91A1197B5830761631C1 /* Current.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Current.ice; path = ../slice/Ice/Current.ice; sourceTree = "<group>"; };
+ 47887C1FB9AA3D7D7B8F5B5B /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 47A28B22A642C985FFB853F7 /* WSEndpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSEndpoint.cpp; path = ../cpp/src/Ice/WSEndpoint.cpp; sourceTree = "<group>"; };
+ 481882F90E5A74D3D85F8CED /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/retry/Test.ice; sourceTree = "<group>"; };
+ 4865B3158D38CF0F111335D1 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 490ABC45AAAADE449F8F7C01 /* FormatType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatType.swift; path = src/Ice/FormatType.swift; sourceTree = "<group>"; };
+ 499879837AB808E65E267110 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 49BFD82EDC5961557B3C081D /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/admin/AllTests.swift; sourceTree = "<group>"; };
+ 4A32F5A7C35C65FA0E2A9F32 /* ObjectAdapterI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapterI.swift; path = src/Ice/ObjectAdapterI.swift; sourceTree = "<group>"; };
+ 4AD13CA61E0593B0D0D02A9F /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 4AEAEA1C49B0E4F1F69EF841 /* RequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandler.cpp; path = ../cpp/src/Ice/RequestHandler.cpp; sourceTree = "<group>"; };
+ 4B2B163B4B0AA8D481BC0CE1 /* LoggerWrapperI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoggerWrapperI.h; path = src/IceImpl/LoggerWrapperI.h; sourceTree = "<group>"; };
+ 4BA8674CBDF25012A707605D /* HttpParser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HttpParser.cpp; path = ../cpp/src/Ice/HttpParser.cpp; sourceTree = "<group>"; };
+ 4C4F16CE0E18FAE1B868EF7D /* StreamTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamTransceiver.cpp; path = ../cpp/src/Ice/ios/StreamTransceiver.cpp; sourceTree = "<group>"; };
+ 4C9E5195C48351C3DD02282F /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 4CB1B6AE8F6FB8CFC0AC003A /* Twoways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Twoways.swift; path = test/Ice/operations/Twoways.swift; sourceTree = "<group>"; };
+ 4CC8D93A3FC8AF9E0BB609FA /* ConnectionF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionF.ice; path = ../slice/Ice/ConnectionF.ice; sourceTree = "<group>"; };
+ 4CD35F4B4C04CDC985B84571 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceLocatorDiscovery/PluginI.cpp; sourceTree = "<group>"; };
+ 4CE1EEF3C86CED79525EE458 /* ConnectionInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionInfo.ice; path = ../slice/IceSSL/ConnectionInfo.ice; sourceTree = "<group>"; };
+ 4DCAFB642425E93AF71FECCD /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/acm/Test.ice; sourceTree = "<group>"; };
+ 4DE17DA74939585D5DAC3CD1 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/ami/AllTests.swift; sourceTree = "<group>"; };
+ 4E053BDFB2F3B31DEA4FB8F3 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/objects/Server.swift; sourceTree = "<group>"; };
+ 4E51D353FDFADE7C2085B196 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/proxy/Client.swift; sourceTree = "<group>"; };
+ 4E6F24A92F34BF28AB3B74C9 /* WSAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSAcceptor.cpp; path = ../cpp/src/Ice/WSAcceptor.cpp; sourceTree = "<group>"; };
+ 4E959F0B362795EC27EE97FA /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 4EB4AAB6340039C6B77D0B38 /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 4F0EB416BFF519262CA6FC91 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/optional/TestAMD.ice; sourceTree = "<group>"; };
+ 4F535FC2464D55C8896B679A /* Incoming.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Incoming.cpp; path = ../cpp/src/Ice/Incoming.cpp; sourceTree = "<group>"; };
+ 4F86EE1F0BABC73616D64E60 /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 4F9862A9DB389084AA3F18B9 /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 4F9A362F07BFA44C1967BB23 /* WSTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSTransceiver.cpp; path = ../cpp/src/Ice/WSTransceiver.cpp; sourceTree = "<group>"; };
+ 50829B5C8135F4031CD1EA4D /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/proxy/TestAMD.ice; sourceTree = "<group>"; };
+ 50AA22200C91767A2104DBE3 /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/exceptions/ServerPrivate.ice; sourceTree = "<group>"; };
+ 50C28D2AE3D7153816FAA709 /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 5101032594480253E29AC55D /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 5112EFD03DEEE228D3CDD2CF /* SSLInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLInfo.ice; path = ../slice/Glacier2/SSLInfo.ice; sourceTree = "<group>"; };
+ 51406D24D7B88671FC1959C1 /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 515A9CC5CE995B281FBCA597 /* Descriptor.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Descriptor.ice; path = ../slice/IceGrid/Descriptor.ice; sourceTree = "<group>"; };
+ 5162164224A97A02EEBAB4C5 /* TraceUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceUtil.cpp; path = ../cpp/src/Ice/TraceUtil.cpp; sourceTree = "<group>"; };
+ 51958A1C51031D46A27BF8C2 /* SecureTransportEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportEngine.cpp; path = ../cpp/src/IceSSL/SecureTransportEngine.cpp; sourceTree = "<group>"; };
+ 51BE38EAB81D4BAB59984CEA /* Cond.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cond.cpp; path = ../cpp/src/Ice/Cond.cpp; sourceTree = "<group>"; };
+ 51E99B30521AA55C7680038E /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PromiseKit.framework; path = ../Carthage/Build/iOS/PromiseKit.framework; sourceTree = "<group>"; };
+ 5363DD742BD3E50E372FAB5C /* Clash.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Clash.ice; path = test/Slice/escape/Clash.ice; sourceTree = "<group>"; };
+ 5380E97D60D39D299195A4D5 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/exceptions/Server.swift; sourceTree = "<group>"; };
+ 53CFE6E9577551B9B5BE8F0B /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 53DCE66195BB4195791CB732 /* Process.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Process.h; path = src/IceImpl/Process.h; sourceTree = "<group>"; };
+ 5405AF9183C769694C514F75 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/exceptions/AllTests.swift; sourceTree = "<group>"; };
+ 547CCE4F73338900D09AA8E6 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/facets/Server.swift; sourceTree = "<group>"; };
+ 54A1937AF2CAB630AF745D24 /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Thread.cpp; path = ../cpp/src/Ice/Thread.cpp; sourceTree = "<group>"; };
+ 55F24CEDC5F99C4DB8BE9A4C /* Notifications.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Notifications.mm; path = ../cpp/src/Ice/ios/Notifications.mm; sourceTree = "<group>"; };
+ 56047CC0A74EAE9A631A9FD3 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/scope/Test.ice; sourceTree = "<group>"; };
+ 563D36E1F39068302C64D483 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/retry/Client.swift; sourceTree = "<group>"; };
+ 565110536C762BBC6BC835F7 /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 56535F2466DBDF3413598AB4 /* Convert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Convert.mm; path = src/IceImpl/Convert.mm; sourceTree = "<group>"; };
+ 57017F902B7686C7579A7648 /* ValueFactory.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ValueFactory.ice; path = ../slice/Ice/ValueFactory.ice; sourceTree = "<group>"; };
+ 571F60FE3865604E45D3EB20 /* SecureTransportPluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportPluginI.cpp; path = ../cpp/src/IceSSL/SecureTransportPluginI.cpp; sourceTree = "<group>"; };
+ 57F789D5181AAA8BD1D848C0 /* BlobjectAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BlobjectAsync.swift; path = src/Ice/BlobjectAsync.swift; sourceTree = "<group>"; };
+ 583A290A57CB40B7B130517F /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/adapterDeactivation/Server.swift; sourceTree = "<group>"; };
+ 58AF2DBEA9E524721EF29279 /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Connection.h; path = src/IceImpl/Connection.h; sourceTree = "<group>"; };
+ 5942973BCDA04C01DF823F17 /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 5A5BCF69097F9B6FD153B8FE /* ObjectFactory.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectFactory.ice; path = ../slice/Ice/ObjectFactory.ice; sourceTree = "<group>"; };
+ 5B7E8916B8CA08D3239C9525 /* CountDownLatch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CountDownLatch.cpp; path = ../cpp/src/Ice/CountDownLatch.cpp; sourceTree = "<group>"; };
+ 5E338C63E5506C4DD6F7B043 /* StringConverterPlugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverterPlugin.cpp; path = ../cpp/src/Ice/StringConverterPlugin.cpp; sourceTree = "<group>"; };
+ 5E906A6A3B1927465B53AA27 /* OutputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputStream.cpp; path = ../cpp/src/Ice/OutputStream.cpp; sourceTree = "<group>"; };
+ 5F0DC044B6F5DAB4FA96D80E /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/IceSSL/Instance.cpp; sourceTree = "<group>"; };
+ 5F32CE35510450059D4F5F18 /* PropertiesAdmin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropertiesAdmin.h; path = src/IceImpl/PropertiesAdmin.h; sourceTree = "<group>"; };
+ 5FB28C8905B0491A1AC74818 /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 5FFA38493C067C6B8C76B1C6 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/binding/Client.swift; sourceTree = "<group>"; };
+ 6058A9A6703F0612B4B79A97 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 60A75D69BF7BCC8427A97577 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/timeout/TestI.swift; sourceTree = "<group>"; };
+ 61265F18F9685E78D51636A4 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/operations/Server.swift; sourceTree = "<group>"; };
+ 615F705ADD38DB36488696E0 /* TwowaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TwowaysAMI.swift; path = test/Ice/operations/TwowaysAMI.swift; sourceTree = "<group>"; };
+ 61CDFF3A184E66FFB28428C6 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = src/IceImpl/Config.h; sourceTree = "<group>"; };
+ 623A2AA62A0FA760224602DF /* EndpointTypes.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointTypes.ice; path = ../slice/Ice/EndpointTypes.ice; sourceTree = "<group>"; };
+ 626EED2E2153D0A9AE63108D /* libIceLocatorDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 62E2EEFD8989AED2832957D5 /* main.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = main.swift; path = test/TestDriver/macOS/main.swift; sourceTree = "<group>"; };
+ 630B53C4B0DCBF443CE3A899 /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 631222ED1E46C261BA6D81C0 /* ValueFactoryManagerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactoryManagerI.swift; path = src/Ice/ValueFactoryManagerI.swift; sourceTree = "<group>"; };
+ 6374A039ED84F684F9BA9C27 /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ 639FE31C5F3B993BBA0809FD /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = ../cpp/src/Ice/EventHandler.cpp; sourceTree = "<group>"; };
+ 64D03790BD64517908069A89 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceGrid/Info.plist; sourceTree = "<group>"; };
+ 64EE2C5503AD46C98E012E96 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/servantLocator/Server.swift; sourceTree = "<group>"; };
+ 651858AC9B30DE6B2A8B0AA6 /* EndpointInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointInfo.ice; path = ../slice/IceIAP/EndpointInfo.ice; sourceTree = "<group>"; };
+ 65F5921131948B7942F63863 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 664EA396BB43EE3C105012F9 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/facets/Client.swift; sourceTree = "<group>"; };
+ 668F5888B8D0CB186D6053F1 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/admin/Client.swift; sourceTree = "<group>"; };
+ 68121E9326EA961B56F58A80 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/services/Client.swift; sourceTree = "<group>"; };
+ 68624E43D69AF264C6D22C54 /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 68CEC296554781EB6D21CA3C /* libIce C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ 69306E74AADE3D02FE4E60EF /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/udp/AllTests.swift; sourceTree = "<group>"; };
+ 69751EFFF0F18C7B5657D7F9 /* SecureTransportUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportUtil.cpp; path = ../cpp/src/IceSSL/SecureTransportUtil.cpp; sourceTree = "<group>"; };
+ 6981AC9F0A8894E8A40D6C55 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/IceSSL/configuration/Server.swift; sourceTree = "<group>"; };
+ 698F636B1C7F71C0D86FCEE2 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/objects/ServerAMD.swift; sourceTree = "<group>"; };
+ 69E0E1E31F168819C07BBCE7 /* ImplicitContextF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContextF.ice; path = ../slice/Ice/ImplicitContextF.ice; sourceTree = "<group>"; };
+ 6A606916AA8B15138B915115 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/timeout/AllTests.swift; sourceTree = "<group>"; };
+ 6AB36D857DF0F81C4D5594C6 /* LoggerAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerAdminI.cpp; path = ../cpp/src/Ice/LoggerAdminI.cpp; sourceTree = "<group>"; };
+ 6B01BC3A8434A3063376ACCF /* StreamEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamEndpointI.cpp; path = ../cpp/src/Ice/ios/StreamEndpointI.cpp; sourceTree = "<group>"; };
+ 6B15656C95570248A5598ADE /* Selector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Selector.cpp; path = ../cpp/src/Ice/Selector.cpp; sourceTree = "<group>"; };
+ 6C1B8ACEA453172F319A1B60 /* AdminFacetFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AdminFacetFactory.h; path = src/IceImpl/AdminFacetFactory.h; sourceTree = "<group>"; };
+ 6D2A24C74B1457BADF42EA04 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/hold/Test.ice; sourceTree = "<group>"; };
+ 6D5FF83D9BB6FCF48B42C981 /* ObjectAdapterF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapterF.ice; path = ../slice/Ice/ObjectAdapterF.ice; sourceTree = "<group>"; };
+ 6E1716C66456BCBBFBF62157 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 6E2A51B80695CB7D1A25AA61 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/servantLocator/Test.ice; sourceTree = "<group>"; };
+ 6EBCEFAB4C8715E3794AFD71 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/exceptions/TestAMD.ice; sourceTree = "<group>"; };
+ 700A316334B910A09101FE84 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/objects/TestI.swift; sourceTree = "<group>"; };
+ 708D4BA5BB5427A869888AEA /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Glacier2/Router.ice; sourceTree = "<group>"; };
+ 709BD396C5DD2985D2576C89 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/exceptions/AllTests.swift; sourceTree = "<group>"; };
+ 710150F5EEF490D2E9D93DA6 /* Forward.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Forward.ice; path = test/Ice/objects/Forward.ice; sourceTree = "<group>"; };
+ 7139B6C8CA10007E792F53D4 /* OptionalFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OptionalFormat.swift; path = src/Ice/OptionalFormat.swift; sourceTree = "<group>"; };
+ 721603641E4D852A125CCB38 /* Glacier2Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Glacier2Swift.h; path = src/Glacier2/Glacier2Swift.h; sourceTree = "<group>"; };
+ 7243D1737C0011C6B64B6542 /* InitializationData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InitializationData.swift; path = src/Ice/InitializationData.swift; sourceTree = "<group>"; };
+ 727ADCDFD189C116DA626990 /* LoggerWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LoggerWrapper.swift; path = src/Ice/LoggerWrapper.swift; sourceTree = "<group>"; };
+ 72D09A968DF7AEF7873FABC0 /* EndpointI.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointI.mm; path = ../cpp/src/IceIAP/EndpointI.mm; sourceTree = "<group>"; };
+ 72F0133C3F5E2F48BC792374 /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 735AEA3176650E2CB5CF4402 /* ImplicitContext.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContext.ice; path = ../slice/Ice/ImplicitContext.ice; sourceTree = "<group>"; };
+ 73CC62886A3D56E023683BB9 /* AcceptorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AcceptorI.cpp; path = ../cpp/src/IceSSL/AcceptorI.cpp; sourceTree = "<group>"; };
+ 73EC79539B77749D0B385E57 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/enums/Test.ice; sourceTree = "<group>"; };
+ 73FA22C5034CE056FA112987 /* Initialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Initialize.swift; path = src/Ice/Initialize.swift; sourceTree = "<group>"; };
+ 7481133E66BBCFB35C59DD6B /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 74A58F9341DE159C9D4D4122 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/exceptions/ClientPrivate.ice; sourceTree = "<group>"; };
+ 751D293EE7855F9A5A773FE7 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/info/Server.swift; sourceTree = "<group>"; };
+ 7603D7C27853E868765956CA /* Version.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Version.ice; path = ../slice/Ice/Version.ice; sourceTree = "<group>"; };
+ 761BD64C7E0974FFA525CCA9 /* ConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionFactory.cpp; path = ../cpp/src/Ice/ConnectionFactory.cpp; sourceTree = "<group>"; };
+ 76440BF69CFBB7BA8615EAAE /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/timeout/Test.ice; sourceTree = "<group>"; };
+ 764BA5087FACD9DF6068DBAE /* OutputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputUtil.cpp; path = ../cpp/src/IceUtil/OutputUtil.cpp; sourceTree = "<group>"; };
+ 76E99A8FED64D17E565727B6 /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = ../certs; sourceTree = "<group>"; };
+ 775EBD369201C97189EB1022 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 775EFBE78694683F3173F765 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 78DBA4B685FAAB1B1B19C953 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/proxy/TestI.swift; sourceTree = "<group>"; };
+ 78F0327446EEFAE7C7472E34 /* DispatchInterceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DispatchInterceptor.cpp; path = ../cpp/src/Ice/DispatchInterceptor.cpp; sourceTree = "<group>"; };
+ 799C490953D145B679F8D1A3 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/enums/AllTests.swift; sourceTree = "<group>"; };
+ 7A47F58C4E3CE1C13C54A09A /* OutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OutputStream.h; path = src/IceImpl/OutputStream.h; sourceTree = "<group>"; };
+ 7A4851EF0D876EA33F2F0806 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/inheritance/TestI.swift; sourceTree = "<group>"; };
+ 7A5FC09580DFEDA42502BB46 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/retry/Collocated.swift; sourceTree = "<group>"; };
+ 7A634FA66859D5F3AE6E6123 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/udp/Server.swift; sourceTree = "<group>"; };
+ 7B464045D3DD080BA5784472 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/exceptions/ServerAMD.swift; sourceTree = "<group>"; };
+ 7BA3A76FABDAB54CF329EC7B /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/IceSSL/EndpointI.cpp; sourceTree = "<group>"; };
+ 7BADC096D1677992528358C9 /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 7BB578F04F513F6B307DEBE1 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/retry/Server.swift; sourceTree = "<group>"; };
+ 7BCCF602D0FF8D22B9680CF8 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/adapterDeactivation/Test.ice; sourceTree = "<group>"; };
+ 7BF026BDB77BB9A18DB05349 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/servantLocator/TestI.swift; sourceTree = "<group>"; };
+ 7C13F2A57B3D5B43F865E99D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/location/TestI.swift; sourceTree = "<group>"; };
+ 7C86A7981B1918DC97BD1D67 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/invoke/Server.swift; sourceTree = "<group>"; };
+ 7CD8FF49C945CAB4E0CDBAC9 /* UdpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpConnector.cpp; path = ../cpp/src/Ice/UdpConnector.cpp; sourceTree = "<group>"; };
+ 7D30BA86A3469DB7F345073D /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
+ 7DDEC3707E1BCF1F01D4E481 /* InstrumentationI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationI.cpp; path = ../cpp/src/Ice/InstrumentationI.cpp; sourceTree = "<group>"; };
+ 7EB1201F991663DB27D5F416 /* Timer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Timer.cpp; path = ../cpp/src/Ice/Timer.cpp; sourceTree = "<group>"; };
+ 7EEA4E6130FAF1695D9ACD8B /* Endpoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Endpoint.mm; path = src/IceImpl/Endpoint.mm; sourceTree = "<group>"; };
+ 7F6090BCC46A202A68BBF77D /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/inheritance/AllTests.swift; sourceTree = "<group>"; };
+ 7FC76B1B464A5AC2A20554FF /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/objects/Client.swift; sourceTree = "<group>"; };
+ 805B62B23CF07AA890D408D4 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/acm/Client.swift; sourceTree = "<group>"; };
+ 81D735D9C5633A99111B3FBA /* ConnectionInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionInfoFactory.swift; path = src/Ice/ConnectionInfoFactory.swift; sourceTree = "<group>"; };
+ 82F61D86E1F20952E8C3841A /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/binding/TestI.swift; sourceTree = "<group>"; };
+ 83119929B0E9A068FECE736B /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/enums/Server.swift; sourceTree = "<group>"; };
+ 83ADC759472D70CD7FABB6E1 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cpp; path = ../cpp/src/IceUtil/Random.cpp; sourceTree = "<group>"; };
+ 83E41012D98C4F274B58EFAD /* Endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Endpoint.h; path = src/IceImpl/Endpoint.h; sourceTree = "<group>"; };
+ 8439526B8DE74644F28A6D70 /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 84AC8D09459962A732B6CC66 /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 84F9C49554E032E9F24125C9 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/hold/Server.swift; sourceTree = "<group>"; };
+ 8511F4E2012CDD7C9629C27C /* ObjectPrx.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectPrx.mm; path = src/IceImpl/ObjectPrx.mm; sourceTree = "<group>"; };
+ 865CA76FA57E281F305229A8 /* PropertiesF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesF.ice; path = ../slice/Ice/PropertiesF.ice; sourceTree = "<group>"; };
+ 866FFC39BC5078EBDF04F85E /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 86BA8129D624FC5C654DA4FA /* IceImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceImpl.h; path = src/IceImpl/IceImpl.h; sourceTree = "<group>"; };
+ 876C5922AE9C9B31BC47A8D4 /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Glacier2/Metrics.ice; sourceTree = "<group>"; };
+ 87E4EFB3F77857A527AEA983 /* AdminFacetFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdminFacetFactory.swift; path = src/Ice/AdminFacetFactory.swift; sourceTree = "<group>"; };
+ 8802757B1DE233FE2791BC9F /* SSLEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLEngine.cpp; path = ../cpp/src/IceSSL/SSLEngine.cpp; sourceTree = "<group>"; };
+ 88362A8D0FC487784FB0A1F1 /* LocatorF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = LocatorF.ice; path = ../slice/Ice/LocatorF.ice; sourceTree = "<group>"; };
+ 8848EFBB95F9D6D77B56302A /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/interceptor/Client.swift; sourceTree = "<group>"; };
+ 8904DE3DE3816938E87F46E4 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultServant/AllTests.swift; sourceTree = "<group>"; };
+ 89138A69A6071FF550471EA2 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceDiscovery/PluginI.cpp; sourceTree = "<group>"; };
+ 89BA4D129F7AB13FE8AA4252 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/hold/AllTests.swift; sourceTree = "<group>"; };
+ 89D2FAA92C70159399181D22 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/udp/Test.ice; sourceTree = "<group>"; };
+ 89F506EE1C27CE1405020A38 /* ImplicitContext.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContext.mm; path = src/IceImpl/ImplicitContext.mm; sourceTree = "<group>"; };
+ 8AF8C993815CB0043CA4E4B4 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/optional/ServerAMD.swift; sourceTree = "<group>"; };
+ 8B0133F3B6C49278880AF27C /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = test/TestDriver/iOS/Assets.xcassets; sourceTree = "<group>"; };
+ 8BC872547290B7E35FCC1E98 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 8C1E877ACC0DA38CB700CA31 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/servantLocator/TestAMD.ice; sourceTree = "<group>"; };
+ 8D356FF229AB189BEC612EDB /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/IceSSL/configuration/TestI.swift; sourceTree = "<group>"; };
+ 8D9BD8DBDA54A6A0F7362ACB /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/exceptions/TestI.swift; sourceTree = "<group>"; };
+ 8DD7CBE7D8A940FFCF43FC42 /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 8E01786DB7612C60BF8A1AD6 /* Exception.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.mm; path = src/IceImpl/Exception.mm; sourceTree = "<group>"; };
+ 8E64564556238B25F5AE6D4E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Slice/escape/Client.swift; sourceTree = "<group>"; };
+ 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PromiseKit.framework; path = ../Carthage/Build/Mac/PromiseKit.framework; sourceTree = "<group>"; };
+ 907A6D6CFC6A86E3A26C6F8E /* ThreadException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadException.cpp; path = ../cpp/src/IceUtil/ThreadException.cpp; sourceTree = "<group>"; };
+ 91CCAA379CAE47D548C1D784 /* IceStorm.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceStorm.ice; path = ../slice/IceStorm/IceStorm.ice; sourceTree = "<group>"; };
+ 9250382693A50F0E823D433C /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/optional/TestAMDI.swift; sourceTree = "<group>"; };
+ 92FA3E6D5ACCF4B1CF0C3378 /* EndpointI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointI.swift; path = src/Ice/EndpointI.swift; sourceTree = "<group>"; };
+ 931F3380F15851A31DB21B98 /* StreamSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamSocket.cpp; path = ../cpp/src/Ice/StreamSocket.cpp; sourceTree = "<group>"; };
+ 9376FF7A596A2F29A2D89461 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceStorm/Info.plist; sourceTree = "<group>"; };
+ 937B8FBC13804AC35D672463 /* EndpointInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointInfo.ice; path = ../slice/IceSSL/EndpointInfo.ice; sourceTree = "<group>"; };
+ 93C2C1B12FB6F74B85A74AB8 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/udp/TestI.swift; sourceTree = "<group>"; };
+ 944277575906253E2D264529 /* PropertyNames.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertyNames.cpp; path = ../cpp/src/Ice/PropertyNames.cpp; sourceTree = "<group>"; };
+ 9481B651D132BA3CFD0AAFA9 /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 9499FF08DB66C34FD2896B23 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/proxy/Test.ice; sourceTree = "<group>"; };
+ 95BA56AA2BDF936B8E4F0B2A /* StringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverter.cpp; path = ../cpp/src/IceUtil/StringConverter.cpp; sourceTree = "<group>"; };
+ 95D36E1F1648209B868E09B7 /* BatchOnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOnewaysAMI.swift; path = test/Ice/operations/BatchOnewaysAMI.swift; sourceTree = "<group>"; };
+ 96E21902D516EFCA981AE170 /* ImplicitContextI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextI.cpp; path = ../cpp/src/Ice/ImplicitContextI.cpp; sourceTree = "<group>"; };
+ 9800A938F2930FC734B98F4D /* ServantLocatorF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServantLocatorF.ice; path = ../slice/Ice/ServantLocatorF.ice; sourceTree = "<group>"; };
+ 9807056F92FC0E811C314ED5 /* ViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewController.swift; path = test/TestDriver/iOS/ViewController.swift; sourceTree = "<group>"; };
+ 99AF1143034F0C3447D52DC6 /* OutputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OutputStream.swift; path = src/Ice/OutputStream.swift; sourceTree = "<group>"; };
+ 9AE0567B4511A9DB628482F1 /* StreamAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamAcceptor.cpp; path = ../cpp/src/Ice/ios/StreamAcceptor.cpp; sourceTree = "<group>"; };
+ 9B240838C3B7EC5098985F9A /* WSConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSConnector.cpp; path = ../cpp/src/Ice/WSConnector.cpp; sourceTree = "<group>"; };
+ 9B70DE2EC3E4C2C5CA746C57 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/admin/TestI.swift; sourceTree = "<group>"; };
+ 9B8260A1145A7235704C5A06 /* Main.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Main.storyboard; path = test/TestDriver/iOS/Base.lproj/Main.storyboard; sourceTree = "<group>"; };
+ 9BE6BACEC2F33E91F4B617FB /* Transceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Transceiver.cpp; path = ../cpp/src/Ice/Transceiver.cpp; sourceTree = "<group>"; };
+ 9BEB059DD01E8DA0D5DD2098 /* IconvStringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IconvStringConverter.cpp; path = ../cpp/src/Ice/IconvStringConverter.cpp; sourceTree = "<group>"; };
+ 9C15AF93ADECF03E659813AE /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ 9D71E1E8486CEBCF31435D3D /* Transceiver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Transceiver.mm; path = ../cpp/src/IceIAP/Transceiver.mm; sourceTree = "<group>"; };
+ 9E48639D847EEF9B191A6B2A /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Time.cpp; path = ../cpp/src/IceUtil/Time.cpp; sourceTree = "<group>"; };
+ 9E71EF8B4A3A71C72A15134D /* Object.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Object.swift; path = src/Ice/Object.swift; sourceTree = "<group>"; };
+ 9E7D203B0DE479B10FBE0E54 /* SecureTransportTransceiverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportTransceiverI.cpp; path = ../cpp/src/IceSSL/SecureTransportTransceiverI.cpp; sourceTree = "<group>"; };
+ 9FC4531AA749DAF419FE26EB /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/timeout/Server.swift; sourceTree = "<group>"; };
+ A01748959A0B2A24EE79D617 /* Logger.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Logger.mm; path = src/IceImpl/Logger.mm; sourceTree = "<group>"; };
+ A06AC0921E10B63A1656AD61 /* Connection.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Connection.ice; path = ../slice/Ice/Connection.ice; sourceTree = "<group>"; };
+ A08D190BD584FF5E91403A9E /* TraceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = TraceUtil.mm; path = src/IceImpl/TraceUtil.mm; sourceTree = "<group>"; };
+ A148A58FC6419CF431F133D9 /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ A17A6842456B978F70B5DFDD /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultServant/Client.swift; sourceTree = "<group>"; };
+ A1D032AE98D0C4D070D681B1 /* Connector.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connector.mm; path = ../cpp/src/IceIAP/Connector.mm; sourceTree = "<group>"; };
+ A214ABFAF9474F81CDEB4D9D /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Ice/Metrics.ice; sourceTree = "<group>"; };
+ A2C780B2D6CA6CD0DCCED459 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ A2EE54802BFD472CDFC02692 /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ A30F25D651F58222C077DC00 /* Protocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Protocol.cpp; path = ../cpp/src/Ice/Protocol.cpp; sourceTree = "<group>"; };
+ A332D585A37435EE78C912CF /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/enums/Client.swift; sourceTree = "<group>"; };
+ A38EB9C90EBFC403A05E7661 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/retry/AllTests.swift; sourceTree = "<group>"; };
+ A39829413634597ADED6AABD /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/facets/AllTests.swift; sourceTree = "<group>"; };
+ A3F03C459EE7E9A7A7EED2FC /* ClassResolver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClassResolver.swift; path = src/Ice/ClassResolver.swift; sourceTree = "<group>"; };
+ A49D7EF11617FD2B8DD7C45F /* UdpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpEndpointI.cpp; path = ../cpp/src/Ice/UdpEndpointI.cpp; sourceTree = "<group>"; };
+ A49E88A35399266906B635CE /* ObjectAdapterI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterI.cpp; path = ../cpp/src/Ice/ObjectAdapterI.cpp; sourceTree = "<group>"; };
+ A50EFAADF3111E3694A86697 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/Ice/Instance.cpp; sourceTree = "<group>"; };
+ A57B9BCC5EACD4DB42F66B0F /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/operations/Test.ice; sourceTree = "<group>"; };
+ A63DCDA9CA07C5D78EB18355 /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ A64DC01AFE2CE7EB0471ECFC /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ A69A2EB1087C09983D0E3EEC /* DynamicLibrary.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DynamicLibrary.cpp; path = ../cpp/src/Ice/DynamicLibrary.cpp; sourceTree = "<group>"; };
+ A6CDAB227924D0610F81AD01 /* InputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputStream.cpp; path = ../cpp/src/Ice/InputStream.cpp; sourceTree = "<group>"; };
+ A78754795E4B389E082CC44F /* ProtocolInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolInstance.cpp; path = ../cpp/src/Ice/ProtocolInstance.cpp; sourceTree = "<group>"; };
+ A800F7CE4B2357D7E55B5782 /* UtilException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UtilException.cpp; path = ../cpp/src/IceUtil/UtilException.cpp; sourceTree = "<group>"; };
+ A8317EBDEA737A29A26FBE54 /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ A8419D8D5FA660838BE1BA93 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/stream/Client.swift; sourceTree = "<group>"; };
+ A85BF585817ADA33A51374E3 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/hold/TestI.swift; sourceTree = "<group>"; };
+ A89C6CB51DCAC3F757EE49A7 /* Endpoint.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Endpoint.ice; path = ../slice/Ice/Endpoint.ice; sourceTree = "<group>"; };
+ A8C3320857B5D24565F04EFE /* BatchOneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOneways.swift; path = test/Ice/operations/BatchOneways.swift; sourceTree = "<group>"; };
+ A8F736DDD2D36B64200A0023 /* RouterF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RouterF.ice; path = ../slice/Ice/RouterF.ice; sourceTree = "<group>"; };
+ A9EA41900D64E8658B705E3C /* AppDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = test/TestDriver/iOS/AppDelegate.swift; sourceTree = "<group>"; };
+ AA2734A6625328B15E08346A /* Object.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Object.cpp; path = ../cpp/src/Ice/Object.cpp; sourceTree = "<group>"; };
+ AB0075088BD497CEE1D89780 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/location/Client.swift; sourceTree = "<group>"; };
+ AB05AFC920CC27CFDC84109C /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ AB89A20DB867709982778CC7 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/objects/TestI.swift; sourceTree = "<group>"; };
+ ABC01710A16129B2F462DF4B /* ProtocolPluginFacade.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolPluginFacade.cpp; path = ../cpp/src/Ice/ProtocolPluginFacade.cpp; sourceTree = "<group>"; };
+ ABD78784328011772284AB65 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/adapterDeactivation/AllTests.swift; sourceTree = "<group>"; };
+ AC0CDB474BB450E68664654E /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ AC1D8A33F8AB3689E7733586 /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; };
+ ACB1CA0FC300B3B03EB78716 /* ACM.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ACM.cpp; path = ../cpp/src/Ice/ACM.cpp; sourceTree = "<group>"; };
+ ACC7E3AC4A2BB3A86C34E51A /* StreamConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamConnector.cpp; path = ../cpp/src/Ice/ios/StreamConnector.cpp; sourceTree = "<group>"; };
+ AD045F681FB9F088DC230E0F /* SlicedData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SlicedData.cpp; path = ../cpp/src/Ice/SlicedData.cpp; sourceTree = "<group>"; };
+ AD3BF9C9F8D9D3658927A2D1 /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ ADDAA7048CCBFB5590515DF1 /* ReferenceFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ReferenceFactory.cpp; path = ../cpp/src/Ice/ReferenceFactory.cpp; sourceTree = "<group>"; };
+ AE8272DC832BA01976A54077 /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/ExternalAccessory.framework; sourceTree = DEVELOPER_DIR; };
+ AE9AAB53263BDDA227A0202D /* ControllerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControllerI.swift; path = test/TestDriver/iOS/ControllerI.swift; sourceTree = "<group>"; };
+ AEDCB1E205F0A6AD13A75CB1 /* LoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerI.cpp; path = ../cpp/src/Ice/LoggerI.cpp; sourceTree = "<group>"; };
+ AEF95184A3D897EAAA7AE4B5 /* ConnectionInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionInfo.ice; path = ../slice/IceIAP/ConnectionInfo.ice; sourceTree = "<group>"; };
+ AF39992CCB6F0C95231E7542 /* TcpAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpAcceptor.cpp; path = ../cpp/src/Ice/TcpAcceptor.cpp; sourceTree = "<group>"; };
+ B013B93E5986A1FCF9F78DAB /* Reference.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Reference.cpp; path = ../cpp/src/Ice/Reference.cpp; sourceTree = "<group>"; };
+ B0308FF4DA8796949079382F /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Ice/Router.ice; sourceTree = "<group>"; };
+ B1A39C9E9F62098E608BDD49 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/admin/Test.ice; sourceTree = "<group>"; };
+ B1A704CC39E0EF86372BDEA3 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/exceptions/TestAMDI.swift; sourceTree = "<group>"; };
+ B377B0722288DFB2A73E0D11 /* libIceSSL C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceSSL C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ B38BE3223AAFBAAF857AD5E2 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/exceptions/ServerAMD.swift; sourceTree = "<group>"; };
+ B69DBDAE6349C71437BBA75F /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/acm/TestI.swift; sourceTree = "<group>"; };
+ B769550900F96420DBCFED72 /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ B7AEA0767A33654F90E35222 /* UnsupportedAdminFacet.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = UnsupportedAdminFacet.mm; path = src/IceImpl/UnsupportedAdminFacet.mm; sourceTree = "<group>"; };
+ B7D8B9A2D605FCFFC786AD11 /* IceDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceDiscovery.ice; path = ../slice/IceDiscovery/IceDiscovery.ice; sourceTree = "<group>"; };
+ B8823D4D696A3C18EC64FB4A /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/adapterDeactivation/Client.swift; sourceTree = "<group>"; };
+ B8C5181F4E251C3BF78F8F2A /* LocalObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LocalObject.h; path = src/IceImpl/LocalObject.h; sourceTree = "<group>"; };
+ B904574D2E5F73E6D831FEB7 /* TraceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceUtil.h; path = src/IceImpl/TraceUtil.h; sourceTree = "<group>"; };
+ B919B9BC0B3EAFB59DE62C2C /* PropertiesI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesI.cpp; path = ../cpp/src/Ice/PropertiesI.cpp; sourceTree = "<group>"; };
+ B975A8E910F85BE0F8996659 /* EndpointF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointF.ice; path = ../slice/Ice/EndpointF.ice; sourceTree = "<group>"; };
+ B99EAAC5667070FF5F7B6FF5 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/IceSSL/configuration/AllTests.swift; sourceTree = "<group>"; };
+ B9BD5DA20CE10B5EEAFC1A37 /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; };
+ B9D6E5C6823D2641DF157CE9 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/optional/Test.ice; sourceTree = "<group>"; };
+ BA71B51000572E66659A3672 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/objects/Test.ice; sourceTree = "<group>"; };
+ BB30FF55D1D682BEA2F84695 /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ BBB636E7C5AD8884DF982486 /* Proxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Proxy.cpp; path = ../cpp/src/Ice/Proxy.cpp; sourceTree = "<group>"; };
+ BE14C224CBBDF1DC3C8DC502 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/operations/TestI.swift; sourceTree = "<group>"; };
+ BEA2205E172336BB60147423 /* CtrlCHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CtrlCHandler.cpp; path = ../cpp/src/IceUtil/CtrlCHandler.cpp; sourceTree = "<group>"; };
+ BED0B487712EEE03615C9CB3 /* MetricsAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsAdminI.cpp; path = ../cpp/src/Ice/MetricsAdminI.cpp; sourceTree = "<group>"; };
+ BEE143805505A4DED71F44DD /* InputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputUtil.cpp; path = ../cpp/src/IceUtil/InputUtil.cpp; sourceTree = "<group>"; };
+ BEE9D1AB70849A09A9122342 /* CollocatedRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CollocatedRequestHandler.cpp; path = ../cpp/src/Ice/CollocatedRequestHandler.cpp; sourceTree = "<group>"; };
+ BEEED6CDF0BD1668C74B3F2F /* LocalObject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalObject.swift; path = src/Ice/LocalObject.swift; sourceTree = "<group>"; };
+ BF0F61C0C43F357F80205B2F /* PluginManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginManagerI.cpp; path = ../cpp/src/Ice/PluginManagerI.cpp; sourceTree = "<group>"; };
+ BF9D92749FA6F9B5FE652C45 /* LocalObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalObject.cpp; path = ../cpp/src/Ice/LocalObject.cpp; sourceTree = "<group>"; };
+ C124F0D45B6275831BF5F438 /* Exception.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Exception.cpp; path = ../cpp/src/Ice/Exception.cpp; sourceTree = "<group>"; };
+ C1372F822DB8C05EDAF951C4 /* SecureTransportCertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportCertificateI.cpp; path = ../cpp/src/IceSSL/SecureTransportCertificateI.cpp; sourceTree = "<group>"; };
+ C150DFE9F6860E13C667DA77 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ C3211C9FB66D58C1BDB91C18 /* Network.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Network.cpp; path = ../cpp/src/Ice/Network.cpp; sourceTree = "<group>"; };
+ C3591A40745461F368CBC77B /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/operations/TestAMD.ice; sourceTree = "<group>"; };
+ C35F0E57B69EDEFC5E944EBC /* ProcessF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ProcessF.ice; path = ../slice/Ice/ProcessF.ice; sourceTree = "<group>"; };
+ C3D6020190F13303DBB3AE04 /* LocalExceptionDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionDescription.swift; path = src/Ice/LocalExceptionDescription.swift; sourceTree = "<group>"; };
+ C3F55B79F56ED47BB1490274 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/proxy/AllTests.swift; sourceTree = "<group>"; };
+ C4A666841400DD55C4BC753D /* ProxyFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProxyFactory.cpp; path = ../cpp/src/Ice/ProxyFactory.cpp; sourceTree = "<group>"; };
+ C4C12A6CF78CB8EAC28EABE4 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/hold/Client.swift; sourceTree = "<group>"; };
+ C6088D6E4F2A47AADB35EB03 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultServant/Test.ice; sourceTree = "<group>"; };
+ C62B6C403ABEA4B86221A379 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ C6AE8BE95F80EBF3D2C290AE /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ C6C69B957051A399B8A8D080 /* BatchRequestQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BatchRequestQueue.cpp; path = ../cpp/src/Ice/BatchRequestQueue.cpp; sourceTree = "<group>"; };
+ C6FBE40672797298F2C1C21A /* IceLocatorDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceLocatorDiscovery.ice; path = ../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice; sourceTree = "<group>"; };
+ C784636985C065D20545F5BE /* SliceChecksumDict.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = SliceChecksumDict.ice; path = ../slice/Ice/SliceChecksumDict.ice; sourceTree = "<group>"; };
+ C7F15D84385C6FFC6EADD1FA /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ C84F7EAC0F5791E7D09AB072 /* PropertiesAdmin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.ice; path = ../slice/Ice/PropertiesAdmin.ice; sourceTree = "<group>"; };
+ C8C4EC7F377638ACA3789243 /* ConnectRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectRequestHandler.cpp; path = ../cpp/src/Ice/ConnectRequestHandler.cpp; sourceTree = "<group>"; };
+ CA2C76263E9404BC0A0DBE5A /* PropertiesAdmin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.mm; path = src/IceImpl/PropertiesAdmin.mm; sourceTree = "<group>"; };
+ CAB3EA4F291781F0F7B6F024 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/info/TestI.swift; sourceTree = "<group>"; };
+ CB9DF2517C4D8910B9F04C02 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = test/TestDriver/iOS/Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
+ CBD5794F951058D78ABA0D48 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/binding/AllTests.swift; sourceTree = "<group>"; };
+ CC018AED0F8FB003F4ED0C8D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/scope/TestI.swift; sourceTree = "<group>"; };
+ CC5F7C4F2F0D95F24CC5DD66 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/objects/Collocated.swift; sourceTree = "<group>"; };
+ CE1278569FF626BFD7243082 /* Process.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.ice; path = ../slice/Ice/Process.ice; sourceTree = "<group>"; };
+ CE7C6CFA731F5E0FC26F9554 /* BlobjectFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlobjectFacade.h; path = src/IceImpl/BlobjectFacade.h; sourceTree = "<group>"; };
+ CEE9A6376344FEB128D483D1 /* LocatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorI.cpp; path = ../cpp/src/IceDiscovery/LocatorI.cpp; sourceTree = "<group>"; };
+ CF62CB725A11CEB7E4573361 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/facets/Test.ice; sourceTree = "<group>"; };
+ CFCCC973BBC234DD5D28BE34 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/stream/Test.ice; sourceTree = "<group>"; };
+ D00B9F3E0CA080CD2B2C61F3 /* LocalObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = LocalObject.mm; path = src/IceImpl/LocalObject.mm; sourceTree = "<group>"; };
+ D0EAC955BB7F720093F87E7A /* Registry.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Registry.ice; path = ../slice/IceGrid/Registry.ice; sourceTree = "<group>"; };
+ D1BF1FBD5B99791A16DEA1E4 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/servantLocator/Client.swift; sourceTree = "<group>"; };
+ D25EE27BA73B3DDFAD7B5E69 /* Buffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Buffer.cpp; path = ../cpp/src/Ice/Buffer.cpp; sourceTree = "<group>"; };
+ D2BFD0993886CBEB26A9EBCC /* ConnectionI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionI.swift; path = src/Ice/ConnectionI.swift; sourceTree = "<group>"; };
+ D2FB5FDA9DE852FBB2B10936 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/servantLocator/AllTests.swift; sourceTree = "<group>"; };
+ D362F8935BDDBB6646F277C8 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/exceptions/TestI.swift; sourceTree = "<group>"; };
+ D382963A6D341D8AB96B2F96 /* IPEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPEndpointI.cpp; path = ../cpp/src/Ice/IPEndpointI.cpp; sourceTree = "<group>"; };
+ D4F0C5755496073BF23DAD0A /* IceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceUtil.h; path = src/IceImpl/IceUtil.h; sourceTree = "<group>"; };
+ D50984E810079607F9CBD3D6 /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ D611E5DADBB8DF69D3A0E64C /* Properties.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Properties.ice; path = ../slice/Ice/Properties.ice; sourceTree = "<group>"; };
+ D726E89DC9EF4DCC71E5B72C /* EndpointInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointInfoFactory.swift; path = src/Ice/EndpointInfoFactory.swift; sourceTree = "<group>"; };
+ D8026643E397138CD24E9782 /* RemoteLogger.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RemoteLogger.ice; path = ../slice/Ice/RemoteLogger.ice; sourceTree = "<group>"; };
+ D8190F551078596098F1E80F /* Mutex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mutex.swift; path = src/Ice/Mutex.swift; sourceTree = "<group>"; };
+ D8565E6799EC944D42F00DB9 /* LocatorInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorInfo.cpp; path = ../cpp/src/Ice/LocatorInfo.cpp; sourceTree = "<group>"; };
+ D88018174B46A41D0B540A95 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/proxy/Collocated.swift; sourceTree = "<group>"; };
+ D8842621E7D70188F9DF2501 /* libIceIAP C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceIAP C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ D88E9B56D89F644A6AEC3F3E /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/exceptions/ServerPrivateAMD.ice; sourceTree = "<group>"; };
+ D8918D7258991F1E8CF58618 /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ D8DD61CBFBE4E12B6E30E9C4 /* FactoryTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTable.cpp; path = ../cpp/src/Ice/FactoryTable.cpp; sourceTree = "<group>"; };
+ D8E7928159B49F7A04DA97BA /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ D8E92C696C1AABC3601AA74B /* TestCommon.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestCommon.swift; path = test/TestCommon/TestCommon.swift; sourceTree = "<group>"; };
+ D90E5E4A4506E4827832F9B8 /* Value.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Value.cpp; path = ../cpp/src/Ice/Value.cpp; sourceTree = "<group>"; };
+ D9924E8D2910F8AADCD205F8 /* IceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IceUtil.mm; path = src/IceImpl/IceUtil.mm; sourceTree = "<group>"; };
+ DA71E7B49312CF4F07C90A3C /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/invoke/Client.swift; sourceTree = "<group>"; };
+ DAB411415D75A65DA58B5F5B /* Communicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Communicator.h; path = src/IceImpl/Communicator.h; sourceTree = "<group>"; };
+ DB36F29477EA57AD8868E6DD /* ArgVector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ArgVector.cpp; path = ../cpp/src/Ice/ArgVector.cpp; sourceTree = "<group>"; };
+ DB620946367523497675CCEE /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/objects/ServerPrivateAMD.ice; sourceTree = "<group>"; };
+ DBB159780C224B99CDFB5E11 /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ DBE83FBE8EC1C00F209B7912 /* ImplicitContextI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContextI.swift; path = src/Ice/ImplicitContextI.swift; sourceTree = "<group>"; };
+ DC58856E78104FC6C0F9AA28 /* CommunicatorF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = CommunicatorF.ice; path = ../slice/Ice/CommunicatorF.ice; sourceTree = "<group>"; };
+ DD068D7CC10CB319EE39A71B /* CommunicatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommunicatorI.swift; path = src/Ice/CommunicatorI.swift; sourceTree = "<group>"; };
+ DDB4DD346430D46FA6ECB82A /* ThreadPool.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPool.cpp; path = ../cpp/src/Ice/ThreadPool.cpp; sourceTree = "<group>"; };
+ DDC3D4E5B05D9FD2F3E929F5 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/proxy/ServerAMD.swift; sourceTree = "<group>"; };
+ DDFA593815E37A8E3222D63E /* SliceChecksums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SliceChecksums.cpp; path = ../cpp/src/Ice/SliceChecksums.cpp; sourceTree = "<group>"; };
+ DDFDD649342AB148C5437BA5 /* RequestHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandlerFactory.cpp; path = ../cpp/src/Ice/RequestHandlerFactory.cpp; sourceTree = "<group>"; };
+ DE3C76073BBDB3D3E0B943F0 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/operations/AllTests.swift; sourceTree = "<group>"; };
+ DEB369D710EC587DFD76B069 /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ DEC9D0420245199FB5BBD345 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/scope/Client.swift; sourceTree = "<group>"; };
+ DEE5B91323EE4E6BAEF5C730 /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = test/IceSSL/configuration/../../../../cpp/test/IceSSL/certs; sourceTree = "<group>"; };
+ DF246750FE16FD27AB1B9E1B /* UnknownSlicedValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UnknownSlicedValue.swift; path = src/Ice/UnknownSlicedValue.swift; sourceTree = "<group>"; };
+ DF2792969E80FCBEE04BA8ED /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ DF6DB4595BEADE88D4B8FF06 /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ DFC578DAEBC7B64CA2E829DA /* ConsoleUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConsoleUtil.cpp; path = ../cpp/src/IceUtil/ConsoleUtil.cpp; sourceTree = "<group>"; };
+ DFED2A261FCD105E634372CA /* LookupI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LookupI.cpp; path = ../cpp/src/IceDiscovery/LookupI.cpp; sourceTree = "<group>"; };
+ E19C150CCCC22B7DE0139429 /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ E371D78131705C17C63946A8 /* EndpointFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactory.cpp; path = ../cpp/src/Ice/EndpointFactory.cpp; sourceTree = "<group>"; };
+ E5A8A9CE6A57293E4D35757E /* Acceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Acceptor.cpp; path = ../cpp/src/Ice/Acceptor.cpp; sourceTree = "<group>"; };
+ E5B747D322414658FF4DD342 /* Util.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Util.swift; path = src/Ice/Util.swift; sourceTree = "<group>"; };
+ E5D4CA75EFA1350097AB7876 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ E64AE4103060ED8DE8C63A5F /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/IceStorm/Metrics.ice; sourceTree = "<group>"; };
+ E65331EA85E12D5A4D23BD29 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/info/AllTests.swift; sourceTree = "<group>"; };
+ E6B2797A8849E5E72C831841 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/udp/Client.swift; sourceTree = "<group>"; };
+ E6DB5FF43E9B340D7029297A /* UUID.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UUID.cpp; path = ../cpp/src/IceUtil/UUID.cpp; sourceTree = "<group>"; };
+ E70C9D396BD6B5A4E73C5CFF /* SliceFlags.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceFlags.swift; path = src/Ice/SliceFlags.swift; sourceTree = "<group>"; };
+ E7B7A13B6C4176A137464A3C /* SliceInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceInfo.swift; path = src/Ice/SliceInfo.swift; sourceTree = "<group>"; };
+ E8223AEBF7050FD7541E96A1 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceSSL/PluginI.cpp; sourceTree = "<group>"; };
+ E89A23CFF389FE40C9557340 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/facets/Collocated.swift; sourceTree = "<group>"; };
+ E8C1AE8D395B3456440C1E9A /* PermissionsVerifier.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PermissionsVerifier.ice; path = ../slice/Glacier2/PermissionsVerifier.ice; sourceTree = "<group>"; };
+ E9468F3EC40357BB0554ABEA /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/exceptions/Test.ice; sourceTree = "<group>"; };
+ E97D033BADA38AF9402AA464 /* ConnectionInfoF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ConnectionInfoF.ice; path = ../slice/IceSSL/ConnectionInfoF.ice; sourceTree = "<group>"; };
+ E9D679F5465C4EB73106C5AC /* ObserverHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObserverHelper.cpp; path = ../cpp/src/Ice/ObserverHelper.cpp; sourceTree = "<group>"; };
+ EA3F85D992A55E3BE71BE236 /* Convert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Convert.h; path = src/IceImpl/Convert.h; sourceTree = "<group>"; };
+ EABEF7F85B00B0111F6C3560 /* Shared.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Shared.cpp; path = ../cpp/src/IceUtil/Shared.cpp; sourceTree = "<group>"; };
+ EB1123A2A1E029BB32271A16 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/timeout/Client.swift; sourceTree = "<group>"; };
+ EB489D1E2A8C2CF17A2F4330 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/IceSSL/configuration/Test.ice; sourceTree = "<group>"; };
+ EB5F5A5D2EECF428ECB79E52 /* Value.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Value.swift; path = src/Ice/Value.swift; sourceTree = "<group>"; };
+ EB9423AA60DB5CF08094DAF7 /* LoggerUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerUtil.cpp; path = ../cpp/src/Ice/LoggerUtil.cpp; sourceTree = "<group>"; };
+ EDB3662F7248B27CB1AD4BAC /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ EE1A00AA2A52A007803ECA9F /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/adapterDeactivation/TestI.swift; sourceTree = "<group>"; };
+ EECAB125E8C93688689DF18E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/location/Test.ice; sourceTree = "<group>"; };
+ EF34296B086BFC873E4A5647 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/objects/AllTests.swift; sourceTree = "<group>"; };
+ EF98339FB04534928125DB76 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/operations/ServerAMD.swift; sourceTree = "<group>"; };
+ F000FB0F52EFA6E32C1D61C4 /* ImplicitContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImplicitContext.h; path = src/IceImpl/ImplicitContext.h; sourceTree = "<group>"; };
+ F086327C7A363E6F817C7458 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
+ F0DEFC193F3F347850C430F6 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/servantLocator/TestAMDI.swift; sourceTree = "<group>"; };
+ F11875AE312A1FB4AF6FBB97 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/ami/Client.swift; sourceTree = "<group>"; };
+ F144B676048547B79F621AA4 /* BlobjectFacade.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = BlobjectFacade.mm; path = src/IceImpl/BlobjectFacade.mm; sourceTree = "<group>"; };
+ F1F5B981DE4101EBCFE749D6 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/objects/ClientPrivate.ice; sourceTree = "<group>"; };
+ F1F77E560368761492402EA3 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/scope/Server.swift; sourceTree = "<group>"; };
+ F1FF86C20DD375A84E790A7D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/info/Test.ice; sourceTree = "<group>"; };
+ F24C5A3A5C571B012806F8C5 /* Connector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connector.cpp; path = ../cpp/src/Ice/Connector.cpp; sourceTree = "<group>"; };
+ F2E80530BC3EB3B267510B98 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = ../cpp/src/IceUtil/FileUtil.cpp; sourceTree = "<group>"; };
+ F32F3ABB20FCC8FC8A0A0ACB /* Properties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Properties.h; path = src/IceImpl/Properties.h; sourceTree = "<group>"; };
+ F4F1FF18E9213EF12562CD02 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Ice/Info.plist; sourceTree = "<group>"; };
+ F5A9831CFF2692F9637C5810 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/acm/AllTests.swift; sourceTree = "<group>"; };
+ F5FFEAC74A94BBC740FD19E2 /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ F61859F73072318F796F34F0 /* ObjectPrx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectPrx.h; path = src/IceImpl/ObjectPrx.h; sourceTree = "<group>"; };
+ F675DF8EACB868514B6517F7 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/exceptions/Client.swift; sourceTree = "<group>"; };
+ F6E486D7CED1187CCB73012C /* FactoryTableInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTableInit.cpp; path = ../cpp/src/Ice/FactoryTableInit.cpp; sourceTree = "<group>"; };
+ F74EBBC0FF989CCB80A6CE4F /* SystemdJournalI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SystemdJournalI.cpp; path = ../cpp/src/Ice/SystemdJournalI.cpp; sourceTree = "<group>"; };
+ F75C2DE308BADB2A61399C3F /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ F7D6AD5F74CE6D55E945CE35 /* SlicedData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SlicedData.swift; path = src/Ice/SlicedData.swift; sourceTree = "<group>"; };
+ F7EC05463EED3AC758275FE5 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ F7FFF7F457B44AF10B294A53 /* StringUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringUtil.cpp; path = ../cpp/src/IceUtil/StringUtil.cpp; sourceTree = "<group>"; };
+ F846257F8F86D75E994D2BA5 /* FacetMap.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = FacetMap.ice; path = ../slice/Ice/FacetMap.ice; sourceTree = "<group>"; };
+ F84CA9A304E3F6159E1CFC94 /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ F89A3B2AE050F821147BD7C6 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/objects/Test.ice; sourceTree = "<group>"; };
+ F8F014DC45DDAD9941F05D9D /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ F924390865B63754A0B9D785 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/adapterDeactivation/Collocated.swift; sourceTree = "<group>"; };
+ F9764228A3316695D773B795 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/optional/AllTests.swift; sourceTree = "<group>"; };
+ F9B270E39D3B1D84A8E6B986 /* BuiltinSequences.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = BuiltinSequences.ice; path = ../slice/Ice/BuiltinSequences.ice; sourceTree = "<group>"; };
+ F9C4BD7AD24E3017193C86F9 /* TraceLevels.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceLevels.cpp; path = ../cpp/src/Ice/TraceLevels.cpp; sourceTree = "<group>"; };
+ F9FDFD9567E3EB23F567B412 /* IceStormSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceStormSwift.h; path = src/IceStorm/IceStormSwift.h; sourceTree = "<group>"; };
+ FA49A1EA8A8746AE458F2C18 /* OpaqueEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpaqueEndpointI.cpp; path = ../cpp/src/Ice/OpaqueEndpointI.cpp; sourceTree = "<group>"; };
+ FAA7FC13CEE1D2C6BCB90644 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = src/IceImpl/Exception.h; sourceTree = "<group>"; };
+ FAE2B9B108DC7C8C6DF480AC /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/IceSSL/configuration/Client.swift; sourceTree = "<group>"; };
+ FAFBC31486E68C91E83A6419 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ FB081EA6CBA368AB96ED96D6 /* ServantManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantManager.cpp; path = ../cpp/src/Ice/ServantManager.cpp; sourceTree = "<group>"; };
+ FC478C09D46B520AC09D1D24 /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ FC591A6A5FF8126DE099F8A2 /* ServantManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantManager.swift; path = src/Ice/ServantManager.swift; sourceTree = "<group>"; };
+ FC5D768A10737D6ECBD5090F /* Process.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.mm; path = src/IceImpl/Process.mm; sourceTree = "<group>"; };
+ FDC4148479AEFCB6426F5E58 /* libIceDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
+ FE689398E99ABF73ED63012C /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
+ FEAE54441F169A7C4B067FFA /* PropertiesI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesI.swift; path = src/Ice/PropertiesI.swift; sourceTree = "<group>"; };
+ FF801C186E03BB2EBD80CC72 /* Instrumentation.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Instrumentation.ice; path = ../slice/Ice/Instrumentation.ice; sourceTree = "<group>"; };
+ FFA6DB995DB96B0E3A2B65EE /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/info/Client.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
- 007C5DF05CDA1CCD6537936F /* Frameworks */ = {
+ 02E64BE526855B3CED6378EB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 02D2DCF2D758DE15A572E72F /* Foundation.framework in Frameworks */,
- 0FA249AADA5E0C13A3981CAB /* Ice.framework in Frameworks */,
- 02B3F95D456A7B97551C31D6 /* PromiseKit.framework in Frameworks */,
- 90051D8CE444BD236EF17610 /* TestCommon.framework in Frameworks */,
+ ADEDAB4D7BF2A7E4B1F6F9A6 /* Cocoa.framework in Frameworks */,
+ 65E85E931D20E8F2DA07AD7C /* Ice.framework in Frameworks */,
+ 351C9A2A1F031E3FEB632AC1 /* PromiseKit.framework in Frameworks */,
+ 9E1B55EED9CC6F4F3987E3FF /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 00E72F2C194CED1FC6565254 /* Frameworks */ = {
+ 05E5D67717492C7DD2A8557F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 27665A4F3DF13E36881964CE /* Ice.framework in Frameworks */,
- DE7AC7D4646F4F0165204E8E /* PromiseKit.framework in Frameworks */,
+ C6BC3159F7AF2AADE90CFE54 /* Cocoa.framework in Frameworks */,
+ 15C24F1796F6AE4A40BB2583 /* Ice.framework in Frameworks */,
+ 405131738FC05E274DF07B91 /* PromiseKit.framework in Frameworks */,
+ 2176B86BCF05CDD2C9427A0E /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 012EC33C0D2CF6AD911A4D12 /* Frameworks */ = {
+ 06AC6C94D56BEA09B166C3E0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
+ 373C2AC625C97DFE61587E1A /* Cocoa.framework in Frameworks */,
+ 295EE4B1AC9585CCD0175B6B /* Ice.framework in Frameworks */,
+ 13B7B1983C554DEC1853C341 /* PromiseKit.framework in Frameworks */,
+ 31C131049D40FE06A2ADE4B4 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 01FF6EDEEBCA60035B0916E9 /* Frameworks */ = {
+ 0A284CD82FD37E7C9B2C3458 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 54D6A7A29349CDC7CA5AB73B /* Cocoa.framework in Frameworks */,
- 272F4FDF4BBB63E0948F7BE3 /* Ice.framework in Frameworks */,
- F448DC505D28062AD7E05735 /* PromiseKit.framework in Frameworks */,
- 3FE11C28F7DDCD3D6D75E658 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 03CE5874671B6170E8C7F21F /* Frameworks */ = {
+ 0C3513384C5015BDC0F130F9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 333FB9858A6E3AEDB32A08C0 /* Cocoa.framework in Frameworks */,
- 8C9C92E6A14C3E4C214BB350 /* Ice.framework in Frameworks */,
- 9A33192F1F4E1E1224C55044 /* PromiseKit.framework in Frameworks */,
- 26058FC56B057422D632A997 /* TestCommon.framework in Frameworks */,
+ F5FE6C53D14C36DBD67B01C3 /* Cocoa.framework in Frameworks */,
+ F11430D16F7260D3B2F65492 /* Ice.framework in Frameworks */,
+ C54E9C6AC829F4626689CC54 /* PromiseKit.framework in Frameworks */,
+ A3EF40AD01679057E17C16C1 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 0B71E2123726959C4C0BA581 /* Frameworks */ = {
+ 0CAA1ABF1BA7C9182E8C2E63 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- F026264EF2032BD35635AF5D /* Cocoa.framework in Frameworks */,
- AABC516A8EC57988EA018BD1 /* Ice.framework in Frameworks */,
- 7D9B04AF11C410E3FA59B35D /* PromiseKit.framework in Frameworks */,
- 5771C1DDE9E7D68C8ADFC6F0 /* TestCommon.framework in Frameworks */,
+ EE295319B80F5DF25DCF1B34 /* Cocoa.framework in Frameworks */,
+ 721206C95F32C30F5C043996 /* Ice.framework in Frameworks */,
+ 29CE3B76E1ACC9B079ADE690 /* PromiseKit.framework in Frameworks */,
+ 49490911928FA9912B5D0FE3 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 0CD72165C814C60E948F36BB /* Frameworks */ = {
+ 106BB2D4AFDDF48AB1879C0D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 926F73E49F1D7F812FD6675D /* Cocoa.framework in Frameworks */,
- 4C11999558C878D0E617D469 /* Ice.framework in Frameworks */,
- 62B22BB9BBD312F90DD84957 /* PromiseKit.framework in Frameworks */,
- F91525EA6D244AB24BB32B18 /* TestCommon.framework in Frameworks */,
+ 559C06831ED5DFCD8468B3AB /* Foundation.framework in Frameworks */,
+ 531712D96619DEB17FD9B42B /* Ice.framework in Frameworks */,
+ 66F9CE4ED80107DB2ECFEC1B /* PromiseKit.framework in Frameworks */,
+ 75AFA50B8481CDA832CC2E4B /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 11AD2AD061A6039293A15B8C /* Frameworks */ = {
+ 15B2345546A4EAF8D94C4F3C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- E9627E26D2E067FEEB98A06E /* Foundation.framework in Frameworks */,
- 342C1682CCC4389FF8A227F4 /* Ice.framework in Frameworks */,
- ACABAC72D78356DBFB2C5788 /* PromiseKit.framework in Frameworks */,
- 1D0633A078A064347A37D53F /* TestCommon.framework in Frameworks */,
+ AD9DA8DA4A978AF03B7BD1E0 /* Cocoa.framework in Frameworks */,
+ AA646BCD72A76A27593AE324 /* Ice.framework in Frameworks */,
+ CD1A61FB166588560B1F1A54 /* PromiseKit.framework in Frameworks */,
+ 7A742071A1FBC13A72E897D3 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 129570850BEC1D93F0E75FD7 /* Frameworks */ = {
+ 16ACC68D3C75E758C4F2E01C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 233CC8F0C3E20FD2A9412B77 /* Cocoa.framework in Frameworks */,
- 42D5EC156DE0CEE38CB9F3CF /* Ice.framework in Frameworks */,
- ABC9B8D3BFFF3212D80739EC /* PromiseKit.framework in Frameworks */,
- AF93821C653629CE6A457A84 /* TestCommon.framework in Frameworks */,
+ F5960A77102ACF901D0909B1 /* Foundation.framework in Frameworks */,
+ 1467D4056E752E90136822EB /* Ice.framework in Frameworks */,
+ A915ED8EA6EA5BA23B84619B /* PromiseKit.framework in Frameworks */,
+ 360F4009B0AAC4A5D94BA637 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 14917DCFE3327DE2FB8D6EFE /* Frameworks */ = {
+ 182C50B8BBC03EBD7F67D884 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 06579484500F82F33E259464 /* Ice.framework in Frameworks */,
- 845246051CF3918C88D34327 /* PromiseKit.framework in Frameworks */,
+ BAA7CFB228B6E1D96C7C2B2E /* CFNetwork.framework in Frameworks */,
+ A73B4D40FC9073F27DBE5104 /* ExternalAccessory.framework in Frameworks */,
+ 0AFA8ED125CA617AFFC12D15 /* Foundation.framework in Frameworks */,
+ 1D4F5492C20DF82A60AD2738 /* libIce C++11 iOS.a in Frameworks */,
+ DF7B31E3EB97D4BA62E1F554 /* libIceDiscovery C++11 iOS.a in Frameworks */,
+ E91BDFB124FEFC82BFC56447 /* libIceIAP C++11 iOS.a in Frameworks */,
+ 84F2355D157144E986314A8E /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */,
+ 05F2CF25D243C813DC16629D /* libIceSSL C++11 iOS.a in Frameworks */,
+ D6251B99BC1E413095AC86CA /* Security.framework in Frameworks */,
+ 62374B441FE67EADCF0BF399 /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 17A34BD0869E9AE8BB46DEA3 /* Frameworks */ = {
+ 1A056407630E55E3A5483A4D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 576B3E4FAE550263125F3B9F /* Cocoa.framework in Frameworks */,
- F1AD4719EA82718F94B85859 /* Ice.framework in Frameworks */,
- B2031FBD54CC50E85555B248 /* PromiseKit.framework in Frameworks */,
- 8FDFEC1BEF5F8B5C90FD4ED8 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 17DC448F53792822FEC0C851 /* Frameworks */ = {
+ 1BA9A7D667E0E020D4537429 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- F5C043E5CC9ADA97E7E788C7 /* Foundation.framework in Frameworks */,
- 31B09F76595C50EFA69F2655 /* Ice.framework in Frameworks */,
- EFA01E414C712DD878618BDD /* PromiseKit.framework in Frameworks */,
- 43266F0C56A9B9801A3B028D /* TestCommon.framework in Frameworks */,
+ 8A7807B001A0F498952732F2 /* Foundation.framework in Frameworks */,
+ 3555B153C73D558EE9C616C5 /* Ice.framework in Frameworks */,
+ 0A5393413D4C21A4A84F40A4 /* PromiseKit.framework in Frameworks */,
+ ACB237A144B5117ACEFE8A69 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 187E9CF41A5D9233F23789B2 /* Frameworks */ = {
+ 21A7E1E0035F557C87261DBE /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 922DE878739C3FCB56842609 /* Foundation.framework in Frameworks */,
- BA46EDACC11C8D5F1C9F341C /* Ice.framework in Frameworks */,
- F5EFBEABC61B6E92ADD42227 /* PromiseKit.framework in Frameworks */,
- C99F254C648A4C8D17152126 /* TestCommon.framework in Frameworks */,
+ 861B4E988B264BDDEACD0197 /* Foundation.framework in Frameworks */,
+ FFBFF43183133FFEF712F3AF /* Ice.framework in Frameworks */,
+ D2E0A075A5230A45A294DCC4 /* PromiseKit.framework in Frameworks */,
+ CC4B558F23D8756836797661 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 1A18DF97015DB2EE6F1EB01E /* Frameworks */ = {
+ 22B893671D734666B9190978 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- D1D4155B898A953C90C95019 /* Foundation.framework in Frameworks */,
- 5267F7C6749D746537A2B8FF /* Ice.framework in Frameworks */,
- BAB304E986CB0B44BDA83B8A /* PromiseKit.framework in Frameworks */,
- 476AE20FAE2EFC1FD155A733 /* TestCommon.framework in Frameworks */,
+ B437F83E65005E64CDC90561 /* Ice.framework in Frameworks */,
+ C9ED7278F48F3DBCB6A5CFC3 /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 1FB2CCEF2696A5C3D34F66E5 /* Frameworks */ = {
+ 236F9DA1EBE6F3DD0556BC01 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 4485C0CE4B09C67B7B99E212 /* Cocoa.framework in Frameworks */,
- 3BEB779165BCDCAF79274CAA /* Ice.framework in Frameworks */,
- 64AEC57FC17BB5D16706F02E /* PromiseKit.framework in Frameworks */,
- 4A24D3FD3FDB431D9DD91F3D /* TestCommon.framework in Frameworks */,
+ 01CCD38DFB166607B719A292 /* Cocoa.framework in Frameworks */,
+ E0E0986440E5DA87D956AB99 /* Glacier2.framework in Frameworks */,
+ 56696A9F0B8FD97691167196 /* Ice.framework in Frameworks */,
+ 23F959A19338168260332DFC /* IceGrid.framework in Frameworks */,
+ 99BF63EC36771144FC0612F7 /* IceImpl.framework in Frameworks */,
+ 2CA581DF47445AAE9F684F86 /* IceStorm.framework in Frameworks */,
+ 60C5F318B4F50B545BF00945 /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 2337533DFE9DBB9863BBBCBB /* Frameworks */ = {
+ 23F25ECD9DCE2D2529CA103A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 111EFC95A4197F80240352C4 /* Foundation.framework in Frameworks */,
- DB5FC8E34924846BED0BC49D /* Ice.framework in Frameworks */,
- 9FE76287384445DEB3DC1308 /* PromiseKit.framework in Frameworks */,
- 4051D7E7881D7AA555E93744 /* TestCommon.framework in Frameworks */,
+ CAC52653C96F0A62FA16E6E1 /* Cocoa.framework in Frameworks */,
+ 0981BF16F47193B435976091 /* Ice.framework in Frameworks */,
+ FB3573DFA198993154132002 /* PromiseKit.framework in Frameworks */,
+ 3E4C12EFC2BDEB6D92A7E395 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 2663F0A7ABA51569FFC456B1 /* Frameworks */ = {
+ 255FA8B88BC828B5A289CCDB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 72E632D9B3ACA247937351AB /* Foundation.framework in Frameworks */,
- 1F69920AD89FA30F1D16306B /* Ice.framework in Frameworks */,
- F40990A11D362541E73E6F29 /* PromiseKit.framework in Frameworks */,
- BA43442D52C46129B7E310B4 /* TestCommon.framework in Frameworks */,
+ 5B4ABCEC0FC67FD009FBDCE5 /* Foundation.framework in Frameworks */,
+ 84AAAE00AC101843740F5A38 /* Ice.framework in Frameworks */,
+ B6A4633C948B82708FA71561 /* PromiseKit.framework in Frameworks */,
+ 3954980D029C0C68C1B7DF2C /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 395C76EA00A5D33E44D99602 /* Frameworks */ = {
+ 27D527AC78B78AFE438F7C9A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- E7DE2ADE63530EA19E5E88CA /* Foundation.framework in Frameworks */,
- DD69FBF2B05B16780142326D /* Ice.framework in Frameworks */,
- F496794A8D684ADB1C6060B1 /* PromiseKit.framework in Frameworks */,
- F03C4F46C99F13C8E2B56E8C /* TestCommon.framework in Frameworks */,
+ A740F75824B67C4FECA38E0D /* Cocoa.framework in Frameworks */,
+ 80B4BC71802264C687D9D4A4 /* Ice.framework in Frameworks */,
+ 3FB4C3D866FFD2473543B594 /* PromiseKit.framework in Frameworks */,
+ E6BE78B3486FB70FFA44E68C /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 41673E0D4D3EAFC19DDBAC8C /* Frameworks */ = {
+ 2904A0555D938036491590AA /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 16B0F207C40D23764326BFB1 /* Cocoa.framework in Frameworks */,
- CE183203C46BB0FBC20BC9E2 /* Ice.framework in Frameworks */,
- 873A13381FCAE6AA26891DAB /* PromiseKit.framework in Frameworks */,
- 8CA363E06459CC47FE221D81 /* TestCommon.framework in Frameworks */,
+ 2E0FB83440E7E87126A6685F /* Glacier2.framework in Frameworks */,
+ D9ABCDCA73D8AFC7E4CF53FA /* Ice.framework in Frameworks */,
+ AB91CEA2573E2DECD57458B7 /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4251E83B40FB2F60C2421568 /* Frameworks */ = {
+ 297987375A30559E41100A67 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 4392F7DD390E6415BFFE2725 /* Foundation.framework in Frameworks */,
- 441574B9128D76543EAB6134 /* Ice.framework in Frameworks */,
- 9B47AB28530E5C1B1BBF8F54 /* PromiseKit.framework in Frameworks */,
- 53E21F08903A88AD3B58A30A /* TestCommon.framework in Frameworks */,
+ A171499580C50B91218AB70D /* Cocoa.framework in Frameworks */,
+ 31EA9335F33839264A62893C /* Ice.framework in Frameworks */,
+ F36E4ADD5F32B3D573B6E0D2 /* PromiseKit.framework in Frameworks */,
+ 7ADBCFC3540AF088507A380C /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 43F48F58AE216FDBE3CDB16F /* Frameworks */ = {
+ 2A16BCBB6B3A8490392596E1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 7E63E756DB0957DD9AC346AC /* Cocoa.framework in Frameworks */,
- 7449AF9F12B24B130E78657A /* Ice.framework in Frameworks */,
- DCFBF85057659EFC096392CE /* PromiseKit.framework in Frameworks */,
- 9F9AE3472F189FF8CA3A1750 /* TestCommon.framework in Frameworks */,
+ 8B9644A124433CF99603FFA2 /* Foundation.framework in Frameworks */,
+ A0CD0E199843D2FCB706E370 /* Glacier2.framework in Frameworks */,
+ 3044DF248BEDCA51493103E6 /* Ice.framework in Frameworks */,
+ 41C304BDF5024716AF93E284 /* IceGrid.framework in Frameworks */,
+ CFFCD2D7F80A4FC3A1F8A492 /* IceStorm.framework in Frameworks */,
+ A1E58F2270FD9314F226FD56 /* PromiseKit.framework in Frameworks */,
+ 7A35D7128F800A6A51E29FFE /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 47C25F98C9A1B5957318F0F9 /* Frameworks */ = {
+ 2A6652799F09804AC6435F04 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- D79A90364DDE55149CC5DAFB /* Foundation.framework in Frameworks */,
- 332E7D0D78D173CF302869E6 /* Ice.framework in Frameworks */,
- 4F26FED6A58A2BC0BAF5A06C /* PromiseKit.framework in Frameworks */,
- BF2A31706695C97D389DA270 /* TestCommon.framework in Frameworks */,
+ 4D3C3104277F62F4CD0C3813 /* Cocoa.framework in Frameworks */,
+ 88096BE9B15DE6B775B1CD94 /* Ice.framework in Frameworks */,
+ B71BB62CCB874CABE62E443A /* PromiseKit.framework in Frameworks */,
+ 1BC1F75801ACE90C521D652E /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4819AEC0FC6E815E2E24C077 /* Frameworks */ = {
+ 2BDE0688FE07596526FAFC2B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 42112F4DD06761E6292DC163 /* Cocoa.framework in Frameworks */,
- 7E36D86CDB57DC7B42C9B1E8 /* Ice.framework in Frameworks */,
- 119C5AE7CEA2346E2A583524 /* PromiseKit.framework in Frameworks */,
- FC27263C208FDFF8A58FAEF1 /* TestCommon.framework in Frameworks */,
+ 99B52AD8A8778DB5BFDCA722 /* Foundation.framework in Frameworks */,
+ 98EF727853C9C8A484929B85 /* Ice.framework in Frameworks */,
+ BE6DA9F4D6B10275C865325D /* PromiseKit.framework in Frameworks */,
+ 253A8A25187AFEF6A69A165D /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4A2529A9F8B169387E5D6827 /* Frameworks */ = {
+ 3429B33E573E5F813542CD2F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 896707A3866189FE9604C6C1 /* CFNetwork.framework in Frameworks */,
- C40989C717F1A574C69E6E57 /* ExternalAccessory.framework in Frameworks */,
- 88C284CD469B597965D70A28 /* Foundation.framework in Frameworks */,
- 6C6A494E3AE23FBD09A6E947 /* libIce C++11 iOS.a in Frameworks */,
- D00F7C1560DE548DB8EBF4D9 /* libIceDiscovery C++11 iOS.a in Frameworks */,
- B44D0EF102A64C1E764CABC6 /* libIceIAP C++11 iOS.a in Frameworks */,
- D1AD8412C81561854BAE9B8B /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */,
- 1E292CC9032DE26BB4471311 /* libIceSSL C++11 iOS.a in Frameworks */,
- 31D5C1B249976516DDA6C2D6 /* Security.framework in Frameworks */,
- 8A156E5A56A0A715877F13E3 /* UIKit.framework in Frameworks */,
+ 417B9BD1ED267165A6D6C767 /* Cocoa.framework in Frameworks */,
+ E11A0A09420858B006E646B6 /* Ice.framework in Frameworks */,
+ 2AFDCF18C5B4B16974103256 /* PromiseKit.framework in Frameworks */,
+ 6B27A917D1469D1A17AFE37D /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4A9B0804B57B0B2F9B4F16C7 /* Frameworks */ = {
+ 35108728344233C72ED6F21E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 1B9F4EAD8DDB00AA22DCDA9D /* Cocoa.framework in Frameworks */,
- 2020B9284D0B6AFAA2407B1F /* Ice.framework in Frameworks */,
- B031002E5E92D83F48D0F0F9 /* PromiseKit.framework in Frameworks */,
- 8092868ADE658959C0BABA27 /* TestCommon.framework in Frameworks */,
+ EF71DD71CDF3085881210D5D /* Cocoa.framework in Frameworks */,
+ B37AF30A3AC1CE214CAC34FE /* Ice.framework in Frameworks */,
+ 237DB7646C291884C6CCD9C2 /* PromiseKit.framework in Frameworks */,
+ 8EDFE390C976F7130E06B0B2 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4C483D54845DB7027BA66AB6 /* Frameworks */ = {
+ 36B89521664F2C89347860F0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
+ 9A6B649027DF50DA4BECBC84 /* Foundation.framework in Frameworks */,
+ 9EE950A40A8E78B0CA673975 /* Ice.framework in Frameworks */,
+ 32FCB416C0BCD83419EF2014 /* PromiseKit.framework in Frameworks */,
+ 9A703CA75B4BACF62C86997C /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4CFACB5082B7517C49A4AD82 /* Frameworks */ = {
+ 383C3915C3A935DEC0774F84 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- D93106F3225CFA4377913CEE /* Foundation.framework in Frameworks */,
- D44DAD4B54637DF1817A448F /* Ice.framework in Frameworks */,
- 36B6ABDC9E320D676FAEBE8F /* PromiseKit.framework in Frameworks */,
- 591A45248C920C04E7675B01 /* TestCommon.framework in Frameworks */,
+ A9EAD63C7A0B1C8C13FCE85E /* libIce C++11 macOS.a in Frameworks */,
+ 136D0F400799F89F4FC8BD9F /* libIceDiscovery C++11 macOS.a in Frameworks */,
+ FA405E6DFF25B85F1653371E /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */,
+ E856B99B9A9D58122A78B79E /* libIceSSL C++11 macOS.a in Frameworks */,
+ 384B69590E8A5A68A34D1192 /* Security.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4E88A7AB00FD7534EE993DE3 /* Frameworks */ = {
+ 398A46CEE0D55D519F260DE0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- BAE377EF4CFB07C59DA9B443 /* Cocoa.framework in Frameworks */,
- A767CFF55AE751A58BCB787C /* Ice.framework in Frameworks */,
- E988DEF76DB7655F470F6223 /* PromiseKit.framework in Frameworks */,
- A220FE867D11E6AB55B176D0 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 50C1F12753C75322108E2A8F /* Frameworks */ = {
+ 39A5659F35A3B6F36558761F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 0E2CD8D3FF556C952214042D /* Cocoa.framework in Frameworks */,
- F38226EF7F8FB5765B55FE11 /* Ice.framework in Frameworks */,
- 340610C5A68674A2C87A9972 /* PromiseKit.framework in Frameworks */,
- C707FF62C967279A712B08BF /* TestCommon.framework in Frameworks */,
+ 130F32F611890133793521AC /* Foundation.framework in Frameworks */,
+ 6969DCC9771DAE490645DB4F /* Ice.framework in Frameworks */,
+ B3306ECB386EC234495E78F0 /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 541DEBD56A0D93C40AB10F01 /* Frameworks */ = {
+ 39FC128F824212ADA3698804 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- AB5A829EF960B61C366FE918 /* Cocoa.framework in Frameworks */,
- 8626A33CD4D9034BB6DEFB60 /* Ice.framework in Frameworks */,
- 3B5780BC982B5AB1CA546DE5 /* PromiseKit.framework in Frameworks */,
- 534B34FED2BC5B1D8B0B7C0C /* TestCommon.framework in Frameworks */,
+ 8668AB6E822A260743D5B76F /* Foundation.framework in Frameworks */,
+ 2C0909B831C8D1C5207354A7 /* Ice.framework in Frameworks */,
+ 980C3D18A9CE2E2C625610B9 /* PromiseKit.framework in Frameworks */,
+ 4A630E30DA3058F81ED6D0B0 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 5548E7C382818F44EA585085 /* Frameworks */ = {
+ 3C57181422369E5E1BAAD908 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 168E57152979BD75BFD8EB0F /* Foundation.framework in Frameworks */,
- 32E465B571F55F414AF94CE8 /* Ice.framework in Frameworks */,
- 0AAB923DAA7C77D3F2C5E92D /* PromiseKit.framework in Frameworks */,
- 8D7347C0FE166EEC6D67EBEF /* TestCommon.framework in Frameworks */,
+ A45B2A0C3B0B4F1E5A27A78F /* Foundation.framework in Frameworks */,
+ 3EF58075074C8D044754A84F /* Ice.framework in Frameworks */,
+ D04668A72E4B356B9B6279F0 /* PromiseKit.framework in Frameworks */,
+ 5227E03CF69B256481F33BFC /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 56598BBDE8405DDB0A627525 /* Frameworks */ = {
+ 3E19FD668FFEBB03DE8C289E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 4C733E974A4910F1BE94EFD5 /* Cocoa.framework in Frameworks */,
- BB94549DA517F06E7A49CF17 /* Ice.framework in Frameworks */,
- DF61C46C6D4F3FAB441405C0 /* PromiseKit.framework in Frameworks */,
- BDD8F0B2F3D74314B86B5647 /* TestCommon.framework in Frameworks */,
+ D069EBD3A67734BF2E545483 /* Foundation.framework in Frameworks */,
+ 24E403A6CE7CB74DB266538C /* Ice.framework in Frameworks */,
+ 2107B50B2861DFD308523A28 /* PromiseKit.framework in Frameworks */,
+ FD763BF5F857B17B4EC806EC /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 59ACB088EE5294094A3953E1 /* Frameworks */ = {
+ 4105D6B40F340BA8683FFFBC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
+ 3240B8C50447DC8BD4DB350D /* Foundation.framework in Frameworks */,
+ 319931210FE03935E746A6A3 /* Ice.framework in Frameworks */,
+ BBC368714EADEC30256FEF95 /* PromiseKit.framework in Frameworks */,
+ 013FF9D704F75B2FFF8BA20E /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 5D4874CC2EC207A209FA75B8 /* Frameworks */ = {
+ 439919B6B217AC4D29DE7764 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- B50A87BE92A6A72A73EA1CAE /* Cocoa.framework in Frameworks */,
- FBE96067B5858C10C934060F /* Ice.framework in Frameworks */,
- 300576D94593E3EF51B7CF74 /* PromiseKit.framework in Frameworks */,
- 9E36EA3A0B691FDA20A23D8D /* TestCommon.framework in Frameworks */,
+ 1C1C2F59EAB745571C0E08BE /* Foundation.framework in Frameworks */,
+ 50B29DB0E4C1423BC3256B5D /* Glacier2.framework in Frameworks */,
+ AACE9FC2F03022A8547FDD33 /* Ice.framework in Frameworks */,
+ 8DA1AE3B1AF3DEAA1E6BF1D7 /* IceGrid.framework in Frameworks */,
+ CE1655D61E01719517A0C568 /* IceImpl.framework in Frameworks */,
+ F51173ADF8D48BB5FE283617 /* IceStorm.framework in Frameworks */,
+ E59F2E9844E4245A1F6171CB /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 5F6DFD0C8616349031C9F254 /* Frameworks */ = {
+ 455ADA53D78A4A7E33F92D31 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- EBF2CA4ABDDBF88655FB91FB /* Foundation.framework in Frameworks */,
- 4B4816ED42CD395653D37E21 /* Ice.framework in Frameworks */,
- FE4A591465F4B509C51064CD /* PromiseKit.framework in Frameworks */,
- B9488C4D6FD2FFD6AE6681A7 /* TestCommon.framework in Frameworks */,
+ 638E3CF49C78D07A579EFD2C /* Cocoa.framework in Frameworks */,
+ B705963CB0F7699CA1AF8F99 /* Ice.framework in Frameworks */,
+ DD0014103B638890BE25A526 /* PromiseKit.framework in Frameworks */,
+ 3BB2E31F205B2C9205DCD7B0 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 63CCEFD42E4A7FB3E3475C0B /* Frameworks */ = {
+ 45B8985F51795D64FE773565 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 413E76ED0135D1B9490EBA01 /* Foundation.framework in Frameworks */,
- 440AC22AD519DC1C90E042FB /* Ice.framework in Frameworks */,
- 00581EF9117C31B6A4E8FA38 /* PromiseKit.framework in Frameworks */,
- 15325AD131DA10FC4A2ABAD1 /* TestCommon.framework in Frameworks */,
+ A747B1856B6F3D91678B0210 /* Cocoa.framework in Frameworks */,
+ DBFDACF4B6262678BF65C703 /* Ice.framework in Frameworks */,
+ 7253C04372698D0080377BF7 /* PromiseKit.framework in Frameworks */,
+ F33D287FF1DE03ECEBFDDDAE /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 6603E93ED977364E39B708AE /* Frameworks */ = {
+ 46034A9395EBE9F9AE75A7C0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- C4B4B1949D3D024D55B2CB31 /* Cocoa.framework in Frameworks */,
- 40F21E313B7C8A2C85631918 /* Ice.framework in Frameworks */,
- 3A2F57D1887EFFCC058EA413 /* PromiseKit.framework in Frameworks */,
- 981FE6361D4788EE5CF941D9 /* TestCommon.framework in Frameworks */,
+ 30EB6AAA9D0FF7C203B367D5 /* Foundation.framework in Frameworks */,
+ BB81CB5BC24938D967EE2D58 /* Ice.framework in Frameworks */,
+ 8C17631FB62027FFCDB1D4A0 /* PromiseKit.framework in Frameworks */,
+ CF6B74BF486BAD5B077E6DAE /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 6A68D2B235231F9004700D13 /* Frameworks */ = {
+ 484F5714BC4493143F66E54B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 486C0572146A4561DC3EFB1E /* Glacier2.framework in Frameworks */,
- E9B8795317EBA464D498AE83 /* Ice.framework in Frameworks */,
- 134E688B3DE1734A17E011FB /* PromiseKit.framework in Frameworks */,
+ DC1FD874127AB2F5C68CE67B /* Foundation.framework in Frameworks */,
+ 361923BFA90CE73FC03C270B /* Ice.framework in Frameworks */,
+ 05B8C82242314EA65FAD107E /* PromiseKit.framework in Frameworks */,
+ 8838F45E152A7EC4C24218CC /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 6E9C9652815AC938C1593FEA /* Frameworks */ = {
+ 48ACAAE0BF72F5146AB0B96D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- F48E19F7941EE25C27D5D276 /* libIce C++11 macOS.a in Frameworks */,
- 24EA29EDA7A289947665B23D /* libIceDiscovery C++11 macOS.a in Frameworks */,
- B66B93D165FE1B1B36693234 /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */,
- A91830602073CFFC81906084 /* libIceSSL C++11 macOS.a in Frameworks */,
- A708E6AA802F6E9094DB3114 /* Security.framework in Frameworks */,
+ 8A26ACB9B208D4C6DE1DFAFD /* Cocoa.framework in Frameworks */,
+ 7A5316308BE7191ED737CF0C /* Ice.framework in Frameworks */,
+ BA5FF80D4FFE218317B386A7 /* PromiseKit.framework in Frameworks */,
+ 0867A8192C7383BC95D8C2FE /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 70632180BDEB575B2DE6A8C4 /* Frameworks */ = {
+ 4DFF5FBEB14B4CD81B9836C5 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- F116F96ECDCDD794CEEBEE14 /* Cocoa.framework in Frameworks */,
- 72FAC2D735524D995932B204 /* Ice.framework in Frameworks */,
- B929D4D62B700C3EF5482E7D /* PromiseKit.framework in Frameworks */,
- 9FAA067E31E901AF579CD017 /* TestCommon.framework in Frameworks */,
+ 45ADD1A65D9C1E32644439A8 /* Foundation.framework in Frameworks */,
+ A62FB14033B42FEF22033042 /* Ice.framework in Frameworks */,
+ 7A3C6349D41D359C4EFF332B /* PromiseKit.framework in Frameworks */,
+ 45E3E79A2C8110DBAC4ED623 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 74ABB2F7502BD812834CCE46 /* Frameworks */ = {
+ 4EC3F43A252A5469B91F2D0E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
+ E78B8416139C6605A58B7798 /* Ice.framework in Frameworks */,
+ 5D815B3CB0B92CB68D3CA7D6 /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 75F8F3A3382379E83F130004 /* Frameworks */ = {
+ 52AACFCE922C1EDD181FDFD2 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 5670EE11E11467ED75B1DB36 /* Cocoa.framework in Frameworks */,
- C201AD53FB35EBD7DE676500 /* Ice.framework in Frameworks */,
- 608A571494656A2CA48B052C /* PromiseKit.framework in Frameworks */,
- 50A2A8DD9C763049DC819BF7 /* TestCommon.framework in Frameworks */,
+ 9B869B5A493BB93882B36FCD /* Cocoa.framework in Frameworks */,
+ E2E511DBAB6F0092F019DF81 /* Ice.framework in Frameworks */,
+ D8C0485CBA69615649AAC9C4 /* PromiseKit.framework in Frameworks */,
+ FA76FA33CD81325E5B3EDA0C /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 7657DA393E7769C67AA38532 /* Frameworks */ = {
+ 584D63C7072AFCB4B716E637 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- B0F79D9CBBD07B1B6B09D13A /* Glacier2.framework in Frameworks */,
- ECC6646F8F2E313F34888953 /* Ice.framework in Frameworks */,
- D30CF87E76A8BDC3D35B9F8E /* PromiseKit.framework in Frameworks */,
+ 547A0DA563912F636FC0DF85 /* Cocoa.framework in Frameworks */,
+ F0BCB872187F7B0F3125764B /* Ice.framework in Frameworks */,
+ 067FC12E31F4796D6BB111B7 /* PromiseKit.framework in Frameworks */,
+ 2AD166814D8673DE98DB34F0 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 78A399541DAB569490FAF3E1 /* Frameworks */ = {
+ 610ED3E4EAB8F0706449FF4E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 5E3967694FD4D15510263A3C /* Cocoa.framework in Frameworks */,
- F291EB54B8250B07FE7FD204 /* Ice.framework in Frameworks */,
- 3AA1CE7F7C23551891E8F7F2 /* PromiseKit.framework in Frameworks */,
- 17051CA00D1D4AB4B9F06D48 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 7978D15CCE773A51BFE58006 /* Frameworks */ = {
+ 65F5556DD2C0871DC66246FA /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- E26EF10B1DD77732D811E30F /* Foundation.framework in Frameworks */,
- BE9AC6556EBADC0DB3695FA7 /* Ice.framework in Frameworks */,
- 54F7B117432056088DD99C39 /* PromiseKit.framework in Frameworks */,
- 3786AFF90936E9F87B82A6CF /* TestCommon.framework in Frameworks */,
+ CEDA88E53BED924EBA1CBF9D /* Foundation.framework in Frameworks */,
+ 0AF44D6B46094D54C93E188D /* Ice.framework in Frameworks */,
+ 0AEC0E3C9A7DBFA76454CE8A /* PromiseKit.framework in Frameworks */,
+ D3E6E090CAB52841ACCA271A /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 84F3ECAB019F4F509892785B /* Frameworks */ = {
+ 6AE73E36F0D9F4AB72FF135D /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- D8314D739D3EB1534809B3AB /* Foundation.framework in Frameworks */,
- 6AFF9834BD95FB50EBC66198 /* Ice.framework in Frameworks */,
- E1F51383FB15D3A846AEEC9B /* PromiseKit.framework in Frameworks */,
- D49C89E3F247166A5C1B264F /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 8D3AC889941C77BFD0E81C66 /* Frameworks */ = {
+ 720746EB56741A31AEBE510C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- BF41C9EE85DE1069983D77CC /* IceImpl.framework in Frameworks */,
- D1717F8E00679A730384DB71 /* PromiseKit.framework in Frameworks */,
+ 7530457B822F2DECE6DC1250 /* IceImpl.framework in Frameworks */,
+ 2DD29DC85DFE7312CF666442 /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 905563934741C0B50FA9F852 /* Frameworks */ = {
+ 7372A3947354D59C7F252C57 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- A61A68DF2694EF866B556630 /* Foundation.framework in Frameworks */,
- 66BBC950B5C3C58EFB3B04CB /* Ice.framework in Frameworks */,
- 41B4E9340711A973EE5ACC9A /* PromiseKit.framework in Frameworks */,
- 83ED49E3C8427649F106766E /* TestCommon.framework in Frameworks */,
+ 109DD34B1B20C9DE10B2A5D8 /* Foundation.framework in Frameworks */,
+ 89EAF01558BFC517ECED5CFD /* Ice.framework in Frameworks */,
+ 9DCD9B25E5DACF4539B26D61 /* PromiseKit.framework in Frameworks */,
+ 14489AB468441A68F1EDAB71 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 909639C94708DD464C1E36B4 /* Frameworks */ = {
+ 74174C7E1B03324C6514DA65 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 8A2F030D51E6C2DF1AF0539E /* Cocoa.framework in Frameworks */,
- BBB5065C889F0A74DB03DB69 /* Ice.framework in Frameworks */,
- EA849A2F1DCAE22B339A0C3B /* PromiseKit.framework in Frameworks */,
- 38072BDF862E99E1AD76BEF4 /* TestCommon.framework in Frameworks */,
+ 02DD1A97F3322D501A5BAFD2 /* Glacier2.framework in Frameworks */,
+ 59F13F46483EC8C6166DC0DC /* Ice.framework in Frameworks */,
+ 5E48261D2E5D7303DF3D0FF5 /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 933F7EB64A8D0E61748406EE /* Frameworks */ = {
+ 75ABCBFAC4B7A36A2F414617 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- C338162EBB15B8DCAD393B07 /* Ice.framework in Frameworks */,
- D4B54310A688B6CDADE686D5 /* PromiseKit.framework in Frameworks */,
+ 8965F1CEECB5538012DF20DC /* Cocoa.framework in Frameworks */,
+ 3FBD17DC28C6CE539D7AC658 /* Ice.framework in Frameworks */,
+ 14F49448418AA48A50CA8D58 /* PromiseKit.framework in Frameworks */,
+ E8F52998D17563F7F4496651 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 970F7106D6B4FF96A02D4C78 /* Frameworks */ = {
+ 77F8D928C3E32F7F37017A06 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 27E985321490B56A32768A9F /* Cocoa.framework in Frameworks */,
- 665B2CA50DB7AC7A0A72C540 /* Ice.framework in Frameworks */,
- 59292A69E5BA8CE4CD3EA906 /* PromiseKit.framework in Frameworks */,
- EC1E1C8FB7046798E35DC9E2 /* TestCommon.framework in Frameworks */,
+ BBEAE783E20D11AD2DFCD806 /* Cocoa.framework in Frameworks */,
+ 1FF0F0D4FA0FCFAFE44D2379 /* Ice.framework in Frameworks */,
+ E4BC151332B9AB0B58ECF164 /* PromiseKit.framework in Frameworks */,
+ 0C7D0A3E744E76D3FA107FE9 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 987D6792871CC486D71E392E /* Frameworks */ = {
+ 786CCD283FDFA1333FA94A4E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 315475FAAE588AF9347F100A /* Foundation.framework in Frameworks */,
- 015B780909C5FCFADD50590E /* Ice.framework in Frameworks */,
- D7CD4F6DE4371D975F072A83 /* PromiseKit.framework in Frameworks */,
- 35F0745FAD324EB3AE613DCF /* TestCommon.framework in Frameworks */,
+ D74731D7D7985EE8F7AE717D /* Foundation.framework in Frameworks */,
+ 58C2C4E76D596A68AC0B853A /* Ice.framework in Frameworks */,
+ C50AADD94238A786734D4605 /* PromiseKit.framework in Frameworks */,
+ B04D4DF10E3044DD1F14A605 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 9A5AFBC9141096708E512FED /* Frameworks */ = {
+ 7B82A83F1645AB3CD9159317 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- DFC95651386C77AAC23EF2B9 /* Foundation.framework in Frameworks */,
- 7185824B76F97B4907D512DA /* Ice.framework in Frameworks */,
- 9D0C8EB77EA5C01D69D758CD /* PromiseKit.framework in Frameworks */,
- BF7F468624E1A8933A32FB27 /* TestCommon.framework in Frameworks */,
+ 530E32A812FA0F15E65229F5 /* Foundation.framework in Frameworks */,
+ 3D456C5E3124C304C613D085 /* Ice.framework in Frameworks */,
+ F4C24A125F3427BB5FB538EF /* PromiseKit.framework in Frameworks */,
+ D5C59A1401F324205EDEBD9D /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 9F33736A8FFA22827E79E795 /* Frameworks */ = {
+ 7C08E9656CFB70E54AD500C9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 9B1575D9015CF2AD5D8F03EE /* Ice.framework in Frameworks */,
- FAED63870E1F380570AD0D65 /* PromiseKit.framework in Frameworks */,
+ EA10F4339A1A1B7E8504FC9E /* Foundation.framework in Frameworks */,
+ 8A46B0541EF140FA9CEB9668 /* Ice.framework in Frameworks */,
+ E9A7B33B376A6E366536DF33 /* PromiseKit.framework in Frameworks */,
+ B991559DC31B51F8C2F0CAD8 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 9FCC4C0B224529957F83C9CE /* Frameworks */ = {
+ 7F1E3F626F075B69AB3507AD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
+ 0D0E03F2955927FD0E35F889 /* Cocoa.framework in Frameworks */,
+ C3DAA2AA3529CA946F5DA11C /* Ice.framework in Frameworks */,
+ 2D270930D20321E0E4DCF030 /* PromiseKit.framework in Frameworks */,
+ C2D6F1B3B0E441AD62171B89 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- A24C7B04B9E969DE9CF4A57D /* Frameworks */ = {
+ 817F5CF70E0513858CC9DC9E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- D8F8B5A48CB6814E7E28AD58 /* Cocoa.framework in Frameworks */,
- A9BA17D3D6B7AAE85E45AD86 /* Ice.framework in Frameworks */,
- 0F2EE34839E9E21D764A8123 /* PromiseKit.framework in Frameworks */,
- FF00E2FBB6C7EC2BCFBF932F /* TestCommon.framework in Frameworks */,
+ 451B5208BA229078C93E4BCA /* Ice.framework in Frameworks */,
+ 85480C31473C41E090D2FACE /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- A397CB128D59F9DB7DCCCFCB /* Frameworks */ = {
+ 85ABCEE7B5A8A213DF3540A0 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 54AE55170857E75A0A26FB14 /* Foundation.framework in Frameworks */,
- 944B0EF7F8E6EC930934613E /* Ice.framework in Frameworks */,
- 02AC9A1AE9BFF01E4275C2FA /* PromiseKit.framework in Frameworks */,
- 3A2FB42C705B9E7F36DB7480 /* TestCommon.framework in Frameworks */,
+ 949BBA693EA2D2E4350D0101 /* Foundation.framework in Frameworks */,
+ F8D3E174E7524A66083BDB11 /* Ice.framework in Frameworks */,
+ 97ED933E639C567035FBCDA9 /* PromiseKit.framework in Frameworks */,
+ 4C42D222A780D4A59AECB76B /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- A3C4D497E452DC1CE53FF3E6 /* Frameworks */ = {
+ 85AEE67706B48B7E255748AD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 775C516D008C810A3CA0344A /* Foundation.framework in Frameworks */,
- E46676923E324197FE3F408B /* Ice.framework in Frameworks */,
- 34A9ACC8F3BBE1F8C4B7F675 /* PromiseKit.framework in Frameworks */,
- 9B287770D5B53CF962394ACB /* TestCommon.framework in Frameworks */,
+ BB9081719A37B730700790C8 /* Cocoa.framework in Frameworks */,
+ 797D8ADFAE19C19AA0D1C464 /* Ice.framework in Frameworks */,
+ D49FE292BA53293DD4376BED /* PromiseKit.framework in Frameworks */,
+ F25B831C138AAA09CAB6DEF7 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- A5D245549CF354102B158462 /* Frameworks */ = {
+ 886A49EE98F0F58C2339377C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 98C8A9BE4F0D788403BF3A7F /* Foundation.framework in Frameworks */,
- 44AB41A6DC8B20BE76334F39 /* Ice.framework in Frameworks */,
- C043FFF2545D972FA745417B /* PromiseKit.framework in Frameworks */,
- 550C7D5572FB9BFD51811717 /* TestCommon.framework in Frameworks */,
+ 56119C18EEA705EFF9A81E91 /* Cocoa.framework in Frameworks */,
+ 479C1F8B42FA53EC5389B433 /* Ice.framework in Frameworks */,
+ D6461E5109A054455825CA0C /* PromiseKit.framework in Frameworks */,
+ 3F5629E80E534CA7A119707C /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- AB0461FCD631C9A51CE59107 /* Frameworks */ = {
+ 886DF937945FAFFB0DB35DFE /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 4C6D8422A7B701A310F2E47C /* Foundation.framework in Frameworks */,
- 4DF02D9C9893D08710303AC8 /* Glacier2.framework in Frameworks */,
- 814FB37F5CB10EA501A31E44 /* Ice.framework in Frameworks */,
- D2A06423ED493FFC783E7DBC /* IceGrid.framework in Frameworks */,
- 1BBCA4F07DFEFEDA890F3A82 /* IceImpl.framework in Frameworks */,
- EA709AE2BF414D97C94BF86C /* IceStorm.framework in Frameworks */,
- C6883E21842F4DC08F187F32 /* PromiseKit.framework in Frameworks */,
+ 619F8103F2133D88541D45DC /* Foundation.framework in Frameworks */,
+ 52028D9ABD56AF65A8FAE0E3 /* Ice.framework in Frameworks */,
+ 85037E37BB10401FD59A7CE0 /* PromiseKit.framework in Frameworks */,
+ 67703A74161828C24514929E /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- AE0CDA57FA017DB9DCE7A18E /* Frameworks */ = {
+ 88E0A79DCD6CEB08E91813F6 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- F00FB173641573EC3411B64B /* Cocoa.framework in Frameworks */,
- 5D82C8C16D78F8C27431F671 /* Ice.framework in Frameworks */,
- EADF87A453C51BBB82E2EB44 /* PromiseKit.framework in Frameworks */,
- 12BDAA1D687EE9D849D73925 /* TestCommon.framework in Frameworks */,
+ EDD2A2E8D5F331DB4F9B1716 /* Cocoa.framework in Frameworks */,
+ 7CFD6334D7BC3AED5910E2D8 /* Ice.framework in Frameworks */,
+ F7CED2AF4DEC7F7FEE7E8604 /* PromiseKit.framework in Frameworks */,
+ B4DE62E31C08334191B89C24 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- AEB2FFFA522A4D6568E36ECA /* Frameworks */ = {
+ 8C0A0FECEB22634E115A89A1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 34DAE2AD829804ECED6643E3 /* Foundation.framework in Frameworks */,
- C03A7494340F90A1809EC392 /* Ice.framework in Frameworks */,
- ABE0DC77034659354B74160E /* PromiseKit.framework in Frameworks */,
- D24AF24B356BE137052F5788 /* TestCommon.framework in Frameworks */,
+ 9850B7626ED4A39EAAD248A4 /* Cocoa.framework in Frameworks */,
+ 76F756EAA6CA5EEF772D9E52 /* Ice.framework in Frameworks */,
+ 5FF7D6D88718EC6CC0AC442F /* PromiseKit.framework in Frameworks */,
+ CB9210EE87B78A9AFF8A35A5 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- B006CD09487DBC788C6EC34F /* Frameworks */ = {
+ 8C46960B36CF69C25B82AFD2 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- A3EE196609ABAED6BC450CC2 /* Foundation.framework in Frameworks */,
- FA19B99668B9060803D5C52E /* Ice.framework in Frameworks */,
- 4C4D6E81AABAA1D95DD99C0C /* PromiseKit.framework in Frameworks */,
- B8F5F15EDCC6642E084F7AF8 /* TestCommon.framework in Frameworks */,
+ 62BD84F0F9DCC1978F42D9BF /* Cocoa.framework in Frameworks */,
+ 065497B5DB43B84EE0DA5832 /* Ice.framework in Frameworks */,
+ D72F11F6E9C0A5AF94116D2C /* PromiseKit.framework in Frameworks */,
+ 39288D06602CA43D50B44CE0 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- B2D6BFF51E847682D6AA5044 /* Frameworks */ = {
+ 940C3830571CA573B487E70F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 320298FB58F5FD2278ED721E /* Foundation.framework in Frameworks */,
- D1E754DBF4060915F4E0B281 /* Ice.framework in Frameworks */,
- 93AFE41C43DD950A0EC52F69 /* PromiseKit.framework in Frameworks */,
- F472B0B7C5933DE0446A7EFD /* TestCommon.framework in Frameworks */,
+ 412A86E514A10830D3503879 /* Foundation.framework in Frameworks */,
+ 18EA0D609A009E6DE44E93E6 /* Ice.framework in Frameworks */,
+ A855D3661C9395C1F7464B8D /* PromiseKit.framework in Frameworks */,
+ 521A45D3679D6F29951EBF03 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- B33825B6F1CF0771855702DE /* Frameworks */ = {
+ 9B58C2C1A72022161596C43F /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 643B4CDD5D9D12D7717A65F5 /* IceImpl.framework in Frameworks */,
- A117BC110DD5BBDC1F37A4F8 /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- B7C156CCF5C8C98ADCD1544E /* Frameworks */ = {
+ 9CC69F6021F3ADAA62093773 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- B92D731AC40E74B32C90F6B0 /* Frameworks */ = {
+ 9E51559722AF1BA9F3B59DFD /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 06920315CC83BAB86D795E5D /* Foundation.framework in Frameworks */,
- 25E11525246AAC9D55DBB00F /* Ice.framework in Frameworks */,
- AD8F99134E8450AF42AAFF76 /* PromiseKit.framework in Frameworks */,
- BD8C954B8FDE4BDB0BC37BDE /* TestCommon.framework in Frameworks */,
+ EF806DF3391AAF12BA97F6BB /* Foundation.framework in Frameworks */,
+ DBAA7416F575B4675D9BF339 /* Ice.framework in Frameworks */,
+ AC0A77165FD5E880ADD4C22F /* PromiseKit.framework in Frameworks */,
+ 8606F544E60334866883DCC0 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BA168A94DA839850CE4DE1EB /* Frameworks */ = {
+ A17BCAC4D7416A576BBC1D07 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 47C863C7B33E2D958CB54717 /* Cocoa.framework in Frameworks */,
- 4AB9AF5F1BB0AD9D2B8B1A53 /* Ice.framework in Frameworks */,
- A24FF1D4788E30A1CE4206B8 /* PromiseKit.framework in Frameworks */,
- 739F425E7825CB9260DB270D /* TestCommon.framework in Frameworks */,
+ 944EE11253C663ADEE64DD34 /* Cocoa.framework in Frameworks */,
+ 7C179C5533175C065A951935 /* Ice.framework in Frameworks */,
+ B168CCF2BF379019B10F119C /* PromiseKit.framework in Frameworks */,
+ A7798264B3110445B5C64351 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BA2A48787360AB526EED6927 /* Frameworks */ = {
+ A1908FC84025AEC72399F802 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 7AF32E930EE8A9DF0A662C53 /* Cocoa.framework in Frameworks */,
- 5CD04D94DFB2A5A7FE4F0822 /* Ice.framework in Frameworks */,
- 1168B9BA753BA5A5D03A0051 /* PromiseKit.framework in Frameworks */,
- D6C5508C2A5B64A82A1A313F /* TestCommon.framework in Frameworks */,
+ E86E66D95ADC4F42C081E8BF /* Cocoa.framework in Frameworks */,
+ 39341BF34C948DB8C236D787 /* Ice.framework in Frameworks */,
+ 283390D846410949B5EB63FC /* PromiseKit.framework in Frameworks */,
+ 02214CC7D8C3BBB12001F107 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BAA40E01BF32730B16160D1F /* Frameworks */ = {
+ A44B2FABCD5061AB73293565 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- F156326914AC486DE5C7E9E7 /* Cocoa.framework in Frameworks */,
- 7C1EBA677D2C11D8F6EF10C5 /* Ice.framework in Frameworks */,
- 5EF17FB80912E6B165C491B8 /* PromiseKit.framework in Frameworks */,
- 7C3118F3FA99D53B567B4F1A /* TestCommon.framework in Frameworks */,
+ 0DCB9144F04F7DF45F0D4EF3 /* Cocoa.framework in Frameworks */,
+ 7BEE72C6F2CA07713045B036 /* Ice.framework in Frameworks */,
+ BEED0791CF012C7D4D5BFE0F /* PromiseKit.framework in Frameworks */,
+ CF8A5B353B3ABB49BAD672EA /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BAFC013EDF26ED4C5402ECDE /* Frameworks */ = {
+ A602355D031E6F85C42DA7D9 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 70C35F619BF5F5C3D98EA732 /* Cocoa.framework in Frameworks */,
- 13F78BE71CB95A3FB9A2F6AB /* Ice.framework in Frameworks */,
- ACB0460A04C5038FD384C365 /* PromiseKit.framework in Frameworks */,
- 203AF720F5810E99D10477E5 /* TestCommon.framework in Frameworks */,
+ B55E283082B92DB498E9642F /* Foundation.framework in Frameworks */,
+ 6CFD68F1A26B123189049FF2 /* Ice.framework in Frameworks */,
+ A5CBB4780F3558A0B6EC7895 /* PromiseKit.framework in Frameworks */,
+ 1241206285CF92058F6346C1 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BE975D571071F66BFB975FAC /* Frameworks */ = {
+ A969ADEB4D3D0699DAD9DCCB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 802105298F22AE2B330BEC44 /* Foundation.framework in Frameworks */,
- A819C21DB09268A2B2C584AD /* Ice.framework in Frameworks */,
- B436F9959C5E61BF24119A9C /* PromiseKit.framework in Frameworks */,
- 783B385557C8B5E081BC33AB /* TestCommon.framework in Frameworks */,
+ 8198351C4DF486D64B5C7E66 /* Cocoa.framework in Frameworks */,
+ BF3A48D1E4475380A5090AE2 /* Ice.framework in Frameworks */,
+ DA8D2BD8A683075EB59D1411 /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BEAF467E5B19C94C6DF38B4D /* Frameworks */ = {
+ AAD1951DA0F9167266D55842 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 67E1D9AB513BB18478350DA2 /* Foundation.framework in Frameworks */,
- A536372C408EE4D8F5F38C5A /* Glacier2.framework in Frameworks */,
- 1A3893E97DA7C95AD0EA799C /* Ice.framework in Frameworks */,
- 9309F58619FF54CDABE40A31 /* IceGrid.framework in Frameworks */,
- 9543E6BC2500744E63DAD61F /* IceStorm.framework in Frameworks */,
- FEBCAD4480676F7DADEAEFFE /* PromiseKit.framework in Frameworks */,
- B10AA70BA09D72071FA60DB2 /* TestCommon.framework in Frameworks */,
+ ED34C50462BB90FB714F79E5 /* Foundation.framework in Frameworks */,
+ BDC8D762BF6F9489AC75EBDE /* Ice.framework in Frameworks */,
+ 9925212E2718A527FEFA03E4 /* PromiseKit.framework in Frameworks */,
+ 74476E76703C5CDED20055B1 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- C03E5B555410F04DACDD6E53 /* Frameworks */ = {
+ AC4D88CFA9B00AD0F230FF22 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 2E441740374CE7237E83527D /* Cocoa.framework in Frameworks */,
- 708549C06C95B3C2FC52FB69 /* Ice.framework in Frameworks */,
- FD59DD75FD08BF8EA5C8C780 /* PromiseKit.framework in Frameworks */,
- 12435442CEBD35B28DCFBD47 /* TestCommon.framework in Frameworks */,
+ 1DA01EC5911A79F903280FF2 /* Foundation.framework in Frameworks */,
+ 28F75FB1B5CBCDC0B244A7B0 /* Ice.framework in Frameworks */,
+ C0BA2FF6FEDF850282C5C0E5 /* PromiseKit.framework in Frameworks */,
+ A0A7D04435C10AA7AD071DDF /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- C1E322587CA8BC087E231171 /* Frameworks */ = {
+ B16D8CC51812B2BC7E5ED912 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 3BD642B6B465FD1671970AF7 /* Foundation.framework in Frameworks */,
- 96D56ACDC818355095D76231 /* Ice.framework in Frameworks */,
- 14801415796FAA599198125E /* PromiseKit.framework in Frameworks */,
- C14F685E6EEF121E5BECE49E /* TestCommon.framework in Frameworks */,
+ 65A6E835B9930E3C0920613F /* Ice.framework in Frameworks */,
+ 67D687B2EB71D3D6D4D0C892 /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- C3943259F07F580EC441B4AB /* Frameworks */ = {
+ B4028F19E8B2E1D92D1EF04A /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- E728CE6C9C877D1DF4C07666 /* Cocoa.framework in Frameworks */,
- 4E1EFECD69A1DFCAF8DC8219 /* Ice.framework in Frameworks */,
- 414E84C8DBFD93AFDF7747FA /* PromiseKit.framework in Frameworks */,
+ D34BDACB8679B43EBDBF0F33 /* IceImpl.framework in Frameworks */,
+ 35F5DFC609D8F021131C9D1C /* PromiseKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- C8B254C5FEE6D9DA0F7AD5B7 /* Frameworks */ = {
+ B461FF78C2FFEC6E514D9DD2 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 0F5B3EDAF350CC583070B5DD /* Cocoa.framework in Frameworks */,
- A88B99A39F0E40347696E100 /* Ice.framework in Frameworks */,
- 878C8D4E684309EB5ED408B3 /* PromiseKit.framework in Frameworks */,
- C5599915BE1DCDB9771C57AA /* TestCommon.framework in Frameworks */,
+ 43E0B6DF0FFC7A967A9F12C5 /* Cocoa.framework in Frameworks */,
+ 05A4823321FBA1D511FB09EA /* Ice.framework in Frameworks */,
+ 15041A9E40C6AB55A08E8D1C /* PromiseKit.framework in Frameworks */,
+ 2A2F8E0F73967E30DCAB791A /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- C9A558FE9C338BDC1C6E8970 /* Frameworks */ = {
+ BD17E497021CAF9379DA3497 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- DCEAC609DA6E9BA94C837D83 /* Foundation.framework in Frameworks */,
- C9378A3351EB232BD9140F6E /* Ice.framework in Frameworks */,
- FA16773DA0A75435134AFB8F /* PromiseKit.framework in Frameworks */,
- CDB7451B49093C312A625944 /* TestCommon.framework in Frameworks */,
+ 16E7650E053F7791A4BB8641 /* Cocoa.framework in Frameworks */,
+ A87F2AC93B3EBB7EE2644275 /* Ice.framework in Frameworks */,
+ 700666A4FB5F16B1DCDF1B93 /* PromiseKit.framework in Frameworks */,
+ 37D2B1F4D31695EB367F3432 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- CC0DDC6FC08D38DE6B1A4C92 /* Frameworks */ = {
+ BD537A4DF5864304276A8180 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 0B0031E7709A813B802724B6 /* Foundation.framework in Frameworks */,
- ED5AA4EFCA3F7F514F68AEA7 /* Ice.framework in Frameworks */,
- 7EEBA3FB68E32D80041A0693 /* PromiseKit.framework in Frameworks */,
- E1CCB989B05D02CD6B9A0D32 /* TestCommon.framework in Frameworks */,
+ 04FF1FF5A6321308BD315C12 /* Foundation.framework in Frameworks */,
+ 018CDD710CD4A5566FF19A26 /* Ice.framework in Frameworks */,
+ C68572446FC890B358AB060F /* PromiseKit.framework in Frameworks */,
+ DE2C04179FE9D4D736CDBAFA /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- D455A4A7CD146C84FDD4F2DB /* Frameworks */ = {
+ BEB35E5803FBC21F68F06A80 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 0E33574D322A2DD90AFC9C01 /* Cocoa.framework in Frameworks */,
- D49C8D0C4A05C20B9D265992 /* Ice.framework in Frameworks */,
- F5771C9029E815EC43E8524B /* PromiseKit.framework in Frameworks */,
- 06B9D6BD93EB834C100B6F94 /* TestCommon.framework in Frameworks */,
+ 090D955B55DFED05C191C5D4 /* Foundation.framework in Frameworks */,
+ 4599DA71FBE5C371E61A4094 /* Ice.framework in Frameworks */,
+ DB766D0F59EB66E994022421 /* PromiseKit.framework in Frameworks */,
+ D4F9CAFCD350711582045686 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- D4BC4189C05FC602E7F7AD36 /* Frameworks */ = {
+ C6E62CE14A9559FE5DA373A1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- E80C524219CFCB15780B35B5 /* Foundation.framework in Frameworks */,
- 5BF2848D8E3CD61302AA3A05 /* Ice.framework in Frameworks */,
- CC58B0506AE61F446A06D96D /* PromiseKit.framework in Frameworks */,
- 2863D226E2BDC6F914597714 /* TestCommon.framework in Frameworks */,
+ 5BF673A0994FD8F996065846 /* Cocoa.framework in Frameworks */,
+ 9E00491F273FBEF44D9470C5 /* Ice.framework in Frameworks */,
+ 0BEDBEA41B627C297B9ED5CC /* PromiseKit.framework in Frameworks */,
+ 495CAED8C30357999991032C /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- DD10118ED40B2A6866E70B07 /* Frameworks */ = {
+ C84E76F4608DCBB4DB309614 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- DCD9C38A137F95FB988E8465 /* Foundation.framework in Frameworks */,
- 4763637FC2C4E330C4FE7254 /* Ice.framework in Frameworks */,
- D8837EBDB16F98B9F32E85B3 /* PromiseKit.framework in Frameworks */,
- 3028420543A662AF64CB26DA /* TestCommon.framework in Frameworks */,
+ FDC2110F641306112D62307A /* Cocoa.framework in Frameworks */,
+ 8EDEF6EE2F771B71A191A6EE /* Ice.framework in Frameworks */,
+ AF91E507AA7E0DCAFA5C9C4E /* PromiseKit.framework in Frameworks */,
+ 6CE82C864C58B277EE398920 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- DD2BFBC845F3C0CFDFAFC7CD /* Frameworks */ = {
+ C9A12D93A3F27254167BA1DF /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
+ DBB885457BA186FBF57E7E29 /* Foundation.framework in Frameworks */,
+ C0539C5B9559338BB36F7019 /* Ice.framework in Frameworks */,
+ 8E2985EB39F5B00B3AEA3962 /* PromiseKit.framework in Frameworks */,
+ 8CAB0B821764CE7815D3B5D7 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- DE5E0A478A24916C487BDCDB /* Frameworks */ = {
+ CC9549D100F438E9F6833260 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- B6B1C0C9682A7FF61A5C7C18 /* Cocoa.framework in Frameworks */,
- BB11FB8D047EF0BE3184B256 /* Ice.framework in Frameworks */,
- EF0BC26800F57E09D0FD1D55 /* PromiseKit.framework in Frameworks */,
- B68C76FBA77E64F94CCE9CD6 /* TestCommon.framework in Frameworks */,
+ 153D840CA4E4B754565DB4A2 /* Foundation.framework in Frameworks */,
+ FA8AEF7BFED1B077EEFEAFCE /* Ice.framework in Frameworks */,
+ C788F60E7CED02557FE83B55 /* PromiseKit.framework in Frameworks */,
+ FBC3A27E2D4E4D1C8C60B80E /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- DF8E0723059969B3E123DEF9 /* Frameworks */ = {
+ CE1B49DBE14C3D6E3401CD73 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 0C0AC23B036867DD0D098E4A /* Cocoa.framework in Frameworks */,
- 54CBD95D8384BAE3F13105D9 /* Ice.framework in Frameworks */,
- 798F29F7A3945A44937BB774 /* PromiseKit.framework in Frameworks */,
- 0C631055A72AE4ED31C6FD58 /* TestCommon.framework in Frameworks */,
+ 89A368D0D3AE4B3DBCD9D643 /* Foundation.framework in Frameworks */,
+ C0BBE732EBC5A0794747B1D0 /* Ice.framework in Frameworks */,
+ B2B57F9EC1E0D51BA347AD9D /* PromiseKit.framework in Frameworks */,
+ 9FAF15D9B3BAF0A93C4AF2B0 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- E1CBB96D2F56264B089F5EB8 /* Frameworks */ = {
+ D01788B510E86FD0975842C1 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
+ 64B631926629B674318368B1 /* Foundation.framework in Frameworks */,
+ 5862B5B7E4D337DC6A544F18 /* Ice.framework in Frameworks */,
+ 182BF4C6F24B4696614279FA /* PromiseKit.framework in Frameworks */,
+ BB2CE92F9EBE6D83112DF5C5 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- E309796CE6D91E32ED411D15 /* Frameworks */ = {
+ D43B4A3B0333AD08BF4C63CB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- CB9A11AC455FAAA28FB65E56 /* Cocoa.framework in Frameworks */,
- 9CBC6D6C903233613DA50B09 /* Ice.framework in Frameworks */,
- E7684623B8A4A3262A0DB187 /* PromiseKit.framework in Frameworks */,
- BB29A83C3D4C6018BF26D11F /* TestCommon.framework in Frameworks */,
+ 86E4953378C65D9DDB2BCB69 /* Cocoa.framework in Frameworks */,
+ D397CEB669F3EB2C78FD6531 /* Glacier2.framework in Frameworks */,
+ 71C0801013A862CB1B1BD943 /* Ice.framework in Frameworks */,
+ CB5E84F1BD520984390D9D3C /* IceGrid.framework in Frameworks */,
+ D3E570CBDFEDA4049A029D43 /* IceStorm.framework in Frameworks */,
+ F4A679646B9D8E47A78655FF /* PromiseKit.framework in Frameworks */,
+ 57842A5AAF96A608062F5400 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- E3B60B3604708D33DC4368DF /* Frameworks */ = {
+ DAD950AAE934147197AB7FA7 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 60692780C2E5EA0C1ED8269A /* Foundation.framework in Frameworks */,
- 17DF0C396C8DF6F02AD54111 /* Ice.framework in Frameworks */,
- 1707D4EB5764FDA7C886DF6F /* PromiseKit.framework in Frameworks */,
- 8D741451F644DD691B56B4A5 /* TestCommon.framework in Frameworks */,
+ 5839B84DFB1F87901D5A9239 /* Cocoa.framework in Frameworks */,
+ 6538D30D407392DB771E173C /* Ice.framework in Frameworks */,
+ 1571A9FE6AF4303F9A503CFC /* PromiseKit.framework in Frameworks */,
+ 96775E6FF821E7A8AA3CDD98 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- E47FE863E677DB47128E37DE /* Frameworks */ = {
+ DDD1BD129433CA3F57CE2136 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 688832FE0323B8144A72135E /* Cocoa.framework in Frameworks */,
- FA9A5A5252F4E9187A3AAF52 /* Ice.framework in Frameworks */,
- 96BFAEED52F6401122AC35D0 /* PromiseKit.framework in Frameworks */,
- 53E33768C8680D7DF69F8819 /* TestCommon.framework in Frameworks */,
+ 6B2CA676803560CE6F6F2C31 /* Foundation.framework in Frameworks */,
+ ADB1066439F488D840F4F6C0 /* Ice.framework in Frameworks */,
+ 219801FC5352268044C2F57C /* PromiseKit.framework in Frameworks */,
+ F3665AF727ECB8BE74AA4EF0 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- E5FF65D45A572591D959E693 /* Frameworks */ = {
+ DE16CE9CB919F197F49DAA10 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- A5D91D7B065BF0E10CA9F7F7 /* Cocoa.framework in Frameworks */,
- D4B807E394AFE5AE9971B4AF /* Glacier2.framework in Frameworks */,
- 3BC7140AA45B1A6A6D822275 /* Ice.framework in Frameworks */,
- 9D0F2970BD8E59C14973448F /* IceGrid.framework in Frameworks */,
- A26875C1CED10366B2D594E0 /* IceImpl.framework in Frameworks */,
- 2FB00EFEC5EA20871CF18C1F /* IceStorm.framework in Frameworks */,
- F8960E18CB5FA62912FD578C /* PromiseKit.framework in Frameworks */,
+ 05C65ABE4A115D272808CAA5 /* Foundation.framework in Frameworks */,
+ 61300DE60A14AAC90C03D43D /* Ice.framework in Frameworks */,
+ E332C5CD55DA1AB2B129E634 /* PromiseKit.framework in Frameworks */,
+ F891382F899CD341509EF2F7 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- E8823EED7429679913A1C5DD /* Frameworks */ = {
+ E0A7992152D28A104BA72718 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- EBDCE24404FABAB49E635438 /* Foundation.framework in Frameworks */,
- 9E5C5F0CA691D5BE11A69922 /* Ice.framework in Frameworks */,
- 553C32F969587162BDC32E5E /* PromiseKit.framework in Frameworks */,
- C55A085D0980ECD5611647C1 /* TestCommon.framework in Frameworks */,
+ FA31B49A6063A7E1B097FD6D /* Cocoa.framework in Frameworks */,
+ 52C2E42EB8309F53C987036C /* Ice.framework in Frameworks */,
+ 3C65AC2E5895B8FD28D7C04C /* PromiseKit.framework in Frameworks */,
+ D5EF9601B2536733F1CE07A0 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- E8D783AD3D4B45A094E09C58 /* Frameworks */ = {
+ E87713C5E179F4F99FBAF45C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 098E370ACDC471B3DBA66DCE /* Foundation.framework in Frameworks */,
- 25391A02E66E78169EC08F03 /* Ice.framework in Frameworks */,
- ABED9D557D47ED7C23900F2C /* PromiseKit.framework in Frameworks */,
- 5F0371106AAD025E0F3D2900 /* TestCommon.framework in Frameworks */,
+ FFF2102062D5F0902D31B6FE /* Foundation.framework in Frameworks */,
+ 8764260649DDA5B9654A3A8A /* Ice.framework in Frameworks */,
+ 839B56DE7B4182BF0AD32EF1 /* PromiseKit.framework in Frameworks */,
+ B11BD0C3FCD29AED71C3E6F4 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- EDCE1184623255E1F8D659FC /* Frameworks */ = {
+ E92E0003EE476D2A98274A3B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 80F379217EBC666184C9E5F6 /* Foundation.framework in Frameworks */,
- 8BFECA761648A58F3B36383D /* Ice.framework in Frameworks */,
- 2342AD14850A4192FD3E0B82 /* PromiseKit.framework in Frameworks */,
- B13FF28463938343AF39E014 /* TestCommon.framework in Frameworks */,
+ 0AF410914B04253E3D20722C /* Cocoa.framework in Frameworks */,
+ 84A7D6632D970C65E0985C67 /* Ice.framework in Frameworks */,
+ 130E38AD5CF4B6833B611166 /* PromiseKit.framework in Frameworks */,
+ 0B74927469188701778DF5AC /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- EE5AB9DB4C9188020934AE9B /* Frameworks */ = {
+ ED403878A1719C7475CAC5B5 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- A8B4B250FDA8D21046296359 /* Foundation.framework in Frameworks */,
- 2706E135626B3780C6864FBC /* Ice.framework in Frameworks */,
- 63F4DB291163CDD74DE09011 /* PromiseKit.framework in Frameworks */,
- 4A55A7BD094FD0EDBD68999E /* TestCommon.framework in Frameworks */,
+ D8EDBA345070446BDF006F79 /* Cocoa.framework in Frameworks */,
+ 96FE40E2A4D00BEF539E978F /* Ice.framework in Frameworks */,
+ EA9A47ED525A59A1CDC73928 /* PromiseKit.framework in Frameworks */,
+ 1EEFA39AB2935D6AD6E01EC9 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- EFECB4D3E2AAA56FB79F0256 /* Frameworks */ = {
+ EDD741F2706E70D40E5D24CB /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 9F35258C7D128FDD98EEA83C /* Cocoa.framework in Frameworks */,
- FA63D8D05CA421EA32757676 /* Ice.framework in Frameworks */,
- 85AEB78708B4EB62281B5E37 /* PromiseKit.framework in Frameworks */,
- 0FA864CABBA0F608885180C6 /* TestCommon.framework in Frameworks */,
+ F0F5992FF6AC950FF9DFDBB5 /* Foundation.framework in Frameworks */,
+ 3ACE7EF2D0D5B4E6811D8771 /* Ice.framework in Frameworks */,
+ C3D6415DC50972DC4BC37943 /* PromiseKit.framework in Frameworks */,
+ 32D6877D513077A56B21B3A0 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- F08E2056D2E92657EEB70CCE /* Frameworks */ = {
+ EEC2A94E462C20A43B7033AC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- FC645126BA1C3F3487E8F786 /* Cocoa.framework in Frameworks */,
- F9A12BFF3205FC2F14C49721 /* Ice.framework in Frameworks */,
- B917948B9CBD1C423CB1A2CF /* PromiseKit.framework in Frameworks */,
- 5AE7C5E576F97FD114CDB43F /* TestCommon.framework in Frameworks */,
+ C0DA8A6FF97CF5B6196AB891 /* Foundation.framework in Frameworks */,
+ 154DB496C74C8290A831AC7B /* Ice.framework in Frameworks */,
+ CFD897ABC2582F43314A3CB7 /* PromiseKit.framework in Frameworks */,
+ 9445CD0CBA20C5C2BE8D0DF1 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- F1D6E0F9E4E6865293202BB3 /* Frameworks */ = {
+ F65ABCC24497E51F27A8116C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 888EDD756B5DAB3CA683CF22 /* Cocoa.framework in Frameworks */,
- 716C48A19582C6F8B96C1953 /* Ice.framework in Frameworks */,
- C39EC66B5DBACE09FD934D1C /* PromiseKit.framework in Frameworks */,
- A0886BB9C59C0E17E8322B1D /* TestCommon.framework in Frameworks */,
+ FB6A8E2B39B6FD615E1DA6A3 /* Cocoa.framework in Frameworks */,
+ A6FD1AA751AD4B1C01B5D868 /* Ice.framework in Frameworks */,
+ 1545DAF95DFBE161C3641B65 /* PromiseKit.framework in Frameworks */,
+ 5D38B133D4F970E0F15A6E3A /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- F2C8C170389FAE4B34C5FFE5 /* Frameworks */ = {
+ F79396AEF21D6382DA1A1604 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- D80F20E185000C3C99C5421B /* Foundation.framework in Frameworks */,
- 64918F42FB16C08CE64EA461 /* Ice.framework in Frameworks */,
- 0145884ED398E9345E7F38CB /* PromiseKit.framework in Frameworks */,
+ C784C3EEED3CF1DDE05223B9 /* Cocoa.framework in Frameworks */,
+ DCCA61C045AD02D3DB5A8243 /* Ice.framework in Frameworks */,
+ EAE7388F11D7E6CB2D7B6094 /* PromiseKit.framework in Frameworks */,
+ 40F29897E48D37A4F9897C08 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- FB0224E57D5D62E294203095 /* Frameworks */ = {
+ F7CBFE4C0F3C79B5E93A6B79 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- FB4E6925F3CD9E1A9B1C0680 /* Frameworks */ = {
+ FA36C903B8CC9C6380361F3E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- FB1511B573D7600A84F340B0 /* Cocoa.framework in Frameworks */,
- AB900A1E7F4480C5880CC00C /* Glacier2.framework in Frameworks */,
- 738E8F7FD7B0AEDA07304DFE /* Ice.framework in Frameworks */,
- B0B3B1502FF8C750F9BF2250 /* IceGrid.framework in Frameworks */,
- A0A18E53113890A2BD5A8DE6 /* IceStorm.framework in Frameworks */,
- 7E96B404E0B27963BC11540B /* PromiseKit.framework in Frameworks */,
- 48917B64B3C8663AB35F18C3 /* TestCommon.framework in Frameworks */,
+ 7C0542C1AEBBA9BD5BB2BF25 /* Foundation.framework in Frameworks */,
+ 299EF39BA22CB02D074CA905 /* Ice.framework in Frameworks */,
+ 009AE9A237C22337203E02D5 /* PromiseKit.framework in Frameworks */,
+ 42D129A3FACE2EFE7A95B1D8 /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- FC88E78E634F9B43EE483391 /* Frameworks */ = {
+ FF5C42DBC80AF8AC0483DE17 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 3C7A125B270792C48DDBAC1D /* Foundation.framework in Frameworks */,
- 32407C1FD2DF157154036006 /* Ice.framework in Frameworks */,
- 2D07227B495C60C9C12CF4B9 /* PromiseKit.framework in Frameworks */,
- 1076C8E7CE0F4361D11A249C /* TestCommon.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
- 066DD28018D424C0552557E6 /* IceImpl */ = {
+ 008559C9AB2C8A36202EB284 /* hold */ = {
isa = PBXGroup;
children = (
- 60648E86C0107835E62067FD /* AdminFacetFactory.h */,
- 8B164AFAD89E661E862701E3 /* BlobjectFacade.h */,
- 5036FDEC396D3BE548AFD8BD /* BlobjectFacade.mm */,
- CF7CAC785DC6DD5CF3D1EBDF /* Communicator.h */,
- 4D476AE3362B76958AE23E2E /* Communicator.mm */,
- 633A5792AB562E47E7D9B487 /* Config.h */,
- 532CA154F23513782E12F0A9 /* Connection.h */,
- 76D2C9478917EE70EA6C1EC8 /* Connection.mm */,
- 07FB3A14A7C0F45E500CDD83 /* Convert.h */,
- 19751DD4AAFD07FFE294832E /* Convert.mm */,
- 731F2E91CB97626EE8C88C79 /* Endpoint.h */,
- C8694BDBD11F2B3C0C6735E3 /* Endpoint.mm */,
- 7E2A4E9B62EE2D64338BEB6E /* Exception.h */,
- 3AF3636501CCEBD661504929 /* Exception.mm */,
- 8232FBA739FC5D5AE2064B88 /* IceImpl.h */,
- 9FBE1ABE84062848AA5FCF44 /* IceUtil.h */,
- 91FCB36988ECF92BF0E1B88A /* IceUtil.mm */,
- A0662C2D0BCCED8D856B24A3 /* ImplicitContext.h */,
- 1659DF4E83656B630CFEB6BE /* ImplicitContext.mm */,
- B2375B428874B348D86BD212 /* LocalObject.h */,
- 5A5BCF475EA7FB8C43E528DB /* LocalObject.mm */,
- F0BBA7C1DD8C98341168BF4B /* Logger.h */,
- 25D63C9C027B6F0B799F1B46 /* Logger.mm */,
- 75667BF18FEF533899F00773 /* LoggerWrapperI.h */,
- F8C325488C328D211818F373 /* ObjectAdapter.h */,
- 084D0AE194DE5B466ECB36A8 /* ObjectAdapter.mm */,
- 407F44656B90271C8A2F226F /* ObjectPrx.h */,
- 163218AF8429A93CC6DB516A /* ObjectPrx.mm */,
- 12FA5204D52643D5E55E36CA /* OutputStream.h */,
- 77A945CF34D00CD45A128D1D /* Process.h */,
- B765395F779020FC5A5487F2 /* Process.mm */,
- AB0A0FB5971AA10641F5FFDF /* Properties.h */,
- 1750BB621C7A498239A5F893 /* Properties.mm */,
- B99D534A8CA5522365B9B4D7 /* PropertiesAdmin.h */,
- 3EEFF728E276BAA633A852DB /* PropertiesAdmin.mm */,
- FBF01BA38FA6128BB69D22F8 /* TraceUtil.h */,
- 09CD9498FF6E5A10C898C57D /* TraceUtil.mm */,
- 2B16B70F3C1E50EC4C26CF18 /* UnsupportedAdminFacet.h */,
- 0FCC4DC0402E212F3FA567F5 /* UnsupportedAdminFacet.mm */,
+ 89BA4D129F7AB13FE8AA4252 /* AllTests.swift */,
+ C4C12A6CF78CB8EAC28EABE4 /* Client.swift */,
+ 84F9C49554E032E9F24125C9 /* Server.swift */,
+ 6D2A24C74B1457BADF42EA04 /* Test.ice */,
+ A85BF585817ADA33A51374E3 /* TestI.swift */,
);
- name = IceImpl;
+ name = hold;
sourceTree = "<group>";
};
- 0D359FFD96337FF2CF35AE8C /* src */ = {
+ 02D4B54295E485A0E0E9ABAA /* TestCommon */ = {
isa = PBXGroup;
children = (
- 8A25BF15000B22E58C3381C3 /* Glacier2 */,
- 475D46136E8EA6977236B5B4 /* Ice */,
- 247715470C547A9D74752708 /* IceGrid */,
- 066DD28018D424C0552557E6 /* IceImpl */,
- AF0F3EC4160F722FE0709C8D /* IceStorm */,
+ 2916F51DB2AAC73749DCE7DC /* Info.plist */,
+ D8E92C696C1AABC3601AA74B /* TestCommon.swift */,
);
- name = src;
+ name = TestCommon;
sourceTree = "<group>";
};
- 0DBE369EEBE8FC8672B438B7 /* Slice */ = {
+ 0328EE3812E31EE9657B1D98 /* iOS */ = {
isa = PBXGroup;
children = (
- B42E480907F9234500CE4CF5 /* escape */,
+ A9EA41900D64E8658B705E3C /* AppDelegate.swift */,
+ 8B0133F3B6C49278880AF27C /* Assets.xcassets */,
+ 76E99A8FED64D17E565727B6 /* certs */,
+ 43D8936E6314196D19095048 /* Controller.ice */,
+ AE9AAB53263BDDA227A0202D /* ControllerI.swift */,
+ CB9DF2517C4D8910B9F04C02 /* LaunchScreen.storyboard */,
+ 9B8260A1145A7235704C5A06 /* Main.storyboard */,
+ 9807056F92FC0E811C314ED5 /* ViewController.swift */,
);
- name = Slice;
+ name = iOS;
sourceTree = "<group>";
};
- 0E03993523D2B5C180C8E354 /* properties */ = {
+ 034454D7A6B97D3C707B1D61 /* IceIAP */ = {
isa = PBXGroup;
children = (
- 6E239CF9DF24E5B58D95D4D1 /* Client.swift */,
+ A1D032AE98D0C4D070D681B1 /* Connector.mm */,
+ 72D09A968DF7AEF7873FABC0 /* EndpointI.mm */,
+ 9D71E1E8486CEBCF31435D3D /* Transceiver.mm */,
);
- name = properties;
+ name = IceIAP;
sourceTree = "<group>";
};
- 15E2C4279DB142DD1C23B4A1 /* servantLocator */ = {
+ 0B5BC2323212ED9A9E4868FB /* TestDriver */ = {
isa = PBXGroup;
children = (
- 476ABE3234D05812619CD33C /* AllTests.swift */,
- 925DB5248C14B77BC3D63815 /* Client.swift */,
- 5BAB9C69CF7FC392AAF1BFC4 /* Collocated.swift */,
- 1163261D5D5B1E89E8CD4F19 /* ServantLocatorI.swift */,
- 39DB31123BB2D5E35D2235EF /* Server.swift */,
- A69BC365372EB27631A886EC /* ServerAMD.swift */,
- 9B074A6A8908048DAE95EBCA /* Test.ice */,
- 41FE28E72BC1880B2DE5D510 /* TestAMD.ice */,
- 2BEC7B17F4C2963599CD0381 /* TestAMDI.swift */,
- 28567530F9E0A117AC6E5ADD /* TestI.swift */,
+ 0328EE3812E31EE9657B1D98 /* iOS */,
+ 4B8D6087EF0CB4EBFFA9D9FB /* macOS */,
);
- name = servantLocator;
+ name = TestDriver;
sourceTree = "<group>";
};
- 1E619106E83EA2B641B18D07 /* macOS */ = {
+ 0BC4B78C7A96B0EA4E0A6D3E /* enums */ = {
isa = PBXGroup;
children = (
- F4BFAEBBA896E626D1112663 /* main.swift */,
+ 799C490953D145B679F8D1A3 /* AllTests.swift */,
+ A332D585A37435EE78C912CF /* Client.swift */,
+ 83119929B0E9A068FECE736B /* Server.swift */,
+ 73EC79539B77749D0B385E57 /* Test.ice */,
+ 1CBD0880B67614DBCBD9E84D /* TestI.swift */,
);
- name = macOS;
+ name = enums;
sourceTree = "<group>";
};
- 23D757676BC4A355F233C048 /* Ice */ = {
+ 13D4C0187A8F07A42DFABC64 /* IceImpl */ = {
isa = PBXGroup;
children = (
- BC66580592247EE25E707972 /* ios */,
- 7124A0C4FF563256CECFFD11 /* Acceptor.cpp */,
- BD62BD11BBAE8426F02120BF /* ACM.cpp */,
- 676957D87A84B482C7552C1D /* ArgVector.cpp */,
- 4B6450679899F9D620764A08 /* Base64.cpp */,
- 6C0BE5A338AFE985D3EC4A10 /* BatchRequestQueue.cpp */,
- 4BCC9499232F3ED821955D3F /* Buffer.cpp */,
- C5B9FC9AA6346E56C974A0E0 /* CollocatedRequestHandler.cpp */,
- 9B1276DE9905199A2B5214F9 /* CommunicatorI.cpp */,
- 91DCFB9FB66B3F09AD4D70C9 /* Cond.cpp */,
- 6474371F9D4B7F7290A2EFB9 /* ConnectionFactory.cpp */,
- 535F8D91A4A19A5BFDA99EE5 /* ConnectionI.cpp */,
- 97F3894AB33DBF74E3804C48 /* ConnectionRequestHandler.cpp */,
- B041A98294800176C75C97EF /* Connector.cpp */,
- 09F67F6A3286C045388B9AB4 /* ConnectRequestHandler.cpp */,
- 15CF7EB078034B9AD74C30C0 /* CountDownLatch.cpp */,
- EEC4D11C0BB2ADEB582AFD3E /* DefaultsAndOverrides.cpp */,
- F95AC7A675CA60BB2ABF448A /* DispatchInterceptor.cpp */,
- 66ADCED501F072AE2B41A2C1 /* DynamicLibrary.cpp */,
- 2E99C484A830F853F840DA09 /* EndpointFactory.cpp */,
- 9EBAD84EC2FEA68FA8C18372 /* EndpointFactoryManager.cpp */,
- 070D5938E6B942DCE7794856 /* EndpointI.cpp */,
- 2996F3F1F4CBAF613DAE139D /* EventHandler.cpp */,
- 9CDFC4CF614616375CE09C76 /* Exception.cpp */,
- FF8E0A097882F883C3663637 /* FactoryTable.cpp */,
- 0364945BE497EB41753D11E1 /* FactoryTableInit.cpp */,
- B945AE7D2A5E38D6EF889CCE /* HttpParser.cpp */,
- B11CCA200A0ADBCA9854BA2E /* IconvStringConverter.cpp */,
- DD4858602F52D9C980D4A055 /* ImplicitContextI.cpp */,
- 8FA7AC1292C0E991DF4BA8E4 /* Incoming.cpp */,
- E11927D502E93CF55F23E448 /* IncomingAsync.cpp */,
- AC2DD492B9AE60EC7E84873B /* Initialize.cpp */,
- AE7536F921A465ACD1F7FA00 /* InputStream.cpp */,
- B5F9951678F470F12C213085 /* Instance.cpp */,
- 01DB1D21D9147DC0B4A2C592 /* InstrumentationI.cpp */,
- 147D40176DDCC60B8AE883A8 /* IPEndpointI.cpp */,
- 5341AD79B0696BDEF6F41101 /* LocalObject.cpp */,
- 30EF39EE8BEC9D00D24DC208 /* LocatorInfo.cpp */,
- F94D68149D88079DA1A291D5 /* LoggerAdminI.cpp */,
- B331105BF98C61980A1A1C39 /* LoggerI.cpp */,
- 8F990810B7617DA7106535C4 /* LoggerUtil.cpp */,
- BE04BC59D9267C53B2E2E426 /* MetricsAdminI.cpp */,
- 60FC1B97E8333ECD56618EFD /* MetricsObserverI.cpp */,
- 9DBD11846C6A0B8CB5794F9F /* Network.cpp */,
- 88ABB01C5CFBF55B5120743F /* NetworkProxy.cpp */,
- 30085C9646A152B2D6C70FB0 /* Object.cpp */,
- 12ED27C9D65B6E6DE0A5F8E3 /* ObjectAdapterFactory.cpp */,
- 6FBA8D76866321E998D2E5C6 /* ObjectAdapterI.cpp */,
- D6C044ED53A7D3CF886C85EB /* ObserverHelper.cpp */,
- 4A80AB46F43494F47663DC7C /* OpaqueEndpointI.cpp */,
- 863C25418E5FE7D05B9868CC /* OSLogLoggerI.cpp */,
- 4910D3CB2B4F6A0F1A13C73E /* OutgoingAsync.cpp */,
- AC8267215D8D6D9C5B4EF6CD /* OutputStream.cpp */,
- F739FD7322F6B60CFCF49B80 /* PluginManagerI.cpp */,
- 8257492D8853CD3D7B39FDB7 /* PropertiesAdminI.cpp */,
- 9B9E64C4322C1EE4927BC863 /* PropertiesI.cpp */,
- 96C14F92E4BD1A78F04D6B73 /* PropertyNames.cpp */,
- 874074FB03119B3A6BA9EFC1 /* Protocol.cpp */,
- FAE305163CFD14F81D434502 /* ProtocolInstance.cpp */,
- 0E4EC875DEC29DB7D493FABC /* ProtocolPluginFacade.cpp */,
- 0308C33B62C738A6BCCA5F8C /* Proxy.cpp */,
- C235CDCE4E60CE8402C56D30 /* ProxyFactory.cpp */,
- D2196E4A5420376F7F320400 /* Reference.cpp */,
- D33BA2168DC65471FF754DE9 /* ReferenceFactory.cpp */,
- DB53D7F75100F4CF52B8DC8F /* RegisterPluginsInit.cpp */,
- 5BB6BC7C53DEDF3D635D3357 /* RequestHandler.cpp */,
- 2D9D35236C0D3E070BF1A2FC /* RequestHandlerFactory.cpp */,
- 95D89375D28F76DDF26C3903 /* RetryQueue.cpp */,
- 63786455698CC010D5E23870 /* RouterInfo.cpp */,
- FC9FE3389D154DFEBBC55491 /* Selector.cpp */,
- 688BF037AD7D7B8AEEC5D1BF /* ServantManager.cpp */,
- 4D61FF69C82E45F50A9E57E6 /* Service.cpp */,
- 4A27B0F345D951957A21F772 /* SHA1.cpp */,
- FBAFB9130DA7AD0BDA89BEAF /* SliceChecksums.cpp */,
- 2BEEA6951A353148A9BEC38D /* SlicedData.cpp */,
- A1974A9DFCD5CE75829EEDDB /* StreamSocket.cpp */,
- E24BC43BD797306F62D06810 /* StringConverterPlugin.cpp */,
- DDBEBA80F9238CA9CBFB341A /* SysLoggerI.cpp */,
- 879A4949935A71A19295C582 /* SystemdJournalI.cpp */,
- 279D2A3D441126FBD205D935 /* TcpAcceptor.cpp */,
- 33B27BAFFD57E6205ECED1F3 /* TcpConnector.cpp */,
- C66D3DAD3E482FD08A3DA82F /* TcpEndpointI.cpp */,
- C5B9882C199FA2525680ED41 /* TcpTransceiver.cpp */,
- 9CC6A0D58EF34E75E8886700 /* Thread.cpp */,
- 82517F3B6E20C15F5332436C /* ThreadPool.cpp */,
- B57BB1B00847273287A8173F /* Timer.cpp */,
- 2E3061B136FE7ADBB8DB9114 /* TraceLevels.cpp */,
- 0471648078F278BE3C56ED32 /* TraceUtil.cpp */,
- 7AED884E1A03A999C4E251E5 /* Transceiver.cpp */,
- 7851F7E848C61460B1283AFA /* UdpConnector.cpp */,
- 6D1875F559842A9D7E7AAFEA /* UdpEndpointI.cpp */,
- EECE59D208760AAEF8F05D43 /* UdpTransceiver.cpp */,
- 30651437FA2FDCBF346659C0 /* Value.cpp */,
- EFCF742514A3DC3E7B51E0D7 /* ValueFactoryManagerI.cpp */,
- AB7DA486D9F91B070B84F439 /* WSAcceptor.cpp */,
- 97BB4C9ABE94E3DC15D15C74 /* WSConnector.cpp */,
- 9AC337C228145DA2BDA97C70 /* WSEndpoint.cpp */,
- 9433B4B70F6482C4CE2C7037 /* WSTransceiver.cpp */,
+ 6C1B8ACEA453172F319A1B60 /* AdminFacetFactory.h */,
+ CE7C6CFA731F5E0FC26F9554 /* BlobjectFacade.h */,
+ F144B676048547B79F621AA4 /* BlobjectFacade.mm */,
+ DAB411415D75A65DA58B5F5B /* Communicator.h */,
+ 08464B1715A37D17F3E14399 /* Communicator.mm */,
+ 61CDFF3A184E66FFB28428C6 /* Config.h */,
+ 58AF2DBEA9E524721EF29279 /* Connection.h */,
+ 003B81E404BD951D35B23A9C /* Connection.mm */,
+ EA3F85D992A55E3BE71BE236 /* Convert.h */,
+ 56535F2466DBDF3413598AB4 /* Convert.mm */,
+ 83E41012D98C4F274B58EFAD /* Endpoint.h */,
+ 7EEA4E6130FAF1695D9ACD8B /* Endpoint.mm */,
+ FAA7FC13CEE1D2C6BCB90644 /* Exception.h */,
+ 8E01786DB7612C60BF8A1AD6 /* Exception.mm */,
+ 86BA8129D624FC5C654DA4FA /* IceImpl.h */,
+ D4F0C5755496073BF23DAD0A /* IceUtil.h */,
+ D9924E8D2910F8AADCD205F8 /* IceUtil.mm */,
+ F000FB0F52EFA6E32C1D61C4 /* ImplicitContext.h */,
+ 89F506EE1C27CE1405020A38 /* ImplicitContext.mm */,
+ B8C5181F4E251C3BF78F8F2A /* LocalObject.h */,
+ D00B9F3E0CA080CD2B2C61F3 /* LocalObject.mm */,
+ 16A8E8F8E99D146123EF3409 /* Logger.h */,
+ A01748959A0B2A24EE79D617 /* Logger.mm */,
+ 4B2B163B4B0AA8D481BC0CE1 /* LoggerWrapperI.h */,
+ 29B4460C0949A3B6196C42F8 /* ObjectAdapter.h */,
+ 3D1C638EB8448A2F8DCFF844 /* ObjectAdapter.mm */,
+ F61859F73072318F796F34F0 /* ObjectPrx.h */,
+ 8511F4E2012CDD7C9629C27C /* ObjectPrx.mm */,
+ 7A47F58C4E3CE1C13C54A09A /* OutputStream.h */,
+ 53DCE66195BB4195791CB732 /* Process.h */,
+ FC5D768A10737D6ECBD5090F /* Process.mm */,
+ F32F3ABB20FCC8FC8A0A0ACB /* Properties.h */,
+ 444C81F85FACB1A5BC7AE4E1 /* Properties.mm */,
+ 5F32CE35510450059D4F5F18 /* PropertiesAdmin.h */,
+ CA2C76263E9404BC0A0DBE5A /* PropertiesAdmin.mm */,
+ B904574D2E5F73E6D831FEB7 /* TraceUtil.h */,
+ A08D190BD584FF5E91403A9E /* TraceUtil.mm */,
+ 182A1AA2D3A49D6E5464E1AF /* UnsupportedAdminFacet.h */,
+ B7AEA0767A33654F90E35222 /* UnsupportedAdminFacet.mm */,
);
- name = Ice;
+ name = IceImpl;
sourceTree = "<group>";
};
- 247715470C547A9D74752708 /* IceGrid */ = {
+ 144AAEEFB5DE28AE2AB79445 /* Glacier2 */ = {
isa = PBXGroup;
children = (
- CFC0001929385A130EAFD24B /* IceGridSwift.h */,
- 4D7B36C5EA0278C6FF3B6C2F /* Info.plist */,
+ 721603641E4D852A125CCB38 /* Glacier2Swift.h */,
+ 1C5538E9A7CF1DD7E34FB55F /* Info.plist */,
);
- name = IceGrid;
+ name = Glacier2;
sourceTree = "<group>";
};
- 24CA76A048648D30FFCDF82A /* IceIAP */ = {
+ 15B876DEF053F11BB86791BD /* admin */ = {
isa = PBXGroup;
children = (
- C69408EA18903F90CF12E137 /* Connector.mm */,
- 98437340B4E11617BBA3F01A /* EndpointI.mm */,
- 85D3CC9185EE59A9C1AE8A07 /* Transceiver.mm */,
+ 49BFD82EDC5961557B3C081D /* AllTests.swift */,
+ 668F5888B8D0CB186D6053F1 /* Client.swift */,
+ 424E07F72C36775987E78D9B /* Server.swift */,
+ B1A39C9E9F62098E608BDD49 /* Test.ice */,
+ 9B70DE2EC3E4C2C5CA746C57 /* TestI.swift */,
);
- name = IceIAP;
+ name = admin;
sourceTree = "<group>";
};
- 253036D3AEF10225AED5E447 /* acm */ = {
+ 17C5E0DD990E6176913BF6E3 /* IceStorm */ = {
isa = PBXGroup;
children = (
- 311D4B7DADBD8F5B6AAFCCD3 /* AllTests.swift */,
- A59F882486D21E98C368D3C8 /* Client.swift */,
- 134A1DF02D07DE1B48BDD9E5 /* Server.swift */,
- 97BEA79F0125D279F22C3183 /* Test.ice */,
- 2E087939A5341BEBE076ABE3 /* TestI.swift */,
+ 91CCAA379CAE47D548C1D784 /* IceStorm.ice */,
+ E64AE4103060ED8DE8C63A5F /* Metrics.ice */,
);
- name = acm;
+ name = IceStorm;
sourceTree = "<group>";
};
- 281FAAF0D422CDAFCD3D6F5D /* Glacier2 */ = {
+ 1CA40ED12362133EACEFD3DC /* escape */ = {
isa = PBXGroup;
children = (
- 63A75A7C192FABC8F78F064A /* Metrics.ice */,
- 0557DD89BF16A3F68732BD7E /* PermissionsVerifier.ice */,
- FD2995A6E792AC39FFA9D59A /* PermissionsVerifierF.ice */,
- 4B3C0B4156CE5D3101AA5A41 /* Router.ice */,
- 70BF5BD1E0899C46253D13EE /* RouterF.ice */,
- 1EC3D745718F997AFE79335D /* Session.ice */,
- 0597A64D56F0F7AAAB7EE396 /* SSLInfo.ice */,
+ 5363DD742BD3E50E372FAB5C /* Clash.ice */,
+ 8E64564556238B25F5AE6D4E /* Client.swift */,
+ 1E6A4C5DFD494697F0FF5C2A /* Key.ice */,
);
- name = Glacier2;
+ name = escape;
sourceTree = "<group>";
};
- 287F04E189F628785EE60335 /* stream */ = {
+ 1E5D2303368655864F5B8F46 /* optional */ = {
isa = PBXGroup;
children = (
- FB6228EBC14451C32B3FABAF /* Client.swift */,
- EE522B8340CE3A4E595DDA94 /* Test.ice */,
+ F9764228A3316695D773B795 /* AllTests.swift */,
+ 330EC83D3738ECC6A7536C9D /* Client.swift */,
+ 3A94409373930E6F6393C67C /* Server.swift */,
+ 8AF8C993815CB0043CA4E4B4 /* ServerAMD.swift */,
+ B9D6E5C6823D2641DF157CE9 /* Test.ice */,
+ 4F0EB416BFF519262CA6FC91 /* TestAMD.ice */,
+ 9250382693A50F0E823D433C /* TestAMDI.swift */,
+ 29E2F3A5B3FF4733FE29B372 /* TestI.swift */,
);
- name = stream;
+ name = optional;
sourceTree = "<group>";
};
- 2C344713C506C1E8975EF578 /* TestCommon */ = {
+ 21D3EBE19C71AC402BEC783B /* IceLocatorDiscovery */ = {
isa = PBXGroup;
children = (
- 9FB2E368B28852F98DEC6680 /* Info.plist */,
- CC75B16FF436AC4A5D2A1B23 /* TestCommon.swift */,
+ 4CD35F4B4C04CDC985B84571 /* PluginI.cpp */,
);
- name = TestCommon;
+ name = IceLocatorDiscovery;
sourceTree = "<group>";
};
- 2C71645C8E19C6DD5C2D85F6 /* hold */ = {
+ 23C844C6CEF90E294A100A68 /* IceGrid */ = {
isa = PBXGroup;
children = (
- E1EB1A3E272FDA0AEB67EF78 /* AllTests.swift */,
- 4F8F6196067871FC2BD34A24 /* Client.swift */,
- F905AD0AE255FB45823B63F4 /* Server.swift */,
- 76699AC2F244DA402D7D78F9 /* Test.ice */,
- 9C7EED74A36BBFBB80D7586D /* TestI.swift */,
+ 14BD1B55FC2A006813A829C3 /* IceGridSwift.h */,
+ 64D03790BD64517908069A89 /* Info.plist */,
);
- name = hold;
+ name = IceGrid;
sourceTree = "<group>";
};
- 2D217F7813C9AEA19462AB38 /* adapterDeactivation */ = {
+ 2B4BEF3671913D48F66654A3 /* test */ = {
isa = PBXGroup;
children = (
- 422312FEC2781FF24FC912DC /* AllTests.swift */,
- F825FBF238DF5D758C3B255E /* Client.swift */,
- 34401CC6421E5D0E724E88FE /* Collocated.swift */,
- E6B6F7D8170ED48B12F0B6F7 /* Server.swift */,
- 9684550CFCD0DCA46C26AAD0 /* Test.ice */,
- 1DDC3DDCA9986ADA036C197B /* TestI.swift */,
+ 58A2AEAE9E7449342911EC37 /* Ice */,
+ 9E2325236C370882502FFA88 /* IceSSL */,
+ 3F00CCC102D0603B85FA8641 /* Slice */,
+ 02D4B54295E485A0E0E9ABAA /* TestCommon */,
+ 0B5BC2323212ED9A9E4868FB /* TestDriver */,
);
- name = adapterDeactivation;
+ name = test;
sourceTree = "<group>";
};
- 2F48CCEB8DCFB46E5D2E8B64 /* cpp */ = {
+ 2D670BEA2C0EC07B57B4BDD8 /* ami */ = {
isa = PBXGroup;
children = (
- 6C4E5E800D43965CB8CA3087 /* src */,
+ 4DE17DA74939585D5DAC3CD1 /* AllTests.swift */,
+ F11875AE312A1FB4AF6FBB97 /* Client.swift */,
+ 40E9F5F5F2A1FDD9AD507CFE /* Collocated.swift */,
+ 17212BB3CB370C143D6A746A /* Server.swift */,
+ 0313E5DCB24F56323CECF640 /* Test.ice */,
+ 07E8ADEA8F96C4739BC20F57 /* TestI.swift */,
);
- name = cpp;
+ name = ami;
sourceTree = "<group>";
};
- 30242BD6F4B2F1EE91F6D3C3 /* facets */ = {
+ 2E6B5117C93C978025DEA184 /* Glacier2 */ = {
isa = PBXGroup;
children = (
- D3AF6048FF1364F79B74A51B /* AllTests.swift */,
- 62C9721EA6BFBD908FF0AACF /* Client.swift */,
- 0B74FA74740DAA7C3B4E0242 /* Collocated.swift */,
- 08EB484467B2D88A84FDF24C /* Server.swift */,
- AFCD7006F87053DD280B355D /* Test.ice */,
- 905AE808B7C689F60497E5CB /* TestI.swift */,
+ 876C5922AE9C9B31BC47A8D4 /* Metrics.ice */,
+ E8C1AE8D395B3456440C1E9A /* PermissionsVerifier.ice */,
+ 3B4606981283ED921B421816 /* PermissionsVerifierF.ice */,
+ 708D4BA5BB5427A869888AEA /* Router.ice */,
+ 450AD776C8151E42914041A8 /* RouterF.ice */,
+ 0EE0541C8C209BEE2760A321 /* Session.ice */,
+ 5112EFD03DEEE228D3CDD2CF /* SSLInfo.ice */,
);
- name = facets;
+ name = Glacier2;
sourceTree = "<group>";
};
- 34EAF5A5C70EA4837FBFE364 /* udp */ = {
+ 30623316E8FE0CC4C8DB7B8B /* OS X */ = {
isa = PBXGroup;
children = (
- 8AC18A896A122DA629C069E6 /* AllTests.swift */,
- DFCBE8EAA93ED627F6C1336D /* Client.swift */,
- 7AAF4AECDF16E4E1A198E5F6 /* Server.swift */,
- E82B90F980D1160E663F4054 /* Test.ice */,
- 88A754C6553122C38633A5A1 /* TestI.swift */,
+ AC6F3EFDA8ACA3B1AF262A50 /* Cocoa.framework */,
+ 8EAB2E7B7020F04E57A35D84 /* PromiseKit.framework */,
+ 413017D5FD36BC0B6A5377B0 /* Security.framework */,
);
- name = udp;
+ name = "OS X";
sourceTree = "<group>";
};
- 398A6CFF06DE665D388D7413 /* TestDriver */ = {
+ 35F5415C2A33B0678D43C9B6 /* operations */ = {
isa = PBXGroup;
children = (
- F9A5D3862315DDFEB3962763 /* iOS */,
- 1E619106E83EA2B641B18D07 /* macOS */,
+ DE3C76073BBDB3D3E0B943F0 /* AllTests.swift */,
+ A8C3320857B5D24565F04EFE /* BatchOneways.swift */,
+ 95D36E1F1648209B868E09B7 /* BatchOnewaysAMI.swift */,
+ 10FBC76F9EB72AA7D657AD6A /* Client.swift */,
+ 004F49EECEC5EF0532144014 /* Collocated.swift */,
+ 3D340D331AF4440A1FD7BB72 /* Oneways.swift */,
+ 1607EA8204961B94B47DF689 /* OnewaysAMI.swift */,
+ 61265F18F9685E78D51636A4 /* Server.swift */,
+ EF98339FB04534928125DB76 /* ServerAMD.swift */,
+ A57B9BCC5EACD4DB42F66B0F /* Test.ice */,
+ C3591A40745461F368CBC77B /* TestAMD.ice */,
+ 3EDDB1270424DCAB7F691B6B /* TestAMDI.swift */,
+ BE14C224CBBDF1DC3C8DC502 /* TestI.swift */,
+ 4CB1B6AE8F6FB8CFC0AC003A /* Twoways.swift */,
+ 615F705ADD38DB36488696E0 /* TwowaysAMI.swift */,
);
- name = TestDriver;
+ name = operations;
sourceTree = "<group>";
};
- 3DB35B59FA6D46066FECFD47 /* objects */ = {
+ 3C48DD1667894F93D7EAD5B4 /* src */ = {
isa = PBXGroup;
children = (
- 2F19C4044C942EC16995BEEF /* AllTests.swift */,
- 32A77CBAF984A63EC964E91D /* Client.swift */,
- 15DB23B1A38B3EDC5027330E /* Collocated.swift */,
- 16AA78E32597072B631DE358 /* Forward.ice */,
- 848EB2CE9593C1D8F923FD8C /* Server.swift */,
- E029349141DF6DF8F2B6BA54 /* Test.ice */,
- 333B004D083BA02A84489B27 /* TestI.swift */,
+ 8B2E54A88034AA813BC77445 /* Ice */,
+ D55332ACB130A346CD00E019 /* IceDiscovery */,
+ 034454D7A6B97D3C707B1D61 /* IceIAP */,
+ 21D3EBE19C71AC402BEC783B /* IceLocatorDiscovery */,
+ 57FB05D4E8F17E259436378E /* IceSSL */,
+ 8494A332BAE8B0EB9A7E01F5 /* IceUtil */,
);
- name = objects;
+ name = src;
sourceTree = "<group>";
};
- 3DE6786C5B0FC27886A70C17 /* optional */ = {
+ 3EBBBDC564C075DD66B0B816 /* Products */ = {
isa = PBXGroup;
children = (
- 1FD091EA548CF51A8AB261E4 /* AllTests.swift */,
- 3704FDBEECAE57DB98E459C8 /* Client.swift */,
- 553A566BD014B379277E2FEE /* Server.swift */,
- 444E24597A92CC772C9E7CC1 /* ServerAMD.swift */,
- 744D55EEF1A3510BDDD8BD3A /* Test.ice */,
- ABB07381540E04817390A3ED /* TestAMD.ice */,
- 3D0142D4874A0F09238F6358 /* TestAMDI.swift */,
- 0470353BC071A5E153B343AB /* TestI.swift */,
+ 0C6CA87763EF92E236588FBA /* Glacier2.framework */,
+ B9BD5DA20CE10B5EEAFC1A37 /* Glacier2.framework */,
+ 6374A039ED84F684F9BA9C27 /* Ice.framework */,
+ 630B53C4B0DCBF443CE3A899 /* Ice.framework */,
+ 2C37F4117B16BB71AFE86813 /* IceAcm.bundle */,
+ 3B6F273274F0A33E74B63CA8 /* IceAcm.bundle */,
+ A2C780B2D6CA6CD0DCCED459 /* IceAdapterDeactivation.bundle */,
+ F7EC05463EED3AC758275FE5 /* IceAdapterDeactivation.bundle */,
+ 7BADC096D1677992528358C9 /* IceAdmin.bundle */,
+ F84CA9A304E3F6159E1CFC94 /* IceAdmin.bundle */,
+ D50984E810079607F9CBD3D6 /* IceAmi.bundle */,
+ A8317EBDEA737A29A26FBE54 /* IceAmi.bundle */,
+ 5942973BCDA04C01DF823F17 /* IceBinding.bundle */,
+ 351BCBF951501569DADF145C /* IceBinding.bundle */,
+ 68624E43D69AF264C6D22C54 /* IceDefaultServant.bundle */,
+ 31B36589E40A384AAC70F89D /* IceDefaultServant.bundle */,
+ 866FFC39BC5078EBDF04F85E /* IceDefaultValue.bundle */,
+ 8439526B8DE74644F28A6D70 /* IceDefaultValue.bundle */,
+ 6E1716C66456BCBBFBF62157 /* IceEnums.bundle */,
+ 0E3D40FBB00AD72FD390D1E4 /* IceEnums.bundle */,
+ 1B8CA636A2A4EB28960FDD61 /* IceExceptions.bundle */,
+ AC0CDB474BB450E68664654E /* IceExceptions.bundle */,
+ 4E959F0B362795EC27EE97FA /* IceExceptionsAMD.bundle */,
+ 15E1BA9F33DE8EF789B1E6AC /* IceExceptionsAMD.bundle */,
+ 4AD13CA61E0593B0D0D02A9F /* IceFacets.bundle */,
+ 84AC8D09459962A732B6CC66 /* IceFacets.bundle */,
+ B769550900F96420DBCFED72 /* IceGrid.framework */,
+ 1DEAE5A8F941AB2CCAA16FB6 /* IceGrid.framework */,
+ AB05AFC920CC27CFDC84109C /* IceHold.bundle */,
+ AC1D8A33F8AB3689E7733586 /* IceHold.bundle */,
+ A63DCDA9CA07C5D78EB18355 /* IceImpl.framework */,
+ A2EE54802BFD472CDFC02692 /* IceImpl.framework */,
+ 6058A9A6703F0612B4B79A97 /* IceInfo.bundle */,
+ EDB3662F7248B27CB1AD4BAC /* IceInfo.bundle */,
+ 775EBD369201C97189EB1022 /* IceInheritance.bundle */,
+ 775EFBE78694683F3173F765 /* IceInheritance.bundle */,
+ C7F15D84385C6FFC6EADD1FA /* IceInterceptor.bundle */,
+ 4F86EE1F0BABC73616D64E60 /* IceInterceptor.bundle */,
+ 51406D24D7B88671FC1959C1 /* IceInvoke.bundle */,
+ BB30FF55D1D682BEA2F84695 /* IceInvoke.bundle */,
+ 9481B651D132BA3CFD0AAFA9 /* IceLocation.bundle */,
+ A148A58FC6419CF431F133D9 /* IceLocation.bundle */,
+ 72F0133C3F5E2F48BC792374 /* IceObjects.bundle */,
+ 7481133E66BBCFB35C59DD6B /* IceObjects.bundle */,
+ 5101032594480253E29AC55D /* IceOperations.bundle */,
+ FC478C09D46B520AC09D1D24 /* IceOperations.bundle */,
+ 3213430A8FFA260ABBFFE6DF /* IceOperationsAMD.bundle */,
+ F75C2DE308BADB2A61399C3F /* IceOperationsAMD.bundle */,
+ 34C3773FF720DB41BE3543B0 /* IceOptional.bundle */,
+ DBB159780C224B99CDFB5E11 /* IceOptional.bundle */,
+ 19EC86E70EBD4A492213EA37 /* IceOptionalAMD.bundle */,
+ C6AE8BE95F80EBF3D2C290AE /* IceOptionalAMD.bundle */,
+ 65F5921131948B7942F63863 /* IceProperties.bundle */,
+ 4865B3158D38CF0F111335D1 /* IceProperties.bundle */,
+ 499879837AB808E65E267110 /* IceProxy.bundle */,
+ E5D4CA75EFA1350097AB7876 /* IceProxy.bundle */,
+ 53CFE6E9577551B9B5BE8F0B /* IceProxyAMD.bundle */,
+ 4EB4AAB6340039C6B77D0B38 /* IceProxyAMD.bundle */,
+ A64DC01AFE2CE7EB0471ECFC /* IceRetry.bundle */,
+ 565110536C762BBC6BC835F7 /* IceRetry.bundle */,
+ E19C150CCCC22B7DE0139429 /* IceScope.bundle */,
+ DF2792969E80FCBEE04BA8ED /* IceScope.bundle */,
+ 273C8A37832131D101BED487 /* IceServantLocator.bundle */,
+ AD3BF9C9F8D9D3658927A2D1 /* IceServantLocator.bundle */,
+ 39AE997BF225284894A3427E /* IceServantLocatorAMD.bundle */,
+ 2CFEA89611CEACA1F95612F1 /* IceServantLocatorAMD.bundle */,
+ DF6DB4595BEADE88D4B8FF06 /* IceServices.bundle */,
+ 4C9E5195C48351C3DD02282F /* IceServices.bundle */,
+ 9C15AF93ADECF03E659813AE /* IceSlicingExceptions.bundle */,
+ 4F9862A9DB389084AA3F18B9 /* IceSlicingExceptions.bundle */,
+ D8E7928159B49F7A04DA97BA /* IceSlicingExceptionsAMD.bundle */,
+ 16717ECD10710B6A0018D2C2 /* IceSlicingExceptionsAMD.bundle */,
+ DEB369D710EC587DFD76B069 /* IceSlicingObjects.bundle */,
+ 226E6E31A9D9B1EEB6E4EFE1 /* IceSlicingObjects.bundle */,
+ F5FFEAC74A94BBC740FD19E2 /* IceSlicingObjectsAMD.bundle */,
+ D8918D7258991F1E8CF58618 /* IceSlicingObjectsAMD.bundle */,
+ C150DFE9F6860E13C667DA77 /* IceSSLConfiguration.bundle */,
+ 8BC872547290B7E35FCC1E98 /* IceSSLConfiguration.bundle */,
+ 50C28D2AE3D7153816FAA709 /* IceStorm.framework */,
+ 5FB28C8905B0491A1AC74818 /* IceStorm.framework */,
+ FE689398E99ABF73ED63012C /* IceStream.bundle */,
+ 20295373CA09AE8ECFCB450B /* IceStream.bundle */,
+ C62B6C403ABEA4B86221A379 /* IceTimeout.bundle */,
+ FAFBC31486E68C91E83A6419 /* IceTimeout.bundle */,
+ 228DDCBD015FAE5B3571D90B /* IceUdp.bundle */,
+ 51E99B30521AA55C7680038E /* IceUdp.bundle */,
+ 2761AE969F9024BC359E5325 /* libIce C++11 iOS.a */,
+ 68CEC296554781EB6D21CA3C /* libIce C++11 macOS.a */,
+ 0AFAD6C28DA1495DABD4127E /* libIceDiscovery C++11 iOS.a */,
+ FDC4148479AEFCB6426F5E58 /* libIceDiscovery C++11 macOS.a */,
+ D8842621E7D70188F9DF2501 /* libIceIAP C++11 iOS.a */,
+ 626EED2E2153D0A9AE63108D /* libIceLocatorDiscovery C++11 iOS.a */,
+ 1B61A6FA40AFB5C32FEAA154 /* libIceLocatorDiscovery C++11 macOS.a */,
+ B377B0722288DFB2A73E0D11 /* libIceSSL C++11 iOS.a */,
+ 37E322077E762CEEF4853257 /* libIceSSL C++11 macOS.a */,
+ 322C504F6FBC0E00C381D83D /* SliceEscape.bundle */,
+ 47887C1FB9AA3D7D7B8F5B5B /* SliceEscape.bundle */,
+ 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */,
+ 35C037DF51255C7CDCD5861B /* TestCommon.framework */,
+ F8F014DC45DDAD9941F05D9D /* TestDriver.app */,
+ 8DD7CBE7D8A940FFCF43FC42 /* TestDriver.app */,
);
- name = optional;
+ name = Products;
sourceTree = "<group>";
};
- 453A4EC0E6870B06A348F3BC /* Ice */ = {
+ 3F00CCC102D0603B85FA8641 /* Slice */ = {
isa = PBXGroup;
children = (
- F622A140E6FAD50298A18A5C /* BuiltinSequences.ice */,
- 22B8F11BF7DF3C7A9FCC50EE /* Communicator.ice */,
- CD14CFE67744C5F820EF9517 /* CommunicatorF.ice */,
- E5F69164D6EF6D67644585DE /* Connection.ice */,
- B8DC2C52549E7BE254AE5AD5 /* ConnectionF.ice */,
- 62E33380F585921F9A5DC522 /* Current.ice */,
- 04D0F68E7D927E1D94AF8316 /* Endpoint.ice */,
- D6BE4397021F3C34B7564B4E /* EndpointF.ice */,
- 8E6A82D7E03BC98B98FD1BD9 /* EndpointTypes.ice */,
- D3EE1B4FEF0422D2F4B67156 /* FacetMap.ice */,
- 9090E70CCAD0C33985B09965 /* Identity.ice */,
- AE9D2B607B5204A4D8E9624F /* ImplicitContext.ice */,
- ADE87D0700232F5E9EC96C80 /* ImplicitContextF.ice */,
- 3BEE997F490F1B90AE8FF904 /* Instrumentation.ice */,
- B171708BCC523826FFA93B00 /* InstrumentationF.ice */,
- DF32ECF6778150AC88459CEF /* LocalException.ice */,
- 61F2BD2F23764D117F1428E8 /* Locator.ice */,
- 9D9AAADD7F79C7BC26E00BB1 /* LocatorF.ice */,
- 6E12E6EDB9DBD7DA624D4BBF /* Logger.ice */,
- C3EB1A27FAA5ACE22108F3FA /* LoggerF.ice */,
- FECF8197B2391C644A0DBBAE /* Metrics.ice */,
- 9C03AE788FB60178B55DA0DC /* ObjectAdapter.ice */,
- 41A2A5BB85973F3BAD4272A9 /* ObjectAdapterF.ice */,
- CC29C4495F4355C22DAE2870 /* ObjectFactory.ice */,
- E45CA56C87B74048C2351B64 /* Plugin.ice */,
- 3ACC00EC3978AA2856397560 /* PluginF.ice */,
- E03F4146023712CCF5C90907 /* Process.ice */,
- 7DC0C622594F31649B4E5A2D /* ProcessF.ice */,
- 14187A00ECA6E25D40B21B3D /* Properties.ice */,
- EAEA6F78056CA0855F0D7E27 /* PropertiesAdmin.ice */,
- B3977282F7A97C8FAFAC2272 /* PropertiesF.ice */,
- 341C025BDAE25FEE0B7FC5BC /* RemoteLogger.ice */,
- 0C28D3AB8568CED3044958A9 /* Router.ice */,
- 16B802BE4C8C5176C6AAD741 /* RouterF.ice */,
- D75D40BC53137EF8657BC4EE /* ServantLocator.ice */,
- 0B14E705E07F0D0D4EA85665 /* ServantLocatorF.ice */,
- 0E6E56298993D5697BF2E4ED /* SliceChecksumDict.ice */,
- BD42BAADD50274E65B29EE2F /* ValueFactory.ice */,
- 26922D4B3BD8D332A7E61B62 /* Version.ice */,
+ 1CA40ED12362133EACEFD3DC /* escape */,
);
- name = Ice;
+ name = Slice;
sourceTree = "<group>";
};
- 475D46136E8EA6977236B5B4 /* Ice */ = {
+ 423F23AA353C9EEE663AE7F5 /* adapterDeactivation */ = {
isa = PBXGroup;
children = (
- 30294CCCA80848D1D31F2B4D /* AdminFacetFactory.swift */,
- E63D1778300CEBCA0A19515A /* Blobject.swift */,
- 17440D04F7DAE85D3D43E242 /* BlobjectAsync.swift */,
- 96CA3097D4D2A913A3FB3E8F /* ClassResolver.swift */,
- EDCA8B1E59D2612ED83D81BB /* CommunicatorI.swift */,
- CF2ED98FA8B64E0AADEFAB7D /* ConnectionI.swift */,
- 1D7D240CBFD7A18DC4A68866 /* ConnectionInfoFactory.swift */,
- 01A223FD456711580DCF691D /* EndpointI.swift */,
- A02E61AC41C5A07BE70796C5 /* EndpointInfoFactory.swift */,
- 9657545DF1F8621BB42054C9 /* Exception.swift */,
- D17047642664F3ADD4EF85D9 /* FormatType.swift */,
- EB2B3D47708A5B8E3B97922A /* IceSwift.h */,
- 812538EE9C39FA7D928A56CE /* ImplicitContextI.swift */,
- 1C1B28D6DE78776F9C8B0E3D /* Incoming.swift */,
- DC984CB3FFCC2EC6CE323941 /* Info.plist */,
- 59B7C9A405B6E7E1BDC347E2 /* InitializationData.swift */,
- 3DFEA80D8F03282B1A5F1A49 /* Initialize.swift */,
- C6B3F64CC2D6760BFCBC3E16 /* InputStream.swift */,
- EBAA9F213C418E18F89E8552 /* LocalExceptionDescription.swift */,
- A564D8841C0E4D61A91B76D4 /* LocalExceptionFactory.swift */,
- 414F23E2600D35845151776A /* LocalObject.swift */,
- 605659C3453F483E3F0728C9 /* LoggerWrapper.swift */,
- CD9A7AAD93C61A24508A0108 /* Mutex.swift */,
- A1D63C4A474EDCB9B48A8908 /* NativePropertiesAdmin.swift */,
- F25EF4101674FED1FCFD03A8 /* Object.swift */,
- 81952BA176E8390931A31646 /* ObjectAdapterI.swift */,
- 9B59BE30057C1D6398E3853C /* OptionalFormat.swift */,
- 2FBCCFC5733CBDD1381BB260 /* OutputStream.swift */,
- 29608E038E5A3187528EA62D /* ProcessI.swift */,
- B5FBA5C3DA77A619F58782F7 /* PropertiesAdminI.swift */,
- 809AE206F2AB806E345F2005 /* PropertiesI.swift */,
- E0AD95718A26B63BB13863BA /* Proxy.swift */,
- 67E0822E520FD5EE3BCFA0E1 /* ServantManager.swift */,
- 8FD15FDDBA73FF5502EBB212 /* SlicedData.swift */,
- 6D41DC672B44BACE0CFB6341 /* SliceFlags.swift */,
- A4FFFF62292DDE44557B4482 /* SliceInfo.swift */,
- 006D663BDD6E4FFF082691DE /* UnknownSlicedValue.swift */,
- FFB394B08836052CA7E4B822 /* Util.swift */,
- 772409D1E7437F7872F894D7 /* Value.swift */,
- 8C57C835F74C40FCAAC884ED /* ValueFactoryManagerI.swift */,
+ ABD78784328011772284AB65 /* AllTests.swift */,
+ B8823D4D696A3C18EC64FB4A /* Client.swift */,
+ F924390865B63754A0B9D785 /* Collocated.swift */,
+ 583A290A57CB40B7B130517F /* Server.swift */,
+ 7BCCF602D0FF8D22B9680CF8 /* Test.ice */,
+ EE1A00AA2A52A007803ECA9F /* TestI.swift */,
);
- name = Ice;
+ name = adapterDeactivation;
sourceTree = "<group>";
};
- 4F6276FB64D71F822A3A5F54 /* IceSSL */ = {
+ 4248C1450568BC4420919C40 /* exceptions */ = {
isa = PBXGroup;
children = (
- 95090CB41D714BFC32B7F8E9 /* configuration */,
+ 709BD396C5DD2985D2576C89 /* AllTests.swift */,
+ F675DF8EACB868514B6517F7 /* Client.swift */,
+ 74A58F9341DE159C9D4D4122 /* ClientPrivate.ice */,
+ 5380E97D60D39D299195A4D5 /* Server.swift */,
+ B38BE3223AAFBAAF857AD5E2 /* ServerAMD.swift */,
+ 50AA22200C91767A2104DBE3 /* ServerPrivate.ice */,
+ D88E9B56D89F644A6AEC3F3E /* ServerPrivateAMD.ice */,
+ E9468F3EC40357BB0554ABEA /* Test.ice */,
+ 2B8D6033EF5DBC2905586933 /* TestAMD.ice */,
+ 20B2EFE81749EB63ECF0E74E /* TestAMDI.swift */,
+ 8D9BD8DBDA54A6A0F7362ACB /* TestI.swift */,
);
- name = IceSSL;
+ name = exceptions;
sourceTree = "<group>";
};
- 5067E51BE412C597DF115CDC /* Frameworks */ = {
+ 47450E9E2A33906214F19941 /* binding */ = {
isa = PBXGroup;
children = (
- 86722485AFE18D7C620035DA /* iOS */,
- D8ADFAF75206CC0A400F4BC2 /* OS X */,
+ CBD5794F951058D78ABA0D48 /* AllTests.swift */,
+ 5FFA38493C067C6B8C76B1C6 /* Client.swift */,
+ 3E610B0E67C9B6A1DBBF172C /* Server.swift */,
+ 17329147DB1EA3BC64BB13E3 /* Test.ice */,
+ 82F61D86E1F20952E8C3841A /* TestI.swift */,
);
- name = Frameworks;
+ name = binding;
sourceTree = "<group>";
};
- 55908B68FEF8E45962105287 /* IceDiscovery */ = {
+ 4B8D6087EF0CB4EBFFA9D9FB /* macOS */ = {
isa = PBXGroup;
children = (
- 27F5894F948B4EABD275EA37 /* IceDiscovery.ice */,
+ 62E2EEFD8989AED2832957D5 /* main.swift */,
);
- name = IceDiscovery;
+ name = macOS;
sourceTree = "<group>";
};
- 562436B5E247E0784962BAFF /* IceIAP */ = {
+ 4E9A97DE3F46546998C1A9D9 /* IceLocatorDiscovery */ = {
isa = PBXGroup;
children = (
- FBA6181009014692E2D8957F /* ConnectionInfo.ice */,
- B5D8735FF60B61D4FC93C43B /* EndpointInfo.ice */,
+ C6FBE40672797298F2C1C21A /* IceLocatorDiscovery.ice */,
);
- name = IceIAP;
+ name = IceLocatorDiscovery;
sourceTree = "<group>";
};
- 59C4D7066505638602996603 /* IceSSL */ = {
+ 57FB05D4E8F17E259436378E /* IceSSL */ = {
isa = PBXGroup;
children = (
- 09D1CEBFECBBCC3BE50933C6 /* ConnectionInfo.ice */,
- F7DF8CD98667A56B105D8ADD /* ConnectionInfoF.ice */,
- 2CAAB9F27FD8B9C3DBD01B84 /* EndpointInfo.ice */,
+ 73CC62886A3D56E023683BB9 /* AcceptorI.cpp */,
+ 05BB39343FCE5405892D8C99 /* CertificateI.cpp */,
+ 23A7A3D04FD6DD262946F705 /* ConnectorI.cpp */,
+ 7BA3A76FABDAB54CF329EC7B /* EndpointI.cpp */,
+ 5F0DC044B6F5DAB4FA96D80E /* Instance.cpp */,
+ E8223AEBF7050FD7541E96A1 /* PluginI.cpp */,
+ 0CA40BD3219BDDA159CFBB40 /* RFC2253.cpp */,
+ C1372F822DB8C05EDAF951C4 /* SecureTransportCertificateI.cpp */,
+ 51958A1C51031D46A27BF8C2 /* SecureTransportEngine.cpp */,
+ 571F60FE3865604E45D3EB20 /* SecureTransportPluginI.cpp */,
+ 9E7D203B0DE479B10FBE0E54 /* SecureTransportTransceiverI.cpp */,
+ 69751EFFF0F18C7B5657D7F9 /* SecureTransportUtil.cpp */,
+ 8802757B1DE233FE2791BC9F /* SSLEngine.cpp */,
+ 2C5F429607AD626A6D88871B /* TrustManager.cpp */,
+ 2E7E69875C244C5778EEC372 /* Util.cpp */,
);
name = IceSSL;
sourceTree = "<group>";
};
- 6027890B9EDA9AFED33361A2 /* IceGrid */ = {
+ 58A2AEAE9E7449342911EC37 /* Ice */ = {
isa = PBXGroup;
children = (
- BC022737AB290471B0DB3DD4 /* Admin.ice */,
- 762D926265F709AAFABAE603 /* Descriptor.ice */,
- 3FFD751D514266DA7C58D2E0 /* Exception.ice */,
- C2A22B3B3EF5EE88BDA1C081 /* FileParser.ice */,
- 66C88F295990C3B47386A522 /* PluginFacade.ice */,
- 3EAF7BFE9FA00B536E33DBF9 /* Registry.ice */,
- 9C2EC602112629E6DBF7B880 /* Session.ice */,
- A7B013E5D11F9D9B67E1C837 /* UserAccountMapper.ice */,
+ DEEA10006DB488A9504D2D74 /* acm */,
+ 423F23AA353C9EEE663AE7F5 /* adapterDeactivation */,
+ 15B876DEF053F11BB86791BD /* admin */,
+ 2D670BEA2C0EC07B57B4BDD8 /* ami */,
+ 47450E9E2A33906214F19941 /* binding */,
+ ACB2546B7206EAC0D8452FF3 /* defaultServant */,
+ 857B2611A35799419B78AB55 /* defaultValue */,
+ 0BC4B78C7A96B0EA4E0A6D3E /* enums */,
+ 7FC2ADAC5729D9927E53D69E /* exceptions */,
+ 9D690393D73C851D462B84AD /* facets */,
+ 008559C9AB2C8A36202EB284 /* hold */,
+ 5A3F88C63DAD1EA7229582FD /* info */,
+ 91765D4B2CE715349CE8D389 /* inheritance */,
+ 70318FC5AE9A18B22A4968CE /* interceptor */,
+ 80ACFD8390F36E47E0E0D798 /* invoke */,
+ D36C3EC38C40E08FC05505FF /* location */,
+ D75A67AC56E93EEFEE877E42 /* objects */,
+ 35F5415C2A33B0678D43C9B6 /* operations */,
+ 1E5D2303368655864F5B8F46 /* optional */,
+ 8B194D219513D37C1BB99F8C /* properties */,
+ 6439DCB8BAE21E3886F8FFFD /* proxy */,
+ BC0527182A1ADAE99F46AAC5 /* retry */,
+ F47B6953679235F9514B5855 /* scope */,
+ B5FE2CD84E795DBF3B640403 /* servantLocator */,
+ 5D19E5DD60771A1D7DA7897E /* services */,
+ 75D72BCBEB52375C12B2D5D7 /* slicing */,
+ F3F9A751DE0EE12740C1E5CE /* stream */,
+ 8FCA5BDB1BC4200AF1887C57 /* timeout */,
+ ABAAB54716334FD3E14F8FC5 /* udp */,
);
- name = IceGrid;
+ name = Ice;
sourceTree = "<group>";
};
- 60D92721BAE0511E67037F91 /* Products */ = {
+ 5A3F88C63DAD1EA7229582FD /* info */ = {
isa = PBXGroup;
children = (
- 3EC2422F7DF9807B4B59F69E /* Glacier2.framework */,
- 13F8DEDC3CF968015BFABDE6 /* Glacier2.framework */,
- 1C9CF1CBF941960EEAB640B9 /* Ice.framework */,
- BA8101A60EED9B96E5B22B7F /* Ice.framework */,
- E5BEE9FCD147249B52EA9011 /* IceAcm.bundle */,
- A656B7EA027D8EED38F05BA9 /* IceAcm.bundle */,
- 8E8BB0CB5BF9A48E9E7CC2BF /* IceAdapterDeactivation.bundle */,
- EBD0BA0C20BD4A72616B55A7 /* IceAdapterDeactivation.bundle */,
- 0AC87AC3932C89B1E8784540 /* IceAdmin.bundle */,
- F8AD6B67521A305AADC0614C /* IceAdmin.bundle */,
- 664DE546AEA6A224A9B4EB0A /* IceAmi.bundle */,
- 2F61780DB1A2DD448877BC09 /* IceAmi.bundle */,
- 52660B66383EDC81626C3C67 /* IceBinding.bundle */,
- EE16F167CC49EDDC79F69F5F /* IceBinding.bundle */,
- C65B6C7BED85697CBEA44EAA /* IceDefaultServant.bundle */,
- A9AF41322A6116F0AC78A561 /* IceDefaultServant.bundle */,
- 7DEA75801F4667F22FBB0E23 /* IceDefaultValue.bundle */,
- D80900AAE1BA05236D22A848 /* IceDefaultValue.bundle */,
- 9FED4EE7B5090FE0DAE755DC /* IceEnums.bundle */,
- 5A4773F9B5A0740C005F9730 /* IceEnums.bundle */,
- 5A05394CC1EFA4C1C9619075 /* IceExceptions.bundle */,
- 06DF4B6E97814A6B7777C17B /* IceExceptions.bundle */,
- 228CABBDAD2E4CB85FA7A1C8 /* IceExceptionsAMD.bundle */,
- 59BDA919B81B67B5D58B445E /* IceExceptionsAMD.bundle */,
- 734A694F78C0E5DB148EC8DF /* IceFacets.bundle */,
- EB7F09E370CF39B0DC8F9EED /* IceFacets.bundle */,
- E565EEA036FCDFE7E2231B17 /* IceGrid.framework */,
- F0A2495853FF103040F35EB7 /* IceGrid.framework */,
- 3F187CE3CC99555A8AA5B48A /* IceHold.bundle */,
- 1783729E7EF7417321B68CBA /* IceHold.bundle */,
- 52B82665E4CA54E9C28CC521 /* IceImpl.framework */,
- 20E8394869BBE3A6A0E8B73A /* IceImpl.framework */,
- 21101A4A8B29F9285DA12AC8 /* IceInfo.bundle */,
- 3C1C6EE40F63454C782F7A99 /* IceInfo.bundle */,
- BD3B63910D4CB7D40D357BE8 /* IceInheritance.bundle */,
- 5885D5FFD3D6F50139F94947 /* IceInheritance.bundle */,
- 318B4362356CAEAF664C3474 /* IceInterceptor.bundle */,
- 152C6962CBD63C02057179CD /* IceInterceptor.bundle */,
- CB87D2A2C1C7BBC4369A68F6 /* IceInvoke.bundle */,
- 095FD037AD9F4A3D5CE458DF /* IceInvoke.bundle */,
- 0B4A2E3C7C18AD9170E2DFEC /* IceLocation.bundle */,
- 7B6D005E02B69AF9FE56313C /* IceLocation.bundle */,
- B0ED3F4472239D27B9CDAC15 /* IceObjects.bundle */,
- 0DF6B8067E8C2C037234700B /* IceObjects.bundle */,
- 25D23CB8F54EFB2A4493A943 /* IceOperations.bundle */,
- 757CAAFA705B2AD13DCED72B /* IceOperations.bundle */,
- F1F49CE58160B74F9BAFED79 /* IceOperationsAMD.bundle */,
- F6F943274DED61792E50D25A /* IceOperationsAMD.bundle */,
- 07C19BFF26EA2D5A9BFF11C2 /* IceOptional.bundle */,
- 794CB5C40C28921A7F8899C9 /* IceOptional.bundle */,
- FF0F98E6AF1E0870BEB89E7A /* IceOptionalAMD.bundle */,
- 202045998BA207BE21F9742F /* IceOptionalAMD.bundle */,
- 3E6B5AD7E9945BABB2529D9E /* IceProperties.bundle */,
- E2221223DDFEC20D1310DB77 /* IceProperties.bundle */,
- 73A97154F0F1D051F4D4077F /* IceProxy.bundle */,
- 594CACC0045DC32A52CF8674 /* IceProxy.bundle */,
- ABAFBED8C90A204AFA67BBF4 /* IceProxyAMD.bundle */,
- FF0571D193794236BC596A7D /* IceProxyAMD.bundle */,
- 48E3BED1D96A31F2947B3802 /* IceRetry.bundle */,
- F4AA714EDBBA725022DE32AB /* IceRetry.bundle */,
- CCC6391BF44ABA9EA371F984 /* IceScope.bundle */,
- 4E0AA9FBEC424181F02EF258 /* IceScope.bundle */,
- 316C45F32FFF05031C96287D /* IceServantLocator.bundle */,
- 0551639DEFF9603D6E191663 /* IceServantLocator.bundle */,
- 58C2EB6C86D346799E4DE444 /* IceServantLocatorAMD.bundle */,
- D37101549BEDABD23E8A508F /* IceServantLocatorAMD.bundle */,
- 229B9CB20575480C7011720F /* IceServices.bundle */,
- 418EE006DB669F2A5A84699F /* IceServices.bundle */,
- 034D5FF825FFE2A304A95FEB /* IceSlicingExceptions.bundle */,
- 6DE8323ECDD12C5252E02FF4 /* IceSlicingExceptions.bundle */,
- 89A51B23E16E26B5745CD61F /* IceSlicingExceptionsAMD.bundle */,
- 97F654181891F3B80AA29092 /* IceSlicingExceptionsAMD.bundle */,
- 3098E4273D7B3498F83FD430 /* IceSlicingObjects.bundle */,
- F54102FD9173D5948F3DB693 /* IceSlicingObjects.bundle */,
- 22BFB6FDB6B68D3C3AFE5007 /* IceSlicingObjectsAMD.bundle */,
- B49E3D640D575476EDF754DE /* IceSlicingObjectsAMD.bundle */,
- 86E120D7592D593667241A60 /* IceSSLConfiguration.bundle */,
- 0DD700D41041F13457102359 /* IceSSLConfiguration.bundle */,
- 02DEAA767E87169F7169F463 /* IceStorm.framework */,
- D198723359CE7598DAED2EEB /* IceStorm.framework */,
- 9A0CD78B16D57E052BF40A4B /* IceStream.bundle */,
- E1A2C7F234AB794104399BAA /* IceStream.bundle */,
- 2B59DE6E7E31115EA6E52219 /* IceTimeout.bundle */,
- 5346CCCFF12A71D81795AD83 /* IceTimeout.bundle */,
- 5EF983122BD6F435855FC204 /* IceUdp.bundle */,
- 0F400D91B52F6ED22A761CAF /* IceUdp.bundle */,
- B2D710C4A79835F70B72D08A /* libIce C++11 iOS.a */,
- 8E319CE1E162A972A783C06A /* libIce C++11 macOS.a */,
- 09A77AFA5D366FAFD7CDC0D5 /* libIceDiscovery C++11 iOS.a */,
- 2FEEB7A710CB728ED1FC66D6 /* libIceDiscovery C++11 macOS.a */,
- 2283D69713D5C7438C9D5292 /* libIceIAP C++11 iOS.a */,
- 8A354429E9BF7539C167CEB8 /* libIceLocatorDiscovery C++11 iOS.a */,
- 217D1B8BD2609F6135197ED9 /* libIceLocatorDiscovery C++11 macOS.a */,
- 21B195F543EFC2F193A1DD0C /* libIceSSL C++11 iOS.a */,
- 43EBC589686D2144CFD9CB97 /* libIceSSL C++11 macOS.a */,
- 02A653BDDFE566D6362AC794 /* SliceEscape.bundle */,
- 0FBF93F2D51FCD340542AF0C /* SliceEscape.bundle */,
- 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */,
- 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */,
- 93D9509A39BDFCB18004A379 /* TestDriver.app */,
- ACF4E8E01FC452B93358E977 /* TestDriver.app */,
+ E65331EA85E12D5A4D23BD29 /* AllTests.swift */,
+ FFA6DB995DB96B0E3A2B65EE /* Client.swift */,
+ 751D293EE7855F9A5A773FE7 /* Server.swift */,
+ F1FF86C20DD375A84E790A7D /* Test.ice */,
+ CAB3EA4F291781F0F7B6F024 /* TestI.swift */,
);
- name = Products;
+ name = info;
sourceTree = "<group>";
};
- 6902F56B968198EBC9EDF22F /* IceUtil */ = {
+ 5D19E5DD60771A1D7DA7897E /* services */ = {
isa = PBXGroup;
children = (
- CB079155D6B2B714CD02C702 /* ConsoleUtil.cpp */,
- 30EB9BBF93E3D0A41ECF8A7E /* CtrlCHandler.cpp */,
- 9B84CFA5C141E9FA1769464F /* FileUtil.cpp */,
- EBC949A8BF16F44AE0A65971 /* InputUtil.cpp */,
- A9A124033A824161B2DFDF12 /* MutexProtocol.cpp */,
- 1442BF82598B6CA3BA82A542 /* Options.cpp */,
- 58001B947CD78939BE9CBFAD /* OutputUtil.cpp */,
- 0D0030849F57FCFF88081EB6 /* Random.cpp */,
- E19DC19296ABDDB29732AEB2 /* RecMutex.cpp */,
- 35304D3B36A6003F44E7DB80 /* Shared.cpp */,
- C486A2A63E827BCDB5D00E12 /* StringConverter.cpp */,
- 5E2229E45A7997941DA6BE77 /* StringUtil.cpp */,
- 93A149AA95BCE53B8FFC7805 /* ThreadException.cpp */,
- D858BF30039875BFFF7B4678 /* Time.cpp */,
- 632C58E40F3481563D19816D /* UtilException.cpp */,
- 2EBDA0CFEACD3987EFAD6252 /* UUID.cpp */,
+ 68121E9326EA961B56F58A80 /* Client.swift */,
);
- name = IceUtil;
+ name = services;
sourceTree = "<group>";
};
- 6C4E5E800D43965CB8CA3087 /* src */ = {
+ 6439DCB8BAE21E3886F8FFFD /* proxy */ = {
isa = PBXGroup;
children = (
- 23D757676BC4A355F233C048 /* Ice */,
- 83A4665B623D1041FE653C5D /* IceDiscovery */,
- 24CA76A048648D30FFCDF82A /* IceIAP */,
- C6CE493162F0CAA0A1C4F091 /* IceLocatorDiscovery */,
- 8EB63D2E07ADF14C94677330 /* IceSSL */,
- 6902F56B968198EBC9EDF22F /* IceUtil */,
+ C3F55B79F56ED47BB1490274 /* AllTests.swift */,
+ 4E51D353FDFADE7C2085B196 /* Client.swift */,
+ D88018174B46A41D0B540A95 /* Collocated.swift */,
+ 357A78B6281F30D25FD5C410 /* Server.swift */,
+ DDC3D4E5B05D9FD2F3E929F5 /* ServerAMD.swift */,
+ 9499FF08DB66C34FD2896B23 /* Test.ice */,
+ 50829B5C8135F4031CD1EA4D /* TestAMD.ice */,
+ 203606D7DC16FEAAC9468535 /* TestAMDI.swift */,
+ 78DBA4B685FAAB1B1B19C953 /* TestI.swift */,
);
- name = src;
+ name = proxy;
sourceTree = "<group>";
};
- 6E58C2B5C2EF79DD2D7BC3F9 /* Ice */ = {
+ 68E0C46B5A8602CAB4A07ED7 /* ios */ = {
isa = PBXGroup;
children = (
- 253036D3AEF10225AED5E447 /* acm */,
- 2D217F7813C9AEA19462AB38 /* adapterDeactivation */,
- A551D4111909C7B81EFBF6E0 /* admin */,
- 79B8547014C9904C162FD18C /* ami */,
- 8404557A122492D8A7A35CBA /* binding */,
- FCD85B7F2FEEB7DD86E57AD5 /* defaultServant */,
- 73B7A3A4B239C1940F4DD912 /* defaultValue */,
- C2964803E45629907FD2317F /* enums */,
- AEA1E89E6A27E4AC345035B0 /* exceptions */,
- 30242BD6F4B2F1EE91F6D3C3 /* facets */,
- 2C71645C8E19C6DD5C2D85F6 /* hold */,
- 77D7C9EC6497576D650E0E40 /* info */,
- 8BA1991D22DFA0E44A1A3C2B /* inheritance */,
- F7E006FEE9977C1B1A562211 /* interceptor */,
- 95373DEE132506A328E1A29B /* invoke */,
- 79BA44AAE97ED14C62FF1376 /* location */,
- 3DB35B59FA6D46066FECFD47 /* objects */,
- 71DE4AC5A6507F14EA1F1C01 /* operations */,
- 3DE6786C5B0FC27886A70C17 /* optional */,
- 0E03993523D2B5C180C8E354 /* properties */,
- D36C4F1F9C805DDA325B544B /* proxy */,
- F950871321B36F8F7F50D39C /* retry */,
- 9026270C08C5CF02B99A9F26 /* scope */,
- 15E2C4279DB142DD1C23B4A1 /* servantLocator */,
- 94A7501D3C1EFE0A6BE7C2AF /* services */,
- 92A7F1DE1074B77636C429F2 /* slicing */,
- 287F04E189F628785EE60335 /* stream */,
- 8DF66D2E4CF245CA82CDD7F6 /* timeout */,
- 34EAF5A5C70EA4837FBFE364 /* udp */,
+ 55F24CEDC5F99C4DB8BE9A4C /* Notifications.mm */,
+ 9AE0567B4511A9DB628482F1 /* StreamAcceptor.cpp */,
+ ACC7E3AC4A2BB3A86C34E51A /* StreamConnector.cpp */,
+ 6B01BC3A8434A3063376ACCF /* StreamEndpointI.cpp */,
+ 4C4F16CE0E18FAE1B868EF7D /* StreamTransceiver.cpp */,
);
- name = Ice;
+ name = ios;
sourceTree = "<group>";
};
- 71DE4AC5A6507F14EA1F1C01 /* operations */ = {
+ 6FB1A63271BB72F1ABA39275 /* cpp */ = {
isa = PBXGroup;
children = (
- C0C6303C93DFEDECE6EB5DEF /* AllTests.swift */,
- 578762DACAF19CAE80B60584 /* BatchOneways.swift */,
- F3D8DF4CB3647850A85D5025 /* BatchOnewaysAMI.swift */,
- 0FFA3A0EB2D8C3D84B1A3E88 /* Client.swift */,
- 4822C67556D463404A0882AD /* Collocated.swift */,
- 66591C1991E7BEA609899269 /* Oneways.swift */,
- F96B6725563EBB8A4C22C9FE /* OnewaysAMI.swift */,
- DD7671A9B2009FB71C4C5844 /* Server.swift */,
- F8BC8E349B2D4DDB3153DF69 /* ServerAMD.swift */,
- D0DC93B091DBEFF7FE8E604F /* Test.ice */,
- D8B59B23A4678E945FD1C27A /* TestAMD.ice */,
- 1A99EED2576E4B2717BF7F69 /* TestAMDI.swift */,
- F18C23F990FBF94BB8B7FE60 /* TestI.swift */,
- 19329E19D18D022FA95D9623 /* Twoways.swift */,
- 89F30B8D1202CAD2F2CD7C65 /* TwowaysAMI.swift */,
+ 3C48DD1667894F93D7EAD5B4 /* src */,
);
- name = operations;
+ name = cpp;
sourceTree = "<group>";
};
- 73AC311AAED543A1C3E8A14E /* exceptions */ = {
+ 70318FC5AE9A18B22A4968CE /* interceptor */ = {
isa = PBXGroup;
children = (
- BB85FA1A85C83E850BEB6B6D /* AllTests.swift */,
- 338881AF6EF560BF91024571 /* Client.swift */,
- 5F7E6B658E93B0786448C7D2 /* ClientPrivate.ice */,
- 3FD34596289445D5D953E2D1 /* Server.swift */,
- 95BF6E1AA2CD495DABDDD13E /* ServerAMD.swift */,
- 41C480006CA91E286A5DCD77 /* ServerPrivate.ice */,
- 78E541B6D2455480311DA7B4 /* ServerPrivateAMD.ice */,
- D8E357652C5E3E692CCA7295 /* Test.ice */,
- 84ECCCF740467E67DFD0E89F /* TestAMD.ice */,
- 2E45B0F3A37E9A497981BFBA /* TestAMDI.swift */,
- EDCEDCD14224AE9E77D6485D /* TestI.swift */,
+ 8848EFBB95F9D6D77B56302A /* Client.swift */,
+ 3EE0E3DBF68592091E1CFFFB /* Test.ice */,
);
- name = exceptions;
+ name = interceptor;
sourceTree = "<group>";
};
- 73B7A3A4B239C1940F4DD912 /* defaultValue */ = {
+ 72BB53346B4D91C2F79D8165 /* IceGrid */ = {
isa = PBXGroup;
children = (
- 8735A9A652C31C2A3CC241E1 /* AllTests.swift */,
- 1FAC631A855367CC829C10BE /* Client.swift */,
- 05CCFAC55D71DB3861715464 /* Test.ice */,
+ 20486AFFB86A5E44084EDF99 /* Admin.ice */,
+ 515A9CC5CE995B281FBCA597 /* Descriptor.ice */,
+ 254298ADB9C25668AB610F92 /* Exception.ice */,
+ 08D4C2681B7D72E32D51CEE5 /* FileParser.ice */,
+ 200A8DF5882EB835681B33B6 /* PluginFacade.ice */,
+ D0EAC955BB7F720093F87E7A /* Registry.ice */,
+ 05FFDAA0F31D253BA2E31F6E /* Session.ice */,
+ 46CCEC5938A075D12D2F812A /* UserAccountMapper.ice */,
);
- name = defaultValue;
+ name = IceGrid;
sourceTree = "<group>";
};
- 77D7C9EC6497576D650E0E40 /* info */ = {
+ 75D72BCBEB52375C12B2D5D7 /* slicing */ = {
isa = PBXGroup;
children = (
- C0D21CD021F167AEAD53D54A /* AllTests.swift */,
- 62D24BEFA55328A8DBA6A3F4 /* Client.swift */,
- EC8D81DC4E22E249C0DD3842 /* Server.swift */,
- 9688D2BFFD3AB9CA38696B81 /* Test.ice */,
- 3C6244048BFBCED451F04E34 /* TestI.swift */,
+ 4248C1450568BC4420919C40 /* exceptions */,
+ EE0833641231AC8B896165EA /* objects */,
);
- name = info;
+ name = slicing;
sourceTree = "<group>";
};
- 79B8547014C9904C162FD18C /* ami */ = {
+ 78FEA9D93B69A1289B11F1E0 /* slice */ = {
isa = PBXGroup;
children = (
- B8A655E25C1FF11282E3A8F6 /* AllTests.swift */,
- A8C85A49004476632B254372 /* Client.swift */,
- 80341A9A47F4D0BAA1DB2C05 /* Collocated.swift */,
- FC91A6274871AB414E3DF146 /* Server.swift */,
- D99433C106AE10804BD3CFDA /* Test.ice */,
- 8915DEC95041AA153E5919EE /* TestI.swift */,
+ 2E6B5117C93C978025DEA184 /* Glacier2 */,
+ 96B29808688289C6A15A8744 /* Ice */,
+ DB1BFD812C22BF95664FB67C /* IceDiscovery */,
+ 72BB53346B4D91C2F79D8165 /* IceGrid */,
+ F347318E53D4D96BE16235C3 /* IceIAP */,
+ 4E9A97DE3F46546998C1A9D9 /* IceLocatorDiscovery */,
+ C19139377C7B7F33E8F99345 /* IceSSL */,
+ 17C5E0DD990E6176913BF6E3 /* IceStorm */,
);
- name = ami;
+ name = slice;
sourceTree = "<group>";
};
- 79BA44AAE97ED14C62FF1376 /* location */ = {
+ 7FC2ADAC5729D9927E53D69E /* exceptions */ = {
isa = PBXGroup;
children = (
- 3E91DC3598F5343C8C478FFA /* AllTests.swift */,
- 6B6D02010D405B25EDD70A6A /* Client.swift */,
- DA692E2EA6088AE2EAA1411D /* Server.swift */,
- C8E60A264C8456DE0ED5C966 /* Test.ice */,
- E9DF9BA893942F5D6906B77C /* TestI.swift */,
+ 5405AF9183C769694C514F75 /* AllTests.swift */,
+ 4209DB74FE392398BBBAA7AB /* Client.swift */,
+ 06AAE6710F281EAE37864E17 /* Collocated.swift */,
+ 0A9BF1272CFE825F7F2D6814 /* Server.swift */,
+ 7B464045D3DD080BA5784472 /* ServerAMD.swift */,
+ 08B0ED970FB5747320CDA718 /* Test.ice */,
+ 6EBCEFAB4C8715E3794AFD71 /* TestAMD.ice */,
+ B1A704CC39E0EF86372BDEA3 /* TestAMDI.swift */,
+ D362F8935BDDBB6646F277C8 /* TestI.swift */,
);
- name = location;
+ name = exceptions;
sourceTree = "<group>";
};
- 8122A0D7C047DA43EC99DD41 /* test */ = {
+ 80ACFD8390F36E47E0E0D798 /* invoke */ = {
isa = PBXGroup;
children = (
- 6E58C2B5C2EF79DD2D7BC3F9 /* Ice */,
- 4F6276FB64D71F822A3A5F54 /* IceSSL */,
- 0DBE369EEBE8FC8672B438B7 /* Slice */,
- 2C344713C506C1E8975EF578 /* TestCommon */,
- 398A6CFF06DE665D388D7413 /* TestDriver */,
+ 2A56A987814C21FAD838ED42 /* AllTests.swift */,
+ DA71E7B49312CF4F07C90A3C /* Client.swift */,
+ 7C86A7981B1918DC97BD1D67 /* Server.swift */,
+ 362F347C523AD63B9BF0488E /* Test.ice */,
+ 331C0AFBDD1EC10EBBC33B68 /* TestI.swift */,
);
- name = test;
+ name = invoke;
sourceTree = "<group>";
};
- 83A4665B623D1041FE653C5D /* IceDiscovery */ = {
+ 8494A332BAE8B0EB9A7E01F5 /* IceUtil */ = {
isa = PBXGroup;
children = (
- 2703F6DB8B1EDE26B743784A /* LocatorI.cpp */,
- 710469C3B6096B0FE2B59B88 /* LookupI.cpp */,
- A0D695F59B98F23481D6A838 /* PluginI.cpp */,
+ DFC578DAEBC7B64CA2E829DA /* ConsoleUtil.cpp */,
+ BEA2205E172336BB60147423 /* CtrlCHandler.cpp */,
+ F2E80530BC3EB3B267510B98 /* FileUtil.cpp */,
+ BEE143805505A4DED71F44DD /* InputUtil.cpp */,
+ 22138CAA2F575EA5E4376E27 /* MutexProtocol.cpp */,
+ 245D2B5223975F47997BD145 /* Options.cpp */,
+ 764BA5087FACD9DF6068DBAE /* OutputUtil.cpp */,
+ 83ADC759472D70CD7FABB6E1 /* Random.cpp */,
+ 0A7386B8D552BC1C5E342209 /* RecMutex.cpp */,
+ EABEF7F85B00B0111F6C3560 /* Shared.cpp */,
+ 95BA56AA2BDF936B8E4F0B2A /* StringConverter.cpp */,
+ F7FFF7F457B44AF10B294A53 /* StringUtil.cpp */,
+ 907A6D6CFC6A86E3A26C6F8E /* ThreadException.cpp */,
+ 9E48639D847EEF9B191A6B2A /* Time.cpp */,
+ A800F7CE4B2357D7E55B5782 /* UtilException.cpp */,
+ E6DB5FF43E9B340D7029297A /* UUID.cpp */,
);
- name = IceDiscovery;
+ name = IceUtil;
sourceTree = "<group>";
};
- 8404557A122492D8A7A35CBA /* binding */ = {
+ 857B2611A35799419B78AB55 /* defaultValue */ = {
isa = PBXGroup;
children = (
- 3BF1C026046DF91425D0C38C /* AllTests.swift */,
- 74414740EAAC22AD8701B446 /* Client.swift */,
- 56C3F3F779CF422987DC4B6A /* Server.swift */,
- E456B634781CC6536E96BA61 /* Test.ice */,
- 98F5968AA05F599244249E40 /* TestI.swift */,
+ 2AA88014FB3AA166A95BE666 /* AllTests.swift */,
+ 203A89D1A926F10F7840B7F2 /* Client.swift */,
+ 3C03C03C64676FDFAB9D2C9F /* Test.ice */,
);
- name = binding;
+ name = defaultValue;
sourceTree = "<group>";
};
- 86722485AFE18D7C620035DA /* iOS */ = {
+ 886541E8D699CBCD5884C172 /* Ice */ = {
isa = PBXGroup;
children = (
- 7DE422E2E8A03B7162B8A1B1 /* CFNetwork.framework */,
- 140ED17FF6BC91F62945A7CD /* ExternalAccessory.framework */,
- F589827258A97B0283CECB0C /* Foundation.framework */,
- 84D0AF3C9A49433BF24E6134 /* PromiseKit.framework */,
- 5AAF5AB8C9CB904F380E26BA /* Security.framework */,
- 63E5E1D78291FE22A632016E /* UIKit.framework */,
+ 87E4EFB3F77857A527AEA983 /* AdminFacetFactory.swift */,
+ 2FD01E8AD2B0DFDB800C76AF /* Blobject.swift */,
+ 57F789D5181AAA8BD1D848C0 /* BlobjectAsync.swift */,
+ A3F03C459EE7E9A7A7EED2FC /* ClassResolver.swift */,
+ DD068D7CC10CB319EE39A71B /* CommunicatorI.swift */,
+ D2BFD0993886CBEB26A9EBCC /* ConnectionI.swift */,
+ 81D735D9C5633A99111B3FBA /* ConnectionInfoFactory.swift */,
+ 92FA3E6D5ACCF4B1CF0C3378 /* EndpointI.swift */,
+ D726E89DC9EF4DCC71E5B72C /* EndpointInfoFactory.swift */,
+ 22825AA9BAA549D3D3C418E4 /* Exception.swift */,
+ 490ABC45AAAADE449F8F7C01 /* FormatType.swift */,
+ 2154E21B0223CFA07D47B8CE /* IceSwift.h */,
+ DBE83FBE8EC1C00F209B7912 /* ImplicitContextI.swift */,
+ 305DF5FE549D3C4D4B428924 /* Incoming.swift */,
+ F4F1FF18E9213EF12562CD02 /* Info.plist */,
+ 7243D1737C0011C6B64B6542 /* InitializationData.swift */,
+ 73FA22C5034CE056FA112987 /* Initialize.swift */,
+ 284E9BE541AD26DB761BDFA5 /* InputStream.swift */,
+ C3D6020190F13303DBB3AE04 /* LocalExceptionDescription.swift */,
+ 117D977692C7C2D8FB2676C2 /* LocalExceptionFactory.swift */,
+ BEEED6CDF0BD1668C74B3F2F /* LocalObject.swift */,
+ 727ADCDFD189C116DA626990 /* LoggerWrapper.swift */,
+ D8190F551078596098F1E80F /* Mutex.swift */,
+ 1CEEDF4566395391C9E226BF /* NativePropertiesAdmin.swift */,
+ 9E71EF8B4A3A71C72A15134D /* Object.swift */,
+ 4A32F5A7C35C65FA0E2A9F32 /* ObjectAdapterI.swift */,
+ 7139B6C8CA10007E792F53D4 /* OptionalFormat.swift */,
+ 99AF1143034F0C3447D52DC6 /* OutputStream.swift */,
+ 1326E162E95AA649537C06E8 /* ProcessI.swift */,
+ 12D74FE4EA7C6A660AF74591 /* PropertiesAdminI.swift */,
+ FEAE54441F169A7C4B067FFA /* PropertiesI.swift */,
+ 2B60F1EE25531E060808BBCB /* Proxy.swift */,
+ FC591A6A5FF8126DE099F8A2 /* ServantManager.swift */,
+ F7D6AD5F74CE6D55E945CE35 /* SlicedData.swift */,
+ E70C9D396BD6B5A4E73C5CFF /* SliceFlags.swift */,
+ E7B7A13B6C4176A137464A3C /* SliceInfo.swift */,
+ DF246750FE16FD27AB1B9E1B /* UnknownSlicedValue.swift */,
+ E5B747D322414658FF4DD342 /* Util.swift */,
+ EB5F5A5D2EECF428ECB79E52 /* Value.swift */,
+ 631222ED1E46C261BA6D81C0 /* ValueFactoryManagerI.swift */,
);
- name = iOS;
+ name = Ice;
sourceTree = "<group>";
};
- 8A25BF15000B22E58C3381C3 /* Glacier2 */ = {
+ 8B194D219513D37C1BB99F8C /* properties */ = {
isa = PBXGroup;
children = (
- 692BD56989D55425DA5EE6FB /* Glacier2Swift.h */,
- 9B8745353A2FAF2E521B79E5 /* Info.plist */,
+ 2364A6DD20E3A6D924D2D4BE /* Client.swift */,
);
- name = Glacier2;
+ name = properties;
sourceTree = "<group>";
};
- 8BA1991D22DFA0E44A1A3C2B /* inheritance */ = {
+ 8B2E54A88034AA813BC77445 /* Ice */ = {
isa = PBXGroup;
children = (
- 3A10F2C3A2F308F94F3EA3DD /* AllTests.swift */,
- 6D1138147C3E8462D27C7917 /* Client.swift */,
- FACFC7BA89D5443063D59EC3 /* Collocated.swift */,
- 5F179019ED3F072B2C479ECD /* Server.swift */,
- E97BD444178119BC32E07B8F /* Test.ice */,
- AC9E443E70BA5034FEFCD21E /* TestI.swift */,
+ 68E0C46B5A8602CAB4A07ED7 /* ios */,
+ E5A8A9CE6A57293E4D35757E /* Acceptor.cpp */,
+ ACB1CA0FC300B3B03EB78716 /* ACM.cpp */,
+ DB36F29477EA57AD8868E6DD /* ArgVector.cpp */,
+ 1CBBD656C39C80C5AF2EA1DB /* Base64.cpp */,
+ C6C69B957051A399B8A8D080 /* BatchRequestQueue.cpp */,
+ D25EE27BA73B3DDFAD7B5E69 /* Buffer.cpp */,
+ BEE9D1AB70849A09A9122342 /* CollocatedRequestHandler.cpp */,
+ 1D29625E4A3FBB59DF59537D /* CommunicatorI.cpp */,
+ 51BE38EAB81D4BAB59984CEA /* Cond.cpp */,
+ 761BD64C7E0974FFA525CCA9 /* ConnectionFactory.cpp */,
+ 3EF4BD416FEEEA65585C8FA8 /* ConnectionI.cpp */,
+ 28E35D2DCB8C267F2653242F /* ConnectionRequestHandler.cpp */,
+ F24C5A3A5C571B012806F8C5 /* Connector.cpp */,
+ C8C4EC7F377638ACA3789243 /* ConnectRequestHandler.cpp */,
+ 5B7E8916B8CA08D3239C9525 /* CountDownLatch.cpp */,
+ 3D27803EEB8E05AA2872DC0F /* DefaultsAndOverrides.cpp */,
+ 78F0327446EEFAE7C7472E34 /* DispatchInterceptor.cpp */,
+ A69A2EB1087C09983D0E3EEC /* DynamicLibrary.cpp */,
+ E371D78131705C17C63946A8 /* EndpointFactory.cpp */,
+ 0A8216F3431AAC7A8C47ED17 /* EndpointFactoryManager.cpp */,
+ 04E8688B1F6178675968991F /* EndpointI.cpp */,
+ 639FE31C5F3B993BBA0809FD /* EventHandler.cpp */,
+ C124F0D45B6275831BF5F438 /* Exception.cpp */,
+ D8DD61CBFBE4E12B6E30E9C4 /* FactoryTable.cpp */,
+ F6E486D7CED1187CCB73012C /* FactoryTableInit.cpp */,
+ 4BA8674CBDF25012A707605D /* HttpParser.cpp */,
+ 9BEB059DD01E8DA0D5DD2098 /* IconvStringConverter.cpp */,
+ 96E21902D516EFCA981AE170 /* ImplicitContextI.cpp */,
+ 4F535FC2464D55C8896B679A /* Incoming.cpp */,
+ 2D1907C2D29A0010AACB3DBB /* IncomingAsync.cpp */,
+ 26D19B8F44761D7F15D55351 /* Initialize.cpp */,
+ A6CDAB227924D0610F81AD01 /* InputStream.cpp */,
+ A50EFAADF3111E3694A86697 /* Instance.cpp */,
+ 7DDEC3707E1BCF1F01D4E481 /* InstrumentationI.cpp */,
+ D382963A6D341D8AB96B2F96 /* IPEndpointI.cpp */,
+ BF9D92749FA6F9B5FE652C45 /* LocalObject.cpp */,
+ D8565E6799EC944D42F00DB9 /* LocatorInfo.cpp */,
+ 6AB36D857DF0F81C4D5594C6 /* LoggerAdminI.cpp */,
+ AEDCB1E205F0A6AD13A75CB1 /* LoggerI.cpp */,
+ EB9423AA60DB5CF08094DAF7 /* LoggerUtil.cpp */,
+ BED0B487712EEE03615C9CB3 /* MetricsAdminI.cpp */,
+ 3D6906B8A17903ED8A46AB4F /* MetricsObserverI.cpp */,
+ C3211C9FB66D58C1BDB91C18 /* Network.cpp */,
+ 004AC667D8AC449AF8D18665 /* NetworkProxy.cpp */,
+ AA2734A6625328B15E08346A /* Object.cpp */,
+ 3503F3A5CCF7376BD4A00DB2 /* ObjectAdapterFactory.cpp */,
+ A49E88A35399266906B635CE /* ObjectAdapterI.cpp */,
+ E9D679F5465C4EB73106C5AC /* ObserverHelper.cpp */,
+ FA49A1EA8A8746AE458F2C18 /* OpaqueEndpointI.cpp */,
+ 05BCAE0ED88B21DCC5FF26A1 /* OSLogLoggerI.cpp */,
+ 2AADDF310CC1F8D9621EA843 /* OutgoingAsync.cpp */,
+ 5E906A6A3B1927465B53AA27 /* OutputStream.cpp */,
+ BF0F61C0C43F357F80205B2F /* PluginManagerI.cpp */,
+ 258DAA9E0D1E1ECB4B65ED80 /* PropertiesAdminI.cpp */,
+ B919B9BC0B3EAFB59DE62C2C /* PropertiesI.cpp */,
+ 944277575906253E2D264529 /* PropertyNames.cpp */,
+ A30F25D651F58222C077DC00 /* Protocol.cpp */,
+ A78754795E4B389E082CC44F /* ProtocolInstance.cpp */,
+ ABC01710A16129B2F462DF4B /* ProtocolPluginFacade.cpp */,
+ BBB636E7C5AD8884DF982486 /* Proxy.cpp */,
+ C4A666841400DD55C4BC753D /* ProxyFactory.cpp */,
+ B013B93E5986A1FCF9F78DAB /* Reference.cpp */,
+ ADDAA7048CCBFB5590515DF1 /* ReferenceFactory.cpp */,
+ 027BBF959E6AF6CDD5006D5F /* RegisterPluginsInit.cpp */,
+ 4AEAEA1C49B0E4F1F69EF841 /* RequestHandler.cpp */,
+ DDFDD649342AB148C5437BA5 /* RequestHandlerFactory.cpp */,
+ 3A1C67939300D984A3E2AD68 /* RetryQueue.cpp */,
+ 1B618430EB6F5FD497FB0DDB /* RouterInfo.cpp */,
+ 6B15656C95570248A5598ADE /* Selector.cpp */,
+ FB081EA6CBA368AB96ED96D6 /* ServantManager.cpp */,
+ 18D84E7BFF897CD18E15CC92 /* Service.cpp */,
+ 34FBA26DDA9D52224A61F465 /* SHA1.cpp */,
+ DDFA593815E37A8E3222D63E /* SliceChecksums.cpp */,
+ AD045F681FB9F088DC230E0F /* SlicedData.cpp */,
+ 931F3380F15851A31DB21B98 /* StreamSocket.cpp */,
+ 5E338C63E5506C4DD6F7B043 /* StringConverterPlugin.cpp */,
+ 20D7939D93CC5A16B157838A /* SysLoggerI.cpp */,
+ F74EBBC0FF989CCB80A6CE4F /* SystemdJournalI.cpp */,
+ AF39992CCB6F0C95231E7542 /* TcpAcceptor.cpp */,
+ 2404C7AD8DEA6F29CF5127EC /* TcpConnector.cpp */,
+ 39AAC6533C866ED8BA4C5DDA /* TcpEndpointI.cpp */,
+ 41F920720773452A5300D74A /* TcpTransceiver.cpp */,
+ 54A1937AF2CAB630AF745D24 /* Thread.cpp */,
+ DDB4DD346430D46FA6ECB82A /* ThreadPool.cpp */,
+ 7EB1201F991663DB27D5F416 /* Timer.cpp */,
+ F9C4BD7AD24E3017193C86F9 /* TraceLevels.cpp */,
+ 5162164224A97A02EEBAB4C5 /* TraceUtil.cpp */,
+ 9BE6BACEC2F33E91F4B617FB /* Transceiver.cpp */,
+ 7CD8FF49C945CAB4E0CDBAC9 /* UdpConnector.cpp */,
+ A49D7EF11617FD2B8DD7C45F /* UdpEndpointI.cpp */,
+ 3CF321DBB41A7E378EDBDE46 /* UdpTransceiver.cpp */,
+ D90E5E4A4506E4827832F9B8 /* Value.cpp */,
+ 27C783DC4191F70386A77532 /* ValueFactoryManagerI.cpp */,
+ 4E6F24A92F34BF28AB3B74C9 /* WSAcceptor.cpp */,
+ 9B240838C3B7EC5098985F9A /* WSConnector.cpp */,
+ 47A28B22A642C985FFB853F7 /* WSEndpoint.cpp */,
+ 4F9A362F07BFA44C1967BB23 /* WSTransceiver.cpp */,
);
- name = inheritance;
+ name = Ice;
sourceTree = "<group>";
};
- 8DF66D2E4CF245CA82CDD7F6 /* timeout */ = {
+ 8C1AEBEE7A4574E7531D9D14 /* Frameworks */ = {
isa = PBXGroup;
children = (
- 30EFA157E8237328FE7BBC82 /* AllTests.swift */,
- C4BA3625B23FF8B62705AFE7 /* Client.swift */,
- DC2AD126C492934CEB62BD83 /* Server.swift */,
- FA07C456CDC45581C13A3139 /* Test.ice */,
- 93FE3BB13A699CC144FAE518 /* TestI.swift */,
+ BFA9FA2BA8F2C4A27DFF580F /* iOS */,
+ 30623316E8FE0CC4C8DB7B8B /* OS X */,
);
- name = timeout;
+ name = Frameworks;
sourceTree = "<group>";
};
- 8EB63D2E07ADF14C94677330 /* IceSSL */ = {
+ 8FCA5BDB1BC4200AF1887C57 /* timeout */ = {
isa = PBXGroup;
children = (
- 8D032685700F557C2A42FC11 /* AcceptorI.cpp */,
- 99666CECEA6438765B394579 /* CertificateI.cpp */,
- D9FD8EEEC96A3E1539F3ED89 /* ConnectorI.cpp */,
- 8A06049A48F122A4755875A1 /* EndpointI.cpp */,
- ADA3BC4A8C6D8692B2DF2AA9 /* Instance.cpp */,
- 9F3677CB2FA10D16B41580F8 /* PluginI.cpp */,
- 91BD324C4B2EF75A964F7C98 /* RFC2253.cpp */,
- D4A07ED7D698A3B54594C912 /* SecureTransportCertificateI.cpp */,
- 061B78B43B4D93F17EE8EA1F /* SecureTransportEngine.cpp */,
- 6856EAB3EE7EA36D427CBC6B /* SecureTransportPluginI.cpp */,
- 085ADF4042B82804E463AD53 /* SecureTransportTransceiverI.cpp */,
- 51AADD84F9FA058A6B272117 /* SecureTransportUtil.cpp */,
- 376FEFA66EA60F109FCF6D7D /* SSLEngine.cpp */,
- 5A039512AF1CC9B8A5825882 /* TrustManager.cpp */,
- 6272F7EF8D6AB7F8554B4EF5 /* Util.cpp */,
+ 6A606916AA8B15138B915115 /* AllTests.swift */,
+ EB1123A2A1E029BB32271A16 /* Client.swift */,
+ 9FC4531AA749DAF419FE26EB /* Server.swift */,
+ 76440BF69CFBB7BA8615EAAE /* Test.ice */,
+ 60A75D69BF7BCC8427A97577 /* TestI.swift */,
);
- name = IceSSL;
+ name = timeout;
sourceTree = "<group>";
};
- 9026270C08C5CF02B99A9F26 /* scope */ = {
+ 91765D4B2CE715349CE8D389 /* inheritance */ = {
isa = PBXGroup;
children = (
- CA74DA0687BFE8C109976FF5 /* AllTests.swift */,
- 1388C42229ECE520D4DE4E0A /* Client.swift */,
- 04A46D91D6CD644BB8B5950A /* Server.swift */,
- 9FD432169D0F2D2F20892D4D /* Test.ice */,
- B224AB6DD347E466648E1E0A /* TestI.swift */,
+ 7F6090BCC46A202A68BBF77D /* AllTests.swift */,
+ 0507C0145EE5B124FE90FA6E /* Client.swift */,
+ 214166CE121F3A29265D1D8C /* Collocated.swift */,
+ 42D78FE28A5FD6909B09171E /* Server.swift */,
+ 3D439C008667EFC7662E935F /* Test.ice */,
+ 7A4851EF0D876EA33F2F0806 /* TestI.swift */,
);
- name = scope;
+ name = inheritance;
sourceTree = "<group>";
};
- 92A7F1DE1074B77636C429F2 /* slicing */ = {
+ 94A3A9489992734321267DAB /* src */ = {
isa = PBXGroup;
children = (
- 73AC311AAED543A1C3E8A14E /* exceptions */,
- C29834FC57F861316FA06DE0 /* objects */,
+ 144AAEEFB5DE28AE2AB79445 /* Glacier2 */,
+ 886541E8D699CBCD5884C172 /* Ice */,
+ 23C844C6CEF90E294A100A68 /* IceGrid */,
+ 13D4C0187A8F07A42DFABC64 /* IceImpl */,
+ BD8909D9EC7C57A52C8C4351 /* IceStorm */,
);
- name = slicing;
+ name = src;
sourceTree = "<group>";
};
- 94A7501D3C1EFE0A6BE7C2AF /* services */ = {
+ 96B29808688289C6A15A8744 /* Ice */ = {
isa = PBXGroup;
children = (
- 48274B4B5C7A372D63FBDBDD /* Client.swift */,
+ F9B270E39D3B1D84A8E6B986 /* BuiltinSequences.ice */,
+ 326D898FED70991AC1BA0347 /* Communicator.ice */,
+ DC58856E78104FC6C0F9AA28 /* CommunicatorF.ice */,
+ A06AC0921E10B63A1656AD61 /* Connection.ice */,
+ 4CC8D93A3FC8AF9E0BB609FA /* ConnectionF.ice */,
+ 477E91A1197B5830761631C1 /* Current.ice */,
+ A89C6CB51DCAC3F757EE49A7 /* Endpoint.ice */,
+ B975A8E910F85BE0F8996659 /* EndpointF.ice */,
+ 623A2AA62A0FA760224602DF /* EndpointTypes.ice */,
+ F846257F8F86D75E994D2BA5 /* FacetMap.ice */,
+ 02CAE11517F65F36BB6B3CC1 /* Identity.ice */,
+ 735AEA3176650E2CB5CF4402 /* ImplicitContext.ice */,
+ 69E0E1E31F168819C07BBCE7 /* ImplicitContextF.ice */,
+ FF801C186E03BB2EBD80CC72 /* Instrumentation.ice */,
+ 316AF622F0283CDC19C52E76 /* InstrumentationF.ice */,
+ 2571F704974BBB39DF54E196 /* LocalException.ice */,
+ 3EE292939C43A0B9A8B787D7 /* Locator.ice */,
+ 88362A8D0FC487784FB0A1F1 /* LocatorF.ice */,
+ 127FA99F1F575E391D24A800 /* Logger.ice */,
+ 1A6072E86A263FC327B1F44C /* LoggerF.ice */,
+ A214ABFAF9474F81CDEB4D9D /* Metrics.ice */,
+ 431FCA1AB962B80BF654B3D0 /* ObjectAdapter.ice */,
+ 6D5FF83D9BB6FCF48B42C981 /* ObjectAdapterF.ice */,
+ 5A5BCF69097F9B6FD153B8FE /* ObjectFactory.ice */,
+ 1C3E9C2120573ABEE7328084 /* Plugin.ice */,
+ 059160A9429AADF7083C704C /* PluginF.ice */,
+ CE1278569FF626BFD7243082 /* Process.ice */,
+ C35F0E57B69EDEFC5E944EBC /* ProcessF.ice */,
+ D611E5DADBB8DF69D3A0E64C /* Properties.ice */,
+ C84F7EAC0F5791E7D09AB072 /* PropertiesAdmin.ice */,
+ 865CA76FA57E281F305229A8 /* PropertiesF.ice */,
+ D8026643E397138CD24E9782 /* RemoteLogger.ice */,
+ B0308FF4DA8796949079382F /* Router.ice */,
+ A8F736DDD2D36B64200A0023 /* RouterF.ice */,
+ 2AC0FE6725FBB1C2DC5A9E78 /* ServantLocator.ice */,
+ 9800A938F2930FC734B98F4D /* ServantLocatorF.ice */,
+ C784636985C065D20545F5BE /* SliceChecksumDict.ice */,
+ 57017F902B7686C7579A7648 /* ValueFactory.ice */,
+ 7603D7C27853E868765956CA /* Version.ice */,
);
- name = services;
+ name = Ice;
sourceTree = "<group>";
};
- 95090CB41D714BFC32B7F8E9 /* configuration */ = {
+ 9D690393D73C851D462B84AD /* facets */ = {
isa = PBXGroup;
children = (
- 6D5813108D63FD32A1C3EF34 /* AllTests.swift */,
- 2ACDB6B6A5E97650FDC72203 /* certs */,
- C86D9EB201376B093A888135 /* Client.swift */,
- 82A629797B7B8BB12073531E /* Server.swift */,
- 172906A275B3BCFD142CB7F0 /* Test.ice */,
- 0F0FD20AA29FA651CD5E40BA /* TestI.swift */,
+ A39829413634597ADED6AABD /* AllTests.swift */,
+ 664EA396BB43EE3C105012F9 /* Client.swift */,
+ E89A23CFF389FE40C9557340 /* Collocated.swift */,
+ 547CCE4F73338900D09AA8E6 /* Server.swift */,
+ CF62CB725A11CEB7E4573361 /* Test.ice */,
+ 158A84D614CB3E2C3AC2A5E3 /* TestI.swift */,
);
- name = configuration;
+ name = facets;
sourceTree = "<group>";
};
- 95373DEE132506A328E1A29B /* invoke */ = {
+ 9E2325236C370882502FFA88 /* IceSSL */ = {
isa = PBXGroup;
children = (
- EDE8895B8D3A8C48B371CB17 /* AllTests.swift */,
- 06D16CE3A5EE261D52409F5D /* Client.swift */,
- D287C5BD715B37D926214E22 /* Server.swift */,
- 7DE81360A81D49D120B6B4B5 /* Test.ice */,
- 7DF1B0A92A1D0B1F6195641C /* TestI.swift */,
+ AEAFDA8C2CCF797BD68DBB9E /* configuration */,
);
- name = invoke;
+ name = IceSSL;
sourceTree = "<group>";
};
- A194C9D6B67134F32CD3525A /* slice */ = {
+ ABAAB54716334FD3E14F8FC5 /* udp */ = {
isa = PBXGroup;
children = (
- 281FAAF0D422CDAFCD3D6F5D /* Glacier2 */,
- 453A4EC0E6870B06A348F3BC /* Ice */,
- 55908B68FEF8E45962105287 /* IceDiscovery */,
- 6027890B9EDA9AFED33361A2 /* IceGrid */,
- 562436B5E247E0784962BAFF /* IceIAP */,
- C5A702F98B48145219290563 /* IceLocatorDiscovery */,
- 59C4D7066505638602996603 /* IceSSL */,
- DCAC434690FDDEFE19CF9588 /* IceStorm */,
+ 69306E74AADE3D02FE4E60EF /* AllTests.swift */,
+ E6B2797A8849E5E72C831841 /* Client.swift */,
+ 7A634FA66859D5F3AE6E6123 /* Server.swift */,
+ 89D2FAA92C70159399181D22 /* Test.ice */,
+ 93C2C1B12FB6F74B85A74AB8 /* TestI.swift */,
);
- name = slice;
+ name = udp;
sourceTree = "<group>";
};
- A551D4111909C7B81EFBF6E0 /* admin */ = {
+ ACB2546B7206EAC0D8452FF3 /* defaultServant */ = {
isa = PBXGroup;
children = (
- 70D8F4B545E7DB529C8B6466 /* AllTests.swift */,
- B586192AD27D885AC465F3CE /* Client.swift */,
- 446EFF7ADC4B5939C4305AAC /* Server.swift */,
- DD8BE18EC250A1A64787067E /* Test.ice */,
- AED68CB5181C8322535C8B0F /* TestI.swift */,
+ 8904DE3DE3816938E87F46E4 /* AllTests.swift */,
+ A17A6842456B978F70B5DFDD /* Client.swift */,
+ C6088D6E4F2A47AADB35EB03 /* Test.ice */,
);
- name = admin;
+ name = defaultServant;
sourceTree = "<group>";
};
- AEA1E89E6A27E4AC345035B0 /* exceptions */ = {
+ AEAFDA8C2CCF797BD68DBB9E /* configuration */ = {
isa = PBXGroup;
children = (
- 91D514977778BE3BB6D79A7B /* AllTests.swift */,
- FC1CAC41F32D3AFB526FA69F /* Client.swift */,
- A982546A8BFEC96551798AFC /* Collocated.swift */,
- CCC228ED34AB80D8D5D263C0 /* Server.swift */,
- 24040ECF3C403E5A3612408E /* ServerAMD.swift */,
- A34C37443D800851EE183689 /* Test.ice */,
- 9DBAFB63AB99E112958DDC68 /* TestAMD.ice */,
- C0B463F676E7D216881CBD82 /* TestAMDI.swift */,
- C9F567597B3E2656038F84F4 /* TestI.swift */,
+ B99EAAC5667070FF5F7B6FF5 /* AllTests.swift */,
+ DEE5B91323EE4E6BAEF5C730 /* certs */,
+ FAE2B9B108DC7C8C6DF480AC /* Client.swift */,
+ 6981AC9F0A8894E8A40D6C55 /* Server.swift */,
+ EB489D1E2A8C2CF17A2F4330 /* Test.ice */,
+ 8D356FF229AB189BEC612EDB /* TestI.swift */,
);
- name = exceptions;
+ name = configuration;
sourceTree = "<group>";
};
- AF0F3EC4160F722FE0709C8D /* IceStorm */ = {
+ B5FE2CD84E795DBF3B640403 /* servantLocator */ = {
isa = PBXGroup;
children = (
- AA6BB836B7BFC1BFB90E33B7 /* IceStormSwift.h */,
- 73B967E49FF30C3D96F002C6 /* Info.plist */,
+ D2FB5FDA9DE852FBB2B10936 /* AllTests.swift */,
+ D1BF1FBD5B99791A16DEA1E4 /* Client.swift */,
+ 18C83E8AB5E723D20CA0B89D /* Collocated.swift */,
+ 1E8A8FCD073B502C50AF409E /* ServantLocatorI.swift */,
+ 64EE2C5503AD46C98E012E96 /* Server.swift */,
+ 3E4DA6E69B6D870D4106D05D /* ServerAMD.swift */,
+ 6E2A51B80695CB7D1A25AA61 /* Test.ice */,
+ 8C1E877ACC0DA38CB700CA31 /* TestAMD.ice */,
+ F0DEFC193F3F347850C430F6 /* TestAMDI.swift */,
+ 7BF026BDB77BB9A18DB05349 /* TestI.swift */,
);
- name = IceStorm;
+ name = servantLocator;
sourceTree = "<group>";
};
- B42E480907F9234500CE4CF5 /* escape */ = {
+ BC0527182A1ADAE99F46AAC5 /* retry */ = {
isa = PBXGroup;
children = (
- C16D3B2B5C0920A104C079FF /* Clash.ice */,
- 889F33329EA3D8479FFC0479 /* Client.swift */,
- 0CF1A05BFD1DFE952E400A29 /* Key.ice */,
+ A38EB9C90EBFC403A05E7661 /* AllTests.swift */,
+ 563D36E1F39068302C64D483 /* Client.swift */,
+ 7A5FC09580DFEDA42502BB46 /* Collocated.swift */,
+ 7BB578F04F513F6B307DEBE1 /* Server.swift */,
+ 481882F90E5A74D3D85F8CED /* Test.ice */,
+ 1F04CA1BA60A991B7A79D8D2 /* TestI.swift */,
);
- name = escape;
+ name = retry;
sourceTree = "<group>";
};
- BC66580592247EE25E707972 /* ios */ = {
+ BD8909D9EC7C57A52C8C4351 /* IceStorm */ = {
isa = PBXGroup;
children = (
- 8D864A3AEB83284835B73866 /* Notifications.mm */,
- 002A1F93B04C21ED5D7D0A59 /* StreamAcceptor.cpp */,
- C9BA1FB81A16EBA643FD14FD /* StreamConnector.cpp */,
- 57B0874282316DB417FD6AAD /* StreamEndpointI.cpp */,
- EAE9EBCEE41A733F7CEE2C57 /* StreamTransceiver.cpp */,
+ F9FDFD9567E3EB23F567B412 /* IceStormSwift.h */,
+ 9376FF7A596A2F29A2D89461 /* Info.plist */,
);
- name = ios;
+ name = IceStorm;
sourceTree = "<group>";
};
- C2964803E45629907FD2317F /* enums */ = {
+ BFA9FA2BA8F2C4A27DFF580F /* iOS */ = {
isa = PBXGroup;
children = (
- 9C54D77862357F5D5EBB46E3 /* AllTests.swift */,
- DB6F34328505B8307EF4E2DC /* Client.swift */,
- 2BD61767B51929724F9CE9AF /* Server.swift */,
- B3015F5A4D587FFE1F446C5E /* Test.ice */,
- 88C3EA2CCA4EBF7644C76309 /* TestI.swift */,
+ 0ECCC9FEE7E7376D4D76BB6D /* CFNetwork.framework */,
+ AE8272DC832BA01976A54077 /* ExternalAccessory.framework */,
+ 7D30BA86A3469DB7F345073D /* Foundation.framework */,
+ 5312EB0C18E1592B61C470D3 /* PromiseKit.framework */,
+ 3DCFEE5E8FC3124CDFAE7671 /* Security.framework */,
+ F086327C7A363E6F817C7458 /* UIKit.framework */,
);
- name = enums;
+ name = iOS;
sourceTree = "<group>";
};
- C29834FC57F861316FA06DE0 /* objects */ = {
+ C19139377C7B7F33E8F99345 /* IceSSL */ = {
isa = PBXGroup;
children = (
- 47F5CF26C0AE1F89B6636870 /* AllTests.swift */,
- 0DCD33B375F6BD8CCFDC4458 /* Client.swift */,
- 8744E07211FFA1299AF62ED5 /* ClientPrivate.ice */,
- DC36BC6D1565E1D09AFAE38F /* Server.swift */,
- 540F2D25E70EBD9203E8BBB7 /* ServerAMD.swift */,
- C0CD22B04F5BAB9D3EC504A9 /* ServerPrivate.ice */,
- 4B9C7AF49DDB6092DD82BC68 /* ServerPrivateAMD.ice */,
- 0DDDA40A28D90D0803610374 /* Test.ice */,
- A52B06D312D79F5422D0081A /* TestAMD.ice */,
- BEDDC5B3EF92448FC0068999 /* TestAMDI.swift */,
- CAA48833BF8F037D16C27B2F /* TestI.swift */,
+ 4CE1EEF3C86CED79525EE458 /* ConnectionInfo.ice */,
+ E97D033BADA38AF9402AA464 /* ConnectionInfoF.ice */,
+ 937B8FBC13804AC35D672463 /* EndpointInfo.ice */,
);
- name = objects;
+ name = IceSSL;
sourceTree = "<group>";
};
- C5A702F98B48145219290563 /* IceLocatorDiscovery */ = {
+ D36C3EC38C40E08FC05505FF /* location */ = {
isa = PBXGroup;
children = (
- 1B2834C54144051028FC3E38 /* IceLocatorDiscovery.ice */,
+ 12065C41856FEC7169ECD5A0 /* AllTests.swift */,
+ AB0075088BD497CEE1D89780 /* Client.swift */,
+ 2876A819259365ACA41C9819 /* Server.swift */,
+ EECAB125E8C93688689DF18E /* Test.ice */,
+ 7C13F2A57B3D5B43F865E99D /* TestI.swift */,
);
- name = IceLocatorDiscovery;
+ name = location;
sourceTree = "<group>";
};
- C6CE493162F0CAA0A1C4F091 /* IceLocatorDiscovery */ = {
+ D55332ACB130A346CD00E019 /* IceDiscovery */ = {
isa = PBXGroup;
children = (
- E3CDF6C5A2CDF07A6BFA1616 /* PluginI.cpp */,
+ CEE9A6376344FEB128D483D1 /* LocatorI.cpp */,
+ DFED2A261FCD105E634372CA /* LookupI.cpp */,
+ 89138A69A6071FF550471EA2 /* PluginI.cpp */,
);
- name = IceLocatorDiscovery;
+ name = IceDiscovery;
sourceTree = "<group>";
};
- D36C4F1F9C805DDA325B544B /* proxy */ = {
+ D75A67AC56E93EEFEE877E42 /* objects */ = {
isa = PBXGroup;
children = (
- 361E8C29CA5E426DB25B7890 /* AllTests.swift */,
- 65102DC69C890429DD83B912 /* Client.swift */,
- C9CAE747331B4404A63FE18A /* Collocated.swift */,
- 813816EAFE765EBDEB00023C /* Server.swift */,
- AC9D24A849C7A636BD399949 /* ServerAMD.swift */,
- 4A12F6C795182A146C127E41 /* Test.ice */,
- 6222468F2E3276D9AE70AA72 /* TestAMD.ice */,
- FE4C4F56D4DAB1733638A5C6 /* TestAMDI.swift */,
- E825C7A580DEC5B44856C0FB /* TestI.swift */,
+ 2305AE83E13AEC1F82A891A4 /* AllTests.swift */,
+ 7FC76B1B464A5AC2A20554FF /* Client.swift */,
+ CC5F7C4F2F0D95F24CC5DD66 /* Collocated.swift */,
+ 710150F5EEF490D2E9D93DA6 /* Forward.ice */,
+ 1A4FE73B5B6FDF4F56912AEF /* Server.swift */,
+ BA71B51000572E66659A3672 /* Test.ice */,
+ 700A316334B910A09101FE84 /* TestI.swift */,
);
- name = proxy;
+ name = objects;
sourceTree = "<group>";
};
- D8ADFAF75206CC0A400F4BC2 /* OS X */ = {
+ DB1BFD812C22BF95664FB67C /* IceDiscovery */ = {
isa = PBXGroup;
children = (
- C74909BB863CC39AAC549FE3 /* Cocoa.framework */,
- 74396E017957EAD78E8BB63F /* PromiseKit.framework */,
- 996ABE607D675178248C81FC /* Security.framework */,
+ B7D8B9A2D605FCFFC786AD11 /* IceDiscovery.ice */,
);
- name = "OS X";
+ name = IceDiscovery;
sourceTree = "<group>";
};
- DCAC434690FDDEFE19CF9588 /* IceStorm */ = {
+ DEEA10006DB488A9504D2D74 /* acm */ = {
isa = PBXGroup;
children = (
- FAD293D61093C51F5D7F2162 /* IceStorm.ice */,
- 94296D6FA0B4EAD77524CA74 /* Metrics.ice */,
+ F5A9831CFF2692F9637C5810 /* AllTests.swift */,
+ 805B62B23CF07AA890D408D4 /* Client.swift */,
+ 29C0938AAE0BAC68179CBCB0 /* Server.swift */,
+ 4DCAFB642425E93AF71FECCD /* Test.ice */,
+ B69DBDAE6349C71437BBA75F /* TestI.swift */,
);
- name = IceStorm;
+ name = acm;
sourceTree = "<group>";
};
- EDD96890F7603CCBFAE8985D = {
+ E7266CEDFAAE92B6358E0137 = {
isa = PBXGroup;
children = (
- 2F48CCEB8DCFB46E5D2E8B64 /* cpp */,
- 5067E51BE412C597DF115CDC /* Frameworks */,
- 60D92721BAE0511E67037F91 /* Products */,
- A194C9D6B67134F32CD3525A /* slice */,
- 0D359FFD96337FF2CF35AE8C /* src */,
- 8122A0D7C047DA43EC99DD41 /* test */,
+ 6FB1A63271BB72F1ABA39275 /* cpp */,
+ 8C1AEBEE7A4574E7531D9D14 /* Frameworks */,
+ 3EBBBDC564C075DD66B0B816 /* Products */,
+ 78FEA9D93B69A1289B11F1E0 /* slice */,
+ 94A3A9489992734321267DAB /* src */,
+ 2B4BEF3671913D48F66654A3 /* test */,
);
sourceTree = "<group>";
};
- F7E006FEE9977C1B1A562211 /* interceptor */ = {
+ EE0833641231AC8B896165EA /* objects */ = {
isa = PBXGroup;
children = (
- 05F39D9B55130C164A5DD5F3 /* Client.swift */,
- 742F61019388E32D5A1F50AA /* Test.ice */,
+ EF34296B086BFC873E4A5647 /* AllTests.swift */,
+ 1E384C57B8AE41D5ADE5382E /* Client.swift */,
+ F1F5B981DE4101EBCFE749D6 /* ClientPrivate.ice */,
+ 4E053BDFB2F3B31DEA4FB8F3 /* Server.swift */,
+ 698F636B1C7F71C0D86FCEE2 /* ServerAMD.swift */,
+ 439CAA99857F58F11386EBC3 /* ServerPrivate.ice */,
+ DB620946367523497675CCEE /* ServerPrivateAMD.ice */,
+ F89A3B2AE050F821147BD7C6 /* Test.ice */,
+ 1FE6F0C53A155D2DE7E5858E /* TestAMD.ice */,
+ 0640D54D342A86B7F3F05698 /* TestAMDI.swift */,
+ AB89A20DB867709982778CC7 /* TestI.swift */,
);
- name = interceptor;
+ name = objects;
sourceTree = "<group>";
};
- F950871321B36F8F7F50D39C /* retry */ = {
+ F347318E53D4D96BE16235C3 /* IceIAP */ = {
isa = PBXGroup;
children = (
- 05962EAA5614E67971DE4579 /* AllTests.swift */,
- BB16C7E23D561A45A823E737 /* Client.swift */,
- 73F31FDC9B8AF9605CA88F5C /* Collocated.swift */,
- C81E1C63F2ECA36BFF45C065 /* Server.swift */,
- 8F0C2E31D1A2B60BC0B612B7 /* Test.ice */,
- 972219A24F2C5C5705191006 /* TestI.swift */,
+ AEF95184A3D897EAAA7AE4B5 /* ConnectionInfo.ice */,
+ 651858AC9B30DE6B2A8B0AA6 /* EndpointInfo.ice */,
);
- name = retry;
+ name = IceIAP;
sourceTree = "<group>";
};
- F9A5D3862315DDFEB3962763 /* iOS */ = {
+ F3F9A751DE0EE12740C1E5CE /* stream */ = {
isa = PBXGroup;
children = (
- 095EE31DB49AA69220A140AE /* AppDelegate.swift */,
- C7E63AE45231F2F2078ED04A /* Assets.xcassets */,
- 94855C851EE72D36CB469925 /* certs */,
- 286AC9F03F771730D5409FBD /* Controller.ice */,
- 1894208F6C1914A62E4E9BDC /* ControllerI.swift */,
- 8981DD5DCA70CBDB4DF515AB /* LaunchScreen.storyboard */,
- 65FF5D01B46A1B78D9156A2B /* Main.storyboard */,
- DB595DC33109E5DA276AC0DF /* ViewController.swift */,
+ A8419D8D5FA660838BE1BA93 /* Client.swift */,
+ CFCCC973BBC234DD5D28BE34 /* Test.ice */,
);
- name = iOS;
+ name = stream;
sourceTree = "<group>";
};
- FCD85B7F2FEEB7DD86E57AD5 /* defaultServant */ = {
+ F47B6953679235F9514B5855 /* scope */ = {
isa = PBXGroup;
children = (
- 0BAE10E904FEE12EA4322283 /* AllTests.swift */,
- 4087F86ADF581D0B2D02509D /* Client.swift */,
- 11143767904B7C97DBFD073E /* Test.ice */,
+ 31FD0E8873503AA6351BA289 /* AllTests.swift */,
+ DEC9D0420245199FB5BBD345 /* Client.swift */,
+ F1F77E560368761492402EA3 /* Server.swift */,
+ 56047CC0A74EAE9A631A9FD3 /* Test.ice */,
+ CC018AED0F8FB003F4ED0C8D /* TestI.swift */,
);
- name = defaultServant;
+ name = scope;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
- 02678C742AF7F97E972F13A7 /* Headers */ = {
+ 05BBB22AB8A71AF47BD3F5DB /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
- 2ED1EDD9FDCF2D47A51C7B69 /* IceStormSwift.h in Headers */,
+ C2700DF943BDB2417C54F986 /* IceGridSwift.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 02D77B977324CEB7362414C9 /* Headers */ = {
+ 189A149759728A345F04476D /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
- 3885FFE7EC326B47D84A8206 /* IceGridSwift.h in Headers */,
+ F5B140AA3FA7A33CEE34BDDF /* IceGridSwift.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 2496DF1B314068A1EC1D0396 /* Headers */ = {
+ 20F20E632335A7FDB50086DA /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 28C70B7271551774D408191D /* Headers */ = {
+ 2F552D13CFD73AA3D3434E06 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
- 7A825BF9546A11230EDCFF29 /* IceGridSwift.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 3F5675CA29BF0733FE9A0E9E /* Headers */ = {
+ 46086259263420DEC2369529 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
- 98E5B16EC582CA869C935C7D /* IceSwift.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 3F5A93B3F39D973CEB00139A /* Headers */ = {
+ 2D1562D62D3D463F8C3E523B /* AdminFacetFactory.h in Headers */,
+ D5C19C423062D83E7DCDEDCC /* BlobjectFacade.h in Headers */,
+ 105FE0A07CE80F6364486D85 /* Communicator.h in Headers */,
+ D95EE1448F8FE2739B1C2110 /* Config.h in Headers */,
+ D49EB103A66A809820B7EF07 /* Connection.h in Headers */,
+ A88E4F8AF590CB3058B6C4AD /* Convert.h in Headers */,
+ 27F24C06CB4AC1938881B55F /* Endpoint.h in Headers */,
+ ECFB3237F6F2C8CB710EA4E8 /* Exception.h in Headers */,
+ C2FDCE73121F4D38AD683A81 /* IceImpl.h in Headers */,
+ 17812534818F23BFE3E8AFB8 /* IceUtil.h in Headers */,
+ 01E97AF8DE2D8214633742A1 /* ImplicitContext.h in Headers */,
+ 46907D2978679BAB6688CCD0 /* LocalObject.h in Headers */,
+ AC7151DB9910F2DE41D84A35 /* Logger.h in Headers */,
+ C79D95D650DC4769B77AE67C /* LoggerWrapperI.h in Headers */,
+ 72CAEA4C6158B01DEF413AAF /* ObjectAdapter.h in Headers */,
+ EEF0DC8F30E903E928DB7715 /* ObjectPrx.h in Headers */,
+ 7C634A21971EA48F10C178A0 /* OutputStream.h in Headers */,
+ 576B168097EE583597085246 /* Process.h in Headers */,
+ EA19FBB05B1F7F2A74867843 /* Properties.h in Headers */,
+ 5A6BC57CF744F2701C2436CD /* PropertiesAdmin.h in Headers */,
+ E6088AAF7A75F7EDA1F956E8 /* TraceUtil.h in Headers */,
+ 478B84D29DB6E38B98204BA3 /* UnsupportedAdminFacet.h in Headers */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 5D5F9E4BD0F2D203BDE86206 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
- CBE6AC93DE32E57A21686246 /* Glacier2Swift.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4083D2403C013702F8B4B34F /* Headers */ = {
+ 6019CBDA342F08401D0F8861 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
- 81589CC7D54C9613E135278B /* AdminFacetFactory.h in Headers */,
- 9673C8E790CD6C1BBA803602 /* BlobjectFacade.h in Headers */,
- D1DBF45130DB1C04170072C9 /* Communicator.h in Headers */,
- 70028BBB8E930ECAF32F3596 /* Config.h in Headers */,
- 6B631830ACE16953A27F8760 /* Connection.h in Headers */,
- 78A7DA813FA4F84F99EA128D /* Convert.h in Headers */,
- 9133D23A530719E0746F4364 /* Endpoint.h in Headers */,
- DFE06E5CC2CF7E14FFA3ADFD /* Exception.h in Headers */,
- AFE83CFF55224B997C1285A1 /* IceImpl.h in Headers */,
- AB4F5E4D6BF589AB3A2280CF /* IceUtil.h in Headers */,
- 6F2327539355FC45EB1F9347 /* ImplicitContext.h in Headers */,
- D2614B9B53569928FE44536A /* LocalObject.h in Headers */,
- 46ABD7EEDBEE6E512AB16818 /* Logger.h in Headers */,
- B949923C9A6808EA9023E260 /* LoggerWrapperI.h in Headers */,
- EF513B2D6DD7578997310495 /* ObjectAdapter.h in Headers */,
- FFF99666324B03D9A92CF7BD /* ObjectPrx.h in Headers */,
- B0FA55BA8FC2CD1E6C6AF266 /* OutputStream.h in Headers */,
- 103A736DE168A09BB0E93548 /* Process.h in Headers */,
- 71604ADCD5D16A1B920D78C4 /* Properties.h in Headers */,
- 09251D573514ACD0BDD19081 /* PropertiesAdmin.h in Headers */,
- 33A1543A9492FB7057B32EEA /* TraceUtil.h in Headers */,
- 5152A5991175211E6A3F4FB5 /* UnsupportedAdminFacet.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 431FB335BCBF43A668CCEF9F /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- BBEB0C7539A8F20341252670 /* Glacier2Swift.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4B6A3B94AA3483E714BB8248 /* Headers */ = {
+ 6404D94C6E19D3FAA2E2DF25 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 546DDCBA064F2762DA5962E0 /* Headers */ = {
+ 699EDAAC3FEFBE0688BD1EA6 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
- 2AE219EDEF4B01F33A2765C2 /* IceSwift.h in Headers */,
+ 8536A53841A351F2018D14C0 /* IceStormSwift.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 5EC139AD6D65DA94D5DCE8A1 /* Headers */ = {
+ 6A07884FAC3D3A473BD8511F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
+ 748DA51801052238EEBDA100 /* IceSwift.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 5F3227C8AA2D3552CF2B84A5 /* Headers */ = {
+ 75EBDE3F80A4D5D5A8003536 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
- E1BABA6356AB57AE81B14364 /* AdminFacetFactory.h in Headers */,
- A969A0A31471D83E98E5EF74 /* BlobjectFacade.h in Headers */,
- 7D063EEF271A17689C3F80CD /* Communicator.h in Headers */,
- 1CE7FBC7A9F12F4AD7134449 /* Config.h in Headers */,
- 956C41E1539F1EF42B4580C9 /* Connection.h in Headers */,
- CAEF49B4EB4A0F1383D91E0D /* Convert.h in Headers */,
- AE59FFCCA692305CFFB7B02E /* Endpoint.h in Headers */,
- 59E19D00E2BF47717F936862 /* Exception.h in Headers */,
- BE25C54B34D0C140FD6841DB /* IceImpl.h in Headers */,
- 4F0FE96E61CE2750E99DB93A /* IceUtil.h in Headers */,
- FD0F7DC609980896110DE386 /* ImplicitContext.h in Headers */,
- 35E2EF7A615B052190B8CA10 /* LocalObject.h in Headers */,
- E023DA4A98E7744A881F3BB1 /* Logger.h in Headers */,
- F88EA1D91539FF0F471D3C15 /* LoggerWrapperI.h in Headers */,
- 15F2F5556E365DBC88FBFE00 /* ObjectAdapter.h in Headers */,
- 705280204DB4DFF6A35027CB /* ObjectPrx.h in Headers */,
- 68FB86D06E858E54BFB78225 /* OutputStream.h in Headers */,
- BB8A3010AAA973A78B80D900 /* Process.h in Headers */,
- D1A6B57AA71AFCBE18080BC9 /* Properties.h in Headers */,
- 2E723DB037CA3504A30A715B /* PropertiesAdmin.h in Headers */,
- 5D1E5AD36F75313883B50C39 /* TraceUtil.h in Headers */,
- 7386416904F42C08FDB2BA9B /* UnsupportedAdminFacet.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 76ED145CF83A0C27471F5F4D /* Headers */ = {
+ D2F8853747D126C97620B53C /* Glacier2Swift.h in Headers */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 7ECDF7A8207CCA9124106F09 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
- CA27A10C7B11977A7FACB98E /* IceStormSwift.h in Headers */,
+ C54DE890E97192D9C2D7DC59 /* IceStormSwift.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 99724C6BD430D5B7917D208E /* Headers */ = {
+ 8FBD46E14E4C740523FD1BED /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
+ 9B416309253292A3B114B64A /* IceSwift.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 9D6527FA944B454CDD88F1BE /* Headers */ = {
+ 9E2CC0B5EAC6750A75A24F1B /* Headers */ = {
+ isa = PBXHeadersBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ BE79F355022137CAC608E729 /* AdminFacetFactory.h in Headers */,
+ 724C3E75622F70FAE853E5A2 /* BlobjectFacade.h in Headers */,
+ DF3B9FC365FE593CCF2301F9 /* Communicator.h in Headers */,
+ 4655F2E445B2DA9701DE8F77 /* Config.h in Headers */,
+ 4D7D2F7738CECE5861623B68 /* Connection.h in Headers */,
+ 172A2411FCF704DC92922E3E /* Convert.h in Headers */,
+ AE7836404A338E5561E187FA /* Endpoint.h in Headers */,
+ 18020C701FB9B2C2E9759068 /* Exception.h in Headers */,
+ 94D00DE6CB1282E3B91AD4BF /* IceImpl.h in Headers */,
+ 57558E1ED8C8032A9E9BCFBD /* IceUtil.h in Headers */,
+ AE61D3C8B2985C86E5436999 /* ImplicitContext.h in Headers */,
+ 1726FF6651E77322D5B5B56D /* LocalObject.h in Headers */,
+ 1AC563F8501D294350B17302 /* Logger.h in Headers */,
+ 77E498EE85822E39876FAACC /* LoggerWrapperI.h in Headers */,
+ 9D7ACD4DF1A74C495F5C4B3F /* ObjectAdapter.h in Headers */,
+ BFBFDCD1A4CF741677CE4CA1 /* ObjectPrx.h in Headers */,
+ 8A31F7ADBF4F4B99BE50A5E4 /* OutputStream.h in Headers */,
+ 9D1AA2882E5A5B84C160D3E0 /* Process.h in Headers */,
+ F4994F8835BF91C6CA056117 /* Properties.h in Headers */,
+ C86687B60B783F099FEB5910 /* PropertiesAdmin.h in Headers */,
+ D51C085A0606FC73D28F534A /* TraceUtil.h in Headers */,
+ 510E51D17359CD2FBED299A3 /* UnsupportedAdminFacet.h in Headers */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 9EBF033B7E83A3001ABE6D89 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- CCDDCB4F595F2840A290070D /* Headers */ = {
+ AA540E14D564AD81A6EF3A6D /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- D53C19DBE52D5479767ABE5F /* Headers */ = {
+ AB483BD6973FA18F54C0F707 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- D698BD30C22D437BDEDEBD75 /* Headers */ = {
+ CCE8A912F3723A670ED12439 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- E7C70C881261CF6CE2324B54 /* Headers */ = {
+ DE937BBA063D7704578D57EC /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
+ 620E4EBD51C34498FB218D53 /* Glacier2Swift.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- EFC2AA7CFBA10AE3A88FACA2 /* Headers */ = {
+ E6503018927D8D425B344D26 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- F02932C30A8D023EFB4CC898 /* Headers */ = {
+ EC0E6C7D45A0CF4B70DCE283 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -7210,2334 +7312,2334 @@
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
- 076983A948FE64CF9ABD1844 /* IceLocation macOS */ = {
+ 0B20F023D2E1BC4B57915592 /* IceImpl macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 6231D9B65686EE22004E7E68 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */;
+ buildConfigurationList = 11BA451409C11B77116D10FC /* Build configuration list for PBXNativeTarget "IceImpl macOS" */;
buildPhases = (
- FD16BD168CA71263F5389B9A /* Sources */,
- 56598BBDE8405DDB0A627525 /* Frameworks */,
- C491292075C354286BBADBBF /* Resources */,
- 31203296664B31335C74B088 /* Swiftformat & Swiftlint */,
+ 9E2CC0B5EAC6750A75A24F1B /* Headers */,
+ BC6A385454C884C9DD3FB732 /* Sources */,
+ 383C3915C3A935DEC0774F84 /* Frameworks */,
+ AEC8A04AC45F718789136B09 /* Resources */,
);
buildRules = (
- 369E1B6E2249ED51B5D682C4 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceLocation macOS";
- productName = IceLocation;
- productReference = 0B4A2E3C7C18AD9170E2DFEC /* IceLocation.bundle */;
+ name = "IceImpl macOS";
+ productName = IceImpl;
+ productReference = A2EE54802BFD472CDFC02692 /* IceImpl.framework */;
+ productType = "com.apple.product-type.framework";
+ };
+ 0B9E7BE2574649A7DEAD1C1C /* IceUdp iOS */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 5357C3BCA05BAEEB881D2A12 /* Build configuration list for PBXNativeTarget "IceUdp iOS" */;
+ buildPhases = (
+ 29337C4A14A8C1D9F6FD6275 /* Sources */,
+ 4DFF5FBEB14B4CD81B9836C5 /* Frameworks */,
+ 5C8D1D89B27A8EDD3B92177B /* Resources */,
+ D9B98B20CB52320F19B1CC25 /* Swiftformat & Swiftlint */,
+ );
+ buildRules = (
+ DBBB69CBD85F54EB83928867 /* PBXBuildRule */,
+ );
+ dependencies = (
+ );
+ name = "IceUdp iOS";
+ productName = IceUdp;
+ productReference = 228DDCBD015FAE5B3571D90B /* IceUdp.bundle */;
productType = "com.apple.product-type.bundle";
};
- 0914A24DE1888840E5B162E7 /* Ice C++11 iOS */ = {
+ 11F37400E8E07989B6E1EC6B /* IceProxy macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = CB95316B94930906365B1106 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */;
+ buildConfigurationList = DA31AE610854CE4F88AC8266 /* Build configuration list for PBXNativeTarget "IceProxy macOS" */;
buildPhases = (
- E7C70C881261CF6CE2324B54 /* Headers */,
- 5CD8D33EF0E5ECFCEF5FD36C /* Sources */,
- 4C483D54845DB7027BA66AB6 /* Frameworks */,
+ D1FE0E9DAF4CD03B9D1BBD72 /* Sources */,
+ 8C46960B36CF69C25B82AFD2 /* Frameworks */,
+ 657AA3033812AE42797AB382 /* Resources */,
+ 63A9BE618A41845F769E2E2F /* Swiftformat & Swiftlint */,
);
buildRules = (
- 4275EEC75F99CD33A088218E /* PBXBuildRule */,
+ 8CD53738EFA944C839F43A5D /* PBXBuildRule */,
);
dependencies = (
);
- name = "Ice C++11 iOS";
- productName = "Ice C++11 iOS";
- productReference = B2D710C4A79835F70B72D08A /* libIce C++11 iOS.a */;
- productType = "com.apple.product-type.library.static";
+ name = "IceProxy macOS";
+ productName = IceProxy;
+ productReference = 499879837AB808E65E267110 /* IceProxy.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- 0CA791446BF1239097A4E060 /* TestCommon macOS */ = {
+ 12BB34202E09CE86EEA85292 /* IceSSL C++11 iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 01759426EF6365E3E3B20F14 /* Build configuration list for PBXNativeTarget "TestCommon macOS" */;
+ buildConfigurationList = 8E994D3FB6AE5A637FB76266 /* Build configuration list for PBXNativeTarget "IceSSL C++11 iOS" */;
buildPhases = (
- F02932C30A8D023EFB4CC898 /* Headers */,
- 83FFF380258A748B820E7AC3 /* Sources */,
- C3943259F07F580EC441B4AB /* Frameworks */,
- 20AC3A053AB3644BBFF2F205 /* Resources */,
- CCC778B132ED14AF17A9F30B /* Swiftformat & Swiftlint */,
+ 9EBF033B7E83A3001ABE6D89 /* Headers */,
+ 9B99240856F2F2C7905651D5 /* Sources */,
+ F7CBFE4C0F3C79B5E93A6B79 /* Frameworks */,
);
buildRules = (
- 4474DD2E782702B78AC7ABD7 /* PBXBuildRule */,
+ 03AC652771D6454A7E9F8A3F /* PBXBuildRule */,
);
dependencies = (
+ 6D6B90CF6E4C6A32A4ADC51D /* PBXTargetDependency */,
);
- name = "TestCommon macOS";
- productName = TestCommon;
- productReference = 4359B83DE0F2F129F8FD2E4D /* TestCommon.framework */;
- productType = "com.apple.product-type.framework";
+ name = "IceSSL C++11 iOS";
+ productName = "IceSSL C++11 iOS";
+ productReference = B377B0722288DFB2A73E0D11 /* libIceSSL C++11 iOS.a */;
+ productType = "com.apple.product-type.library.static";
};
- 0D1E892424EEBFE0181DF694 /* Glacier2 macOS */ = {
+ 152C6B4D442533A14394AA59 /* IceAdmin iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 27F591474923B57986FB902A /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */;
+ buildConfigurationList = E8D5C0992B3EC9BF06C2E413 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */;
buildPhases = (
- 431FB335BCBF43A668CCEF9F /* Headers */,
- BC65AED5F5A2C495FF3BD500 /* Sources */,
- 9F33736A8FFA22827E79E795 /* Frameworks */,
- 6796246E014E3E4D3F18E309 /* Resources */,
+ 7CC9578E94E7A84C9AB97A56 /* Sources */,
+ 106BB2D4AFDDF48AB1879C0D /* Frameworks */,
+ 9390284F2929A191FCFE579F /* Resources */,
+ EAC9D30594BC3F926B028B97 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 2F315EA0B9B61D960339DF62 /* PBXBuildRule */,
+ 1A3343DDC32CBBDE33E6B7E2 /* PBXBuildRule */,
);
dependencies = (
- F122169496F0D7464AF78F53 /* PBXTargetDependency */,
);
- name = "Glacier2 macOS";
- productName = Glacier2;
- productReference = 13F8DEDC3CF968015BFABDE6 /* Glacier2.framework */;
- productType = "com.apple.product-type.framework";
+ name = "IceAdmin iOS";
+ productName = IceAdmin;
+ productReference = 7BADC096D1677992528358C9 /* IceAdmin.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- 1021ADEEE20D0179A7D1EAE5 /* IceExceptionsAMD iOS */ = {
+ 181D4BB2B500C7095E790261 /* IceServantLocator macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 86E8FF9E4CDDC6792C9B8BB3 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */;
+ buildConfigurationList = BB7B27E3F192A856804504F7 /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */;
buildPhases = (
- 8CFC18503DD5BD37FC752CBA /* Sources */,
- A5D245549CF354102B158462 /* Frameworks */,
- F765EC4848E3E7826159CB29 /* Resources */,
- FE8E2C95B91114AC018A4D13 /* Swiftformat & Swiftlint */,
+ F475329F03E0092B1E040E6E /* Sources */,
+ F79396AEF21D6382DA1A1604 /* Frameworks */,
+ A0F37A30304B02310301D24F /* Resources */,
+ 966E15C79D450685A5F8372A /* Swiftformat & Swiftlint */,
);
buildRules = (
- 47CC20F12A6D7108515195DF /* PBXBuildRule */,
+ 10318D80DB8375E92376F13F /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceExceptionsAMD iOS";
- productName = IceExceptionsAMD;
- productReference = 228CABBDAD2E4CB85FA7A1C8 /* IceExceptionsAMD.bundle */;
+ name = "IceServantLocator macOS";
+ productName = IceServantLocator;
+ productReference = 273C8A37832131D101BED487 /* IceServantLocator.bundle */;
productType = "com.apple.product-type.bundle";
};
- 10FF7E84A1164BACC6E539FF /* IceStorm macOS */ = {
+ 1A56C6EA194130F78ED3E3D7 /* IceRetry macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = DD394E80B7E7B948E9D86B33 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */;
+ buildConfigurationList = 84D81443306BC687BB02714B /* Build configuration list for PBXNativeTarget "IceRetry macOS" */;
buildPhases = (
- 76ED145CF83A0C27471F5F4D /* Headers */,
- 1E1297CAD4D98C68ADF1932F /* Sources */,
- 14917DCFE3327DE2FB8D6EFE /* Frameworks */,
- 4B6B8E3B776A78E0D03620C8 /* Resources */,
+ E7742EF6F28C2ADFC171C04C /* Sources */,
+ B461FF78C2FFEC6E514D9DD2 /* Frameworks */,
+ 1C8EBB22E6110CA651B5AE94 /* Resources */,
+ FB01C6E7B60A150362C4CDA3 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 03E45BBD0ABB2D9C37CE7E46 /* PBXBuildRule */,
+ 75E1EFF2DC465F07A8B3C512 /* PBXBuildRule */,
);
dependencies = (
- 8AA05E8550CF4A1E6284CCFF /* PBXTargetDependency */,
);
- name = "IceStorm macOS";
- productName = IceStorm;
- productReference = D198723359CE7598DAED2EEB /* IceStorm.framework */;
- productType = "com.apple.product-type.framework";
+ name = "IceRetry macOS";
+ productName = IceRetry;
+ productReference = A64DC01AFE2CE7EB0471ECFC /* IceRetry.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- 14BA1B5F33A0E29CFB75C274 /* IceInterceptor iOS */ = {
+ 1AAC4E0E13E730A3EBE99884 /* IceProperties iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 413645EB834D00B8AE291EDC /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */;
+ buildConfigurationList = 98E347453B8C336B66FC9333 /* Build configuration list for PBXNativeTarget "IceProperties iOS" */;
buildPhases = (
- F4F5E00AE40FBF87ECD5668C /* Sources */,
- 905563934741C0B50FA9F852 /* Frameworks */,
- CC3A8F006D594D4E48D2AFB0 /* Resources */,
- 64DC660AB0881F6F611FCD91 /* Swiftformat & Swiftlint */,
+ 00A04F40C0335D91BD6839E3 /* Sources */,
+ 7B82A83F1645AB3CD9159317 /* Frameworks */,
+ 99A92A9F9F6037C16A85D8C6 /* Resources */,
+ 28CA6E0BE0B4DCC6B5673AB2 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 1A036878896E85863BFB4B31 /* PBXBuildRule */,
+ 53925A79EB627B58CB848E72 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceInterceptor iOS";
- productName = IceInterceptor;
- productReference = 152C6962CBD63C02057179CD /* IceInterceptor.bundle */;
+ name = "IceProperties iOS";
+ productName = IceProperties;
+ productReference = 4865B3158D38CF0F111335D1 /* IceProperties.bundle */;
productType = "com.apple.product-type.bundle";
};
- 16B8E7C8A49D358168590178 /* Ice C++11 macOS */ = {
+ 1E406447B88C3D90364D4D1F /* IceOperations macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 8EF37949FE60BDFB132BD38C /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */;
+ buildConfigurationList = 6020AF5853E377C06D67E403 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */;
buildPhases = (
- EFC2AA7CFBA10AE3A88FACA2 /* Headers */,
- C543947986D12980B2BBA885 /* Sources */,
- E1CBB96D2F56264B089F5EB8 /* Frameworks */,
+ AF7819AED0D1D05AA25D92E4 /* Sources */,
+ BD17E497021CAF9379DA3497 /* Frameworks */,
+ CAD28B93F0E62828AF0D6377 /* Resources */,
+ 7A54CEA2B19A2055CC1F47DD /* Swiftformat & Swiftlint */,
);
buildRules = (
- 9187C930BDD22FC2E476D78C /* PBXBuildRule */,
+ BDF9B57ED55153A6116D68DF /* PBXBuildRule */,
);
dependencies = (
);
- name = "Ice C++11 macOS";
- productName = "Ice C++11 macOS";
- productReference = 8E319CE1E162A972A783C06A /* libIce C++11 macOS.a */;
- productType = "com.apple.product-type.library.static";
+ name = "IceOperations macOS";
+ productName = IceOperations;
+ productReference = FC478C09D46B520AC09D1D24 /* IceOperations.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- 179FBAA19344F9CA38B571C5 /* IceDiscovery C++11 iOS */ = {
+ 201230D356840C5A08351F26 /* IceExceptionsAMD iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 6247BB2DCF9E507F38615138 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */;
+ buildConfigurationList = D78D874B7777AD5604436353 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */;
buildPhases = (
- 99724C6BD430D5B7917D208E /* Headers */,
- 6B31460B69910AC09D27FD50 /* Sources */,
- 74ABB2F7502BD812834CCE46 /* Frameworks */,
+ E65EF8B13225DD224891277E /* Sources */,
+ 255FA8B88BC828B5A289CCDB /* Frameworks */,
+ 5064F164501D15966944248E /* Resources */,
+ CD32127CBD3F93AB9BB29D19 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 65C8AAE3B0397D20BFA50361 /* PBXBuildRule */,
+ 950BF003DADBC930CFEBAEDB /* PBXBuildRule */,
);
dependencies = (
- 3FDDA5A6203D3A524630073C /* PBXTargetDependency */,
);
- name = "IceDiscovery C++11 iOS";
- productName = "IceDiscovery C++11 iOS";
- productReference = 09A77AFA5D366FAFD7CDC0D5 /* libIceDiscovery C++11 iOS.a */;
- productType = "com.apple.product-type.library.static";
+ name = "IceExceptionsAMD iOS";
+ productName = IceExceptionsAMD;
+ productReference = 4E959F0B362795EC27EE97FA /* IceExceptionsAMD.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- 1904592D5D35822D47AD8D76 /* IceFacets macOS */ = {
+ 215AFD7E3854FE327298A93E /* IceInterceptor macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = A263F6C281645281449993F6 /* Build configuration list for PBXNativeTarget "IceFacets macOS" */;
+ buildConfigurationList = 7B99D8F660920013276C79A3 /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */;
buildPhases = (
- D3556551D8047618F01C6EFC /* Sources */,
- DF8E0723059969B3E123DEF9 /* Frameworks */,
- 0A98228B9515B1DB0150729E /* Resources */,
- A927F2EACB9A4205A577F737 /* Swiftformat & Swiftlint */,
+ C2045A1C1B682CFA025DBEAC /* Sources */,
+ 3429B33E573E5F813542CD2F /* Frameworks */,
+ 38F16D70747EC8A142CDFE9B /* Resources */,
+ 8396BB8652E451B914505CBC /* Swiftformat & Swiftlint */,
);
buildRules = (
- D2D787B575C1BC9B5F278337 /* PBXBuildRule */,
+ 6A8A1627DE5EFC860DC01DD2 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceFacets macOS";
- productName = IceFacets;
- productReference = EB7F09E370CF39B0DC8F9EED /* IceFacets.bundle */;
+ name = "IceInterceptor macOS";
+ productName = IceInterceptor;
+ productReference = C7F15D84385C6FFC6EADD1FA /* IceInterceptor.bundle */;
productType = "com.apple.product-type.bundle";
};
- 19BA482623F0EEF5700964FF /* IceGrid iOS */ = {
+ 243376B5BCD8FB6B573F35B1 /* IceStorm iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = B1F7AFA49D2F024FFDE05812 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */;
+ buildConfigurationList = AC850EB7D16CF35402B67CC2 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */;
buildPhases = (
- 02D77B977324CEB7362414C9 /* Headers */,
- 5B8547598FB76B407215C614 /* Sources */,
- 7657DA393E7769C67AA38532 /* Frameworks */,
- C1D29365D7DF45624475B905 /* Resources */,
+ 699EDAAC3FEFBE0688BD1EA6 /* Headers */,
+ A474CAA01FA7D137A646980D /* Sources */,
+ 817F5CF70E0513858CC9DC9E /* Frameworks */,
+ 0898BA130E7D558CE1D0801B /* Resources */,
);
buildRules = (
- 8A0B4E2CF9F55ABCA73DAA23 /* PBXBuildRule */,
+ 6DB2C841D72557BAAB3A619C /* PBXBuildRule */,
);
dependencies = (
- 9C7A6CBC17CD8887CDD13F61 /* PBXTargetDependency */,
- AB8555AD4EBF2FEE54FE7F89 /* PBXTargetDependency */,
+ 30E54F481F5DF26D84BAAA4F /* PBXTargetDependency */,
);
- name = "IceGrid iOS";
- productName = IceGrid;
- productReference = F0A2495853FF103040F35EB7 /* IceGrid.framework */;
+ name = "IceStorm iOS";
+ productName = IceStorm;
+ productReference = 50C28D2AE3D7153816FAA709 /* IceStorm.framework */;
productType = "com.apple.product-type.framework";
};
- 19D6396909861EBAD283577E /* IceOperations macOS */ = {
+ 25A27A7EDF9F753CD06CD077 /* IceInvoke iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FEF8355684CDB82C03AC93E7 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */;
+ buildConfigurationList = D284C4AD4D778FCDFFB6DBA9 /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */;
buildPhases = (
- 570476500B5D3682FB446421 /* Sources */,
- AE0CDA57FA017DB9DCE7A18E /* Frameworks */,
- FB88FF81B0C5B03B39B04132 /* Resources */,
- E73EBAA01E240052214093C2 /* Swiftformat & Swiftlint */,
+ 57D51CE91C2703400B2BA7FA /* Sources */,
+ FA36C903B8CC9C6380361F3E /* Frameworks */,
+ 859569F9A6D7BEFCA0957ECB /* Resources */,
+ 694FBFDC2D27C79EB7387CB5 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 9AFBE16CBF732E355FC9CB37 /* PBXBuildRule */,
+ 6533EA270C3F1BE9D9555C21 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceOperations macOS";
- productName = IceOperations;
- productReference = 757CAAFA705B2AD13DCED72B /* IceOperations.bundle */;
+ name = "IceInvoke iOS";
+ productName = IceInvoke;
+ productReference = BB30FF55D1D682BEA2F84695 /* IceInvoke.bundle */;
productType = "com.apple.product-type.bundle";
};
- 1EC0C7ECB735847544C17B4A /* IceSSL C++11 iOS */ = {
+ 28CDBC394C2C48C28EDC2737 /* TestDriver iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 127F88BD90F0B5E9A7F36719 /* Build configuration list for PBXNativeTarget "IceSSL C++11 iOS" */;
+ buildConfigurationList = 7E11ED081C4F6FAE85C96EEB /* Build configuration list for PBXNativeTarget "TestDriver iOS" */;
buildPhases = (
- CCDDCB4F595F2840A290070D /* Headers */,
- 3C891FC3C6FC5CE44CC5DD9B /* Sources */,
- 9FCC4C0B224529957F83C9CE /* Frameworks */,
+ 44BA23A49B21F9AB866EE528 /* Sources */,
+ 439919B6B217AC4D29DE7764 /* Frameworks */,
+ 2B6E3D89D06B03534490E0B0 /* Resources */,
+ 712F3C07C5943C27F093F817 /* Swiftformat & Swiftlint */,
+ 11FFB1BF9E84148E37F41708 /* Copy Frameworks */,
+ 10CF17D2EF5F6C22F68E6806 /* Copy Symbols */,
+ 872D7F0E4F675368FB3BCDBE /* Copy Frameworks */,
);
buildRules = (
- 2E838E28FBE382D5060F41CB /* PBXBuildRule */,
+ 828E809007B8A2AC553EFE20 /* PBXBuildRule */,
);
dependencies = (
- 886DEEE11304C34D7274D7EE /* PBXTargetDependency */,
+ 52EE3DEDADE61F205633C490 /* PBXTargetDependency */,
+ 0B080B2F039FF892615D48E5 /* PBXTargetDependency */,
+ 399D8BE1CF1CAFA26039EFE5 /* PBXTargetDependency */,
+ A2A3ADBFEBF26162DB804B9E /* PBXTargetDependency */,
+ 0AA38837FD6ED4369FA5118D /* PBXTargetDependency */,
+ 379A93B27E1ED9ABB0381CEB /* PBXTargetDependency */,
+ 6A64B711DCDF6F1996730E4B /* PBXTargetDependency */,
+ 94684DC39D3D55F278BDE020 /* PBXTargetDependency */,
+ AF83B2334657DA7E19B1920F /* PBXTargetDependency */,
+ 661B45D59A6DA5756AF2CCE7 /* PBXTargetDependency */,
+ 4869097E444F2EE9E4FBD515 /* PBXTargetDependency */,
+ 1A913009C93BA88B2DEC0B9F /* PBXTargetDependency */,
+ A59D0AC1202E793B088191FC /* PBXTargetDependency */,
+ 6614E59080392D4984871B0F /* PBXTargetDependency */,
+ AFAE8D0071FAFA9326163235 /* PBXTargetDependency */,
+ 7356BE47B6D425F2DA240009 /* PBXTargetDependency */,
+ 38C38F0F72499D98844F2049 /* PBXTargetDependency */,
+ 3C9782EE3EF2CC5E11E2AB7C /* PBXTargetDependency */,
+ C3A4787D4A50365A7E71BD3E /* PBXTargetDependency */,
+ A1710A4EBD6A2E79352C5006 /* PBXTargetDependency */,
+ 910D64E458957E96755A1D25 /* PBXTargetDependency */,
+ A7AA7075539F6C277C14975D /* PBXTargetDependency */,
+ 8EA25D2B56BF1F9009999EF3 /* PBXTargetDependency */,
+ 765E0DF164AB8AFFC3436F14 /* PBXTargetDependency */,
+ 6BD9866A55DBBE9F94FE5BCC /* PBXTargetDependency */,
+ A23BC9FEC07647F94C159A95 /* PBXTargetDependency */,
+ 4A7C14F7400881C449052DB8 /* PBXTargetDependency */,
+ 62399E6570FE2AEEDECDE164 /* PBXTargetDependency */,
+ 8FBFD80AEB0F79C7BB43919B /* PBXTargetDependency */,
+ 2775BA8CB3DD67B2B4221BB3 /* PBXTargetDependency */,
+ 890034127213361F3C8F5A02 /* PBXTargetDependency */,
+ 2D2D35C1EBF722477B8B482C /* PBXTargetDependency */,
+ A2D2A66A0F94B64D462BCEF9 /* PBXTargetDependency */,
+ 87977D66621ABEE8B2C26019 /* PBXTargetDependency */,
+ C4E7724859AC32D6FA13CD2E /* PBXTargetDependency */,
+ 4BA07F8BD5A88D6281A29D29 /* PBXTargetDependency */,
+ 0A6C086BA674D216566BBD90 /* PBXTargetDependency */,
+ A717E4500EF731D22C50944A /* PBXTargetDependency */,
+ F2A554033353FB741C4F3296 /* PBXTargetDependency */,
);
- name = "IceSSL C++11 iOS";
- productName = "IceSSL C++11 iOS";
- productReference = 21B195F543EFC2F193A1DD0C /* libIceSSL C++11 iOS.a */;
- productType = "com.apple.product-type.library.static";
+ name = "TestDriver iOS";
+ productName = TestDriver;
+ productReference = 8DD7CBE7D8A940FFCF43FC42 /* TestDriver.app */;
+ productType = "com.apple.product-type.application";
};
- 1F2AA78A763D19F22E79A046 /* IceServantLocator macOS */ = {
+ 28CFE986A434086C3605887E /* IceEnums iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 50E500A2D68CED92BF5D3EF9 /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */;
+ buildConfigurationList = EA9C18267B52FF115D5FBDAF /* Build configuration list for PBXNativeTarget "IceEnums iOS" */;
buildPhases = (
- D2DE0FAB9048DE1241A19B3D /* Sources */,
- 41673E0D4D3EAFC19DDBAC8C /* Frameworks */,
- B5C60C06DF06195588400C97 /* Resources */,
- 0D71C96B12A6242991135286 /* Swiftformat & Swiftlint */,
+ 9F0E2F804F97B0428B8DAF47 /* Sources */,
+ 39FC128F824212ADA3698804 /* Frameworks */,
+ 287C74F0F682520334C70332 /* Resources */,
+ F4A2D49327D5EFDFEAC70CC2 /* Swiftformat & Swiftlint */,
);
buildRules = (
- E41F751E0A2E895E8F70AD21 /* PBXBuildRule */,
+ 14E26428815567543D2725EC /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceServantLocator macOS";
- productName = IceServantLocator;
- productReference = 316C45F32FFF05031C96287D /* IceServantLocator.bundle */;
+ name = "IceEnums iOS";
+ productName = IceEnums;
+ productReference = 6E1716C66456BCBBFBF62157 /* IceEnums.bundle */;
productType = "com.apple.product-type.bundle";
};
- 2045B45980FB68801EA7DC30 /* IceStream iOS */ = {
+ 28E66BF870D16ED437F027B7 /* IceGrid iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = EA00BEBC7A32E2119B6BACF5 /* Build configuration list for PBXNativeTarget "IceStream iOS" */;
+ buildConfigurationList = 2FBC485D88053CE1C10E2C57 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */;
buildPhases = (
- 0708E77DEA2B840BBBAFA66E /* Sources */,
- EE5AB9DB4C9188020934AE9B /* Frameworks */,
- 18F9C4384FF4A8BE316A31F0 /* Resources */,
- 2F0150FF5DBB7EB9A50DDC4B /* Swiftformat & Swiftlint */,
+ 05BBB22AB8A71AF47BD3F5DB /* Headers */,
+ 41F90455559279AF5DC6E92D /* Sources */,
+ 74174C7E1B03324C6514DA65 /* Frameworks */,
+ D558B6EDE5C078BAFAA2B8B9 /* Resources */,
);
buildRules = (
- 0DE6CC35913FE85DBCC870A4 /* PBXBuildRule */,
+ D3C9EBA2CDC320847E1BA8D7 /* PBXBuildRule */,
);
dependencies = (
+ C247E326B46CD16FA29657B5 /* PBXTargetDependency */,
+ 565AEA02674C74A898143F5A /* PBXTargetDependency */,
);
- name = "IceStream iOS";
- productName = IceStream;
- productReference = E1A2C7F234AB794104399BAA /* IceStream.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "IceGrid iOS";
+ productName = IceGrid;
+ productReference = 1DEAE5A8F941AB2CCAA16FB6 /* IceGrid.framework */;
+ productType = "com.apple.product-type.framework";
};
- 28CE11EAF0AF8ED4144E13C3 /* IceInfo iOS */ = {
+ 2B0DA341DBA94884D0304509 /* Ice C++11 macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 853E1B04BB0B8A766B7C980E /* Build configuration list for PBXNativeTarget "IceInfo iOS" */;
+ buildConfigurationList = 287D737E736D39F6BBBDA1F1 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */;
buildPhases = (
- 8E4382404883125B59A7EA6E /* Sources */,
- B92D731AC40E74B32C90F6B0 /* Frameworks */,
- 87F1CFD208877354893A13DE /* Resources */,
- 516B5D26E0BA3BB6716AEA28 /* Swiftformat & Swiftlint */,
+ 20F20E632335A7FDB50086DA /* Headers */,
+ B5279E3ED016C786663AF492 /* Sources */,
+ 0A284CD82FD37E7C9B2C3458 /* Frameworks */,
);
buildRules = (
- CB9688869B3E5369FCDCA3A4 /* PBXBuildRule */,
+ 44F684DCC6DF53001B8EB546 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceInfo iOS";
- productName = IceInfo;
- productReference = 3C1C6EE40F63454C782F7A99 /* IceInfo.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "Ice C++11 macOS";
+ productName = "Ice C++11 macOS";
+ productReference = 68CEC296554781EB6D21CA3C /* libIce C++11 macOS.a */;
+ productType = "com.apple.product-type.library.static";
};
- 28D7C910F8C11FA8AE746E5F /* IceSlicingObjectsAMD macOS */ = {
+ 2FA692464307DB8942B81FCE /* IceInterceptor iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 9F3CCC808F43BBCDC6590CA6 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */;
+ buildConfigurationList = 6DA8D7D979BC9F1AB55137B9 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */;
buildPhases = (
- C376B0C44485617839C0036D /* Sources */,
- F1D6E0F9E4E6865293202BB3 /* Frameworks */,
- C0A8690F3C243782A50F87E6 /* Resources */,
- ADD238B38C09EBA60FBB9A96 /* Swiftformat & Swiftlint */,
+ 6FF8B5B4850F7E71A0623C1E /* Sources */,
+ 886DF937945FAFFB0DB35DFE /* Frameworks */,
+ 41FE814B22CDFB43D444B7A9 /* Resources */,
+ 35EC5B34CADE7ACD57BB54AE /* Swiftformat & Swiftlint */,
);
buildRules = (
- D5730A9573FFE1C95A85A99C /* PBXBuildRule */,
+ 152BE85D7EAACA6BA0C8F946 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceSlicingObjectsAMD macOS";
- productName = IceSlicingObjectsAMD;
- productReference = 22BFB6FDB6B68D3C3AFE5007 /* IceSlicingObjectsAMD.bundle */;
+ name = "IceInterceptor iOS";
+ productName = IceInterceptor;
+ productReference = 4F86EE1F0BABC73616D64E60 /* IceInterceptor.bundle */;
productType = "com.apple.product-type.bundle";
};
- 2EB20E48501BD9D7B072833A /* IceObjects iOS */ = {
+ 33A418E3474BE5E738D35102 /* IceEnums macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = C51A013BE9625A25B71425BD /* Build configuration list for PBXNativeTarget "IceObjects iOS" */;
+ buildConfigurationList = 0E15EF19C87DFB578AED5711 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */;
buildPhases = (
- 14F49FBF33FCFD185DEBC988 /* Sources */,
- FC88E78E634F9B43EE483391 /* Frameworks */,
- 7D1D9AC459A695B2024EF72C /* Resources */,
- C48AFF9D83BE223B894807C6 /* Swiftformat & Swiftlint */,
+ F5502C2F220BF21652304C44 /* Sources */,
+ 35108728344233C72ED6F21E /* Frameworks */,
+ F3457DE9A754E10F9EE2726A /* Resources */,
+ EB38E4A8E4B1BA39DE123A04 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 210A8303F7AA2749F0674CE3 /* PBXBuildRule */,
+ AA7F3693220F7502E60334F6 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceObjects iOS";
- productName = IceObjects;
- productReference = 0DF6B8067E8C2C037234700B /* IceObjects.bundle */;
+ name = "IceEnums macOS";
+ productName = IceEnums;
+ productReference = 0E3D40FBB00AD72FD390D1E4 /* IceEnums.bundle */;
productType = "com.apple.product-type.bundle";
};
- 2FCF9711489B071F1761C95C /* IceSlicingExceptions iOS */ = {
+ 34CC3FB8F32A94970DA6C5BC /* IceScope iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 77B2740B9FB8EDEADF56294A /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */;
+ buildConfigurationList = F4684A7A6357578EC96E6279 /* Build configuration list for PBXNativeTarget "IceScope iOS" */;
buildPhases = (
- 6BDC17A125A2AD6DB2FAB020 /* Sources */,
- 007C5DF05CDA1CCD6537936F /* Frameworks */,
- 805F12B7F2FA8832D5025D65 /* Resources */,
- FBF2ECDF680B6F305A801500 /* Swiftformat & Swiftlint */,
+ 14C712F1304966008DC75618 /* Sources */,
+ AAD1951DA0F9167266D55842 /* Frameworks */,
+ 9F38974143631060A19628A3 /* Resources */,
+ C5A436D24E0F0118492A3EB3 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 50775B0CC8D87AC342EE2755 /* PBXBuildRule */,
+ 109DC8AB2C4982FB0B23E58F /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceSlicingExceptions iOS";
- productName = IceSlicingExceptions;
- productReference = 6DE8323ECDD12C5252E02FF4 /* IceSlicingExceptions.bundle */;
+ name = "IceScope iOS";
+ productName = IceScope;
+ productReference = E19C150CCCC22B7DE0139429 /* IceScope.bundle */;
productType = "com.apple.product-type.bundle";
};
- 34B4FD44212BC22DE43DF98B /* IceInheritance macOS */ = {
+ 3EAB7D1B9F1CE476576FAA4C /* IceGrid macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 06A61A5A888A573F787597A1 /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */;
+ buildConfigurationList = BAE80F75820E98E535F0FE2C /* Build configuration list for PBXNativeTarget "IceGrid macOS" */;
buildPhases = (
- 89B5A8EBC8F6E794AA2A9C07 /* Sources */,
- 4A9B0804B57B0B2F9B4F16C7 /* Frameworks */,
- 4CE3F1AB27B3C98FE67F0AF2 /* Resources */,
- 2234AA6B1768ACF733DF13BD /* Swiftformat & Swiftlint */,
+ 189A149759728A345F04476D /* Headers */,
+ 6EDAFB422FF1DEF6537C39A4 /* Sources */,
+ 2904A0555D938036491590AA /* Frameworks */,
+ 51CCE03A1E923D61E70AA22D /* Resources */,
);
buildRules = (
- FC524E0725C8085B65060F13 /* PBXBuildRule */,
+ 2481F9056554ACE7CB0A6771 /* PBXBuildRule */,
);
dependencies = (
+ 00FCBE39C5613632A1613641 /* PBXTargetDependency */,
+ 0CD148DF6EDBB4FE95CEBC00 /* PBXTargetDependency */,
);
- name = "IceInheritance macOS";
- productName = IceInheritance;
- productReference = BD3B63910D4CB7D40D357BE8 /* IceInheritance.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "IceGrid macOS";
+ productName = IceGrid;
+ productReference = B769550900F96420DBCFED72 /* IceGrid.framework */;
+ productType = "com.apple.product-type.framework";
};
- 3721D48CE03788DE444C0915 /* IceAdmin macOS */ = {
+ 4610DAE8306D4D0C91F09CEE /* TestCommon iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = C4B764E265AF8EC5D767AED9 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */;
+ buildConfigurationList = AA7B0CF72E5C2E65C41049C2 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */;
buildPhases = (
- A98C9D111ACACB08A84D8D14 /* Sources */,
- E47FE863E677DB47128E37DE /* Frameworks */,
- 8BC2E13470FA9CF59F44AF86 /* Resources */,
- 5AFA9322F48B21B2A861B2AD /* Swiftformat & Swiftlint */,
+ AA540E14D564AD81A6EF3A6D /* Headers */,
+ FB28D286084E4C928A549716 /* Sources */,
+ 39A5659F35A3B6F36558761F /* Frameworks */,
+ D9A629B2453AD278E9A0B579 /* Resources */,
+ 8E66F057C81542F2FC68D33A /* Swiftformat & Swiftlint */,
);
buildRules = (
- 9EE5A5689AD04ABDA954B109 /* PBXBuildRule */,
+ 29A2576F2032958E418353AD /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceAdmin macOS";
- productName = IceAdmin;
- productReference = F8AD6B67521A305AADC0614C /* IceAdmin.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "TestCommon iOS";
+ productName = TestCommon;
+ productReference = 35C037DF51255C7CDCD5861B /* TestCommon.framework */;
+ productType = "com.apple.product-type.framework";
};
- 3C76932432EC535E14CAA9A8 /* IceSlicingObjects iOS */ = {
+ 4A2ABF9D0923453422834FC0 /* IceSlicingExceptionsAMD iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = DB497E90ACA3B876CDECF5EF /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */;
+ buildConfigurationList = 59E840F94DD0F585D2E07A79 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */;
buildPhases = (
- E25567BDB6A8DA21B9EF9008 /* Sources */,
- 84F3ECAB019F4F509892785B /* Frameworks */,
- 4349416146481071BC5286BD /* Resources */,
- 7D4A4D4EA68298C7FF064D13 /* Swiftformat & Swiftlint */,
+ E6F271C1E2A69B1F3317690E /* Sources */,
+ 940C3830571CA573B487E70F /* Frameworks */,
+ 8A540EF8847C540566DFDDF7 /* Resources */,
+ FF8F6582496EB094E44D0DE3 /* Swiftformat & Swiftlint */,
);
buildRules = (
- CA4D98746A747C9E7AD097A9 /* PBXBuildRule */,
+ 1033E35BEFA397B13A015ABE /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceSlicingObjects iOS";
- productName = IceSlicingObjects;
- productReference = 3098E4273D7B3498F83FD430 /* IceSlicingObjects.bundle */;
+ name = "IceSlicingExceptionsAMD iOS";
+ productName = IceSlicingExceptionsAMD;
+ productReference = 16717ECD10710B6A0018D2C2 /* IceSlicingExceptionsAMD.bundle */;
productType = "com.apple.product-type.bundle";
};
- 3ED36C0437C2FD7C1609CEAA /* IceInvoke macOS */ = {
+ 4A47CB078D8654283E9A288C /* IceOptional iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 7E635DB566B52931088C5E34 /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */;
+ buildConfigurationList = 73AC93BDD01EC088DA89CD7C /* Build configuration list for PBXNativeTarget "IceOptional iOS" */;
buildPhases = (
- 21511F756572E7D76441A984 /* Sources */,
- 541DEBD56A0D93C40AB10F01 /* Frameworks */,
- BF21011ACA49876CC3A78688 /* Resources */,
- C69F687AE16A494CD1C80AC6 /* Swiftformat & Swiftlint */,
+ BAFB50C9DFE412AB3EF441D0 /* Sources */,
+ BD537A4DF5864304276A8180 /* Frameworks */,
+ 327FAF07807DBB731BB58165 /* Resources */,
+ 9B94B42A0CF130D7AFE6E8BB /* Swiftformat & Swiftlint */,
);
buildRules = (
- F7DCEBD108D164725F31A068 /* PBXBuildRule */,
+ C9E254EE9AEB2984EDF5727B /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceInvoke macOS";
- productName = IceInvoke;
- productReference = CB87D2A2C1C7BBC4369A68F6 /* IceInvoke.bundle */;
+ name = "IceOptional iOS";
+ productName = IceOptional;
+ productReference = 34C3773FF720DB41BE3543B0 /* IceOptional.bundle */;
productType = "com.apple.product-type.bundle";
};
- 404E0C7A0B6D245EF6B20FBE /* IceExceptions iOS */ = {
+ 51B83832597A166C70372361 /* IceServantLocatorAMD macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = D79160B8E3ECE0695C9727E3 /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */;
+ buildConfigurationList = 5C88B931A683CB89B2B05AD3 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */;
buildPhases = (
- EFB2DAD168F33E1D58F96E5F /* Sources */,
- B006CD09487DBC788C6EC34F /* Frameworks */,
- 351B4F947E4109118BEA5353 /* Resources */,
- E4A476A0493FE51B280E0E58 /* Swiftformat & Swiftlint */,
+ EF6747FEDF50E51B13DF5A1D /* Sources */,
+ 297987375A30559E41100A67 /* Frameworks */,
+ ECFB74072388133D184C1787 /* Resources */,
+ 16970C400879C075CCF74BA1 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 620459C54BA558D92474DB5D /* PBXBuildRule */,
+ 7D58713CDABB112E6612E4E4 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceExceptions iOS";
- productName = IceExceptions;
- productReference = 06DF4B6E97814A6B7777C17B /* IceExceptions.bundle */;
+ name = "IceServantLocatorAMD macOS";
+ productName = IceServantLocatorAMD;
+ productReference = 2CFEA89611CEACA1F95612F1 /* IceServantLocatorAMD.bundle */;
productType = "com.apple.product-type.bundle";
};
- 41AF91D808C68D2FDFDEC0E4 /* IceImpl iOS */ = {
+ 5295813C4C98826FBA6D4CA4 /* IceAdapterDeactivation iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 4DBCC328DBFBB308AE0BFD0B /* Build configuration list for PBXNativeTarget "IceImpl iOS" */;
+ buildConfigurationList = 1F53544416ED1CBB48BCB0C0 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */;
buildPhases = (
- 5F3227C8AA2D3552CF2B84A5 /* Headers */,
- 9D155F8C2B0E9C4329881235 /* Sources */,
- 4A2529A9F8B169387E5D6827 /* Frameworks */,
- E8682169F4055234C066BA9F /* Resources */,
+ 431FDD30DC664FC2BD5EB211 /* Sources */,
+ 21A7E1E0035F557C87261DBE /* Frameworks */,
+ 1CE2DA15F7BFF6191BC93389 /* Resources */,
+ 94D5D3AC21C7DC83655CA07B /* Swiftformat & Swiftlint */,
);
buildRules = (
+ 1B799348F261C3E85197742A /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceImpl iOS";
- productName = IceImpl;
- productReference = 52B82665E4CA54E9C28CC521 /* IceImpl.framework */;
- productType = "com.apple.product-type.framework";
+ name = "IceAdapterDeactivation iOS";
+ productName = IceAdapterDeactivation;
+ productReference = F7EC05463EED3AC758275FE5 /* IceAdapterDeactivation.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- 41E689F7CB08945D981E736B /* IceOperations iOS */ = {
+ 553857E5964EBE16D6716B46 /* IceIAP C++11 iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 42454355906E8845720BA6C5 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */;
+ buildConfigurationList = 104AC41727588E52A615791F /* Build configuration list for PBXNativeTarget "IceIAP C++11 iOS" */;
buildPhases = (
- 06AAE584FFD9B2B9E079C683 /* Sources */,
- 5548E7C382818F44EA585085 /* Frameworks */,
- 04D32DF14ACFD413D2F36056 /* Resources */,
- 23F561D2FABFB311A6B9CB5A /* Swiftformat & Swiftlint */,
+ 6019CBDA342F08401D0F8861 /* Headers */,
+ CE313DF8750DC39407987183 /* Sources */,
+ 6AE73E36F0D9F4AB72FF135D /* Frameworks */,
);
buildRules = (
- 58E39031EFD5D9B23726D273 /* PBXBuildRule */,
+ 37DBFF3976C27E3B2989BBA3 /* PBXBuildRule */,
);
dependencies = (
+ ED3AA317487A00E88FB02576 /* PBXTargetDependency */,
);
- name = "IceOperations iOS";
- productName = IceOperations;
- productReference = 25D23CB8F54EFB2A4493A943 /* IceOperations.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "IceIAP C++11 iOS";
+ productName = "IceIAP C++11 iOS";
+ productReference = D8842621E7D70188F9DF2501 /* libIceIAP C++11 iOS.a */;
+ productType = "com.apple.product-type.library.static";
};
- 4448C0412CE8E4BBD74B6938 /* IceStorm iOS */ = {
+ 57F4F70C7420D9DEB081223A /* IceOperationsAMD iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 5557575E7FEAB875B8577F01 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */;
+ buildConfigurationList = 84F9E174A484AC99726E6C34 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */;
buildPhases = (
- 02678C742AF7F97E972F13A7 /* Headers */,
- 39205F18684EA6C09BFFA94C /* Sources */,
- 00E72F2C194CED1FC6565254 /* Frameworks */,
- 567B2E4498DE7430C64598ED /* Resources */,
+ B220C2F0646FC27F06A6699C /* Sources */,
+ 65F5556DD2C0871DC66246FA /* Frameworks */,
+ 98F2E1A57BA48C66E5EDC904 /* Resources */,
+ C252282E558571AD302E3133 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 3EFAF0BA06BDED8F1C927FF6 /* PBXBuildRule */,
+ F3F5D5290AC3A3FA96263A28 /* PBXBuildRule */,
);
dependencies = (
- A422D204B9DA33EAB6142767 /* PBXTargetDependency */,
);
- name = "IceStorm iOS";
- productName = IceStorm;
- productReference = 02DEAA767E87169F7169F463 /* IceStorm.framework */;
- productType = "com.apple.product-type.framework";
+ name = "IceOperationsAMD iOS";
+ productName = IceOperationsAMD;
+ productReference = 3213430A8FFA260ABBFFE6DF /* IceOperationsAMD.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- 4528506F75BB1C17D38A8FB2 /* IceServantLocatorAMD iOS */ = {
+ 5AB40796E10DD225752975C0 /* IceDefaultValue macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 16EAA2E24FC57645D3CAB129 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */;
+ buildConfigurationList = 0BEB080277BEC47AB2F0B380 /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */;
buildPhases = (
- 1E094B9FDC12FCD7EEAA09D5 /* Sources */,
- C1E322587CA8BC087E231171 /* Frameworks */,
- E822C343A9C2224BE535AAFD /* Resources */,
- E0AA25364BDABA5BEA9CEDD4 /* Swiftformat & Swiftlint */,
+ C6C094FEDD11DE44D8BE4803 /* Sources */,
+ 7F1E3F626F075B69AB3507AD /* Frameworks */,
+ CB8EE20C7A414BAD85AB7695 /* Resources */,
+ 92F065E3E5E62F40F7FB551E /* Swiftformat & Swiftlint */,
);
buildRules = (
- FDB19A19103F2BA9983BB240 /* PBXBuildRule */,
+ F34B8EA07F270BC53AA1121A /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceServantLocatorAMD iOS";
- productName = IceServantLocatorAMD;
- productReference = 58C2EB6C86D346799E4DE444 /* IceServantLocatorAMD.bundle */;
+ name = "IceDefaultValue macOS";
+ productName = IceDefaultValue;
+ productReference = 8439526B8DE74644F28A6D70 /* IceDefaultValue.bundle */;
productType = "com.apple.product-type.bundle";
};
- 45CD5EF1475B7ADCCDB65C94 /* TestDriver iOS */ = {
+ 5E57DA0A85ED2B235C1D4A3A /* IceDiscovery C++11 macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 50711E2FEC55279FD4BC09D2 /* Build configuration list for PBXNativeTarget "TestDriver iOS" */;
+ buildConfigurationList = 3FD81D4B8AC8C724BCE33EC2 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */;
buildPhases = (
- 9A5EF9C47F89D24D062728BD /* Sources */,
- AB0461FCD631C9A51CE59107 /* Frameworks */,
- BA297851698CB273E4280B9C /* Resources */,
- 86C27A8F06ED2096C50C7608 /* Swiftformat & Swiftlint */,
- 111FF68721EC29A87E53169E /* Copy Frameworks */,
- FF51A9F21744FA92219F545D /* Copy Symbols */,
- 4B60243DED5A423D011C4846 /* Copy Frameworks */,
+ CCE8A912F3723A670ED12439 /* Headers */,
+ B50B918AFB2190961274A117 /* Sources */,
+ 610ED3E4EAB8F0706449FF4E /* Frameworks */,
);
buildRules = (
- F05F476BF078B9E3197C75E7 /* PBXBuildRule */,
+ 4EB11E096E7C3A8970D5C20C /* PBXBuildRule */,
);
dependencies = (
- AF1BDE085A6454A67964114D /* PBXTargetDependency */,
- 30EA112897EBA052FDB53A04 /* PBXTargetDependency */,
- 1F93CDC9CDCB5ADB95204E00 /* PBXTargetDependency */,
- 091D5BD9C2297D9BDB6C229D /* PBXTargetDependency */,
- A0AF71EA7A3B4EE1E94A5A39 /* PBXTargetDependency */,
- 89B4C16F315E9E3BE8CA5E07 /* PBXTargetDependency */,
- ABDCEF727EA5664DCB339BDC /* PBXTargetDependency */,
- 236092AB13089F308509F936 /* PBXTargetDependency */,
- 189904A2E342D68C1D124203 /* PBXTargetDependency */,
- 1589C2EFEEF0AE99D56F2B94 /* PBXTargetDependency */,
- 148BAD1CBCB6CE8363C1F4B4 /* PBXTargetDependency */,
- 383455C0C450FEA9F177EF80 /* PBXTargetDependency */,
- 2AA78526F7A0DCAC2C6D6256 /* PBXTargetDependency */,
- 5985C27F82B9FCC3D00FD776 /* PBXTargetDependency */,
- 6B8D622CBB89FAF120A9F319 /* PBXTargetDependency */,
- 1EAC23DD056481B4BDA66C12 /* PBXTargetDependency */,
- 49B80D5958A1ECC23E3238DE /* PBXTargetDependency */,
- 47D1C15B97CAE4EE18D23BD1 /* PBXTargetDependency */,
- D670F6976E173EA2D923583B /* PBXTargetDependency */,
- 4224874E64BF204D8F29A5A7 /* PBXTargetDependency */,
- C8F93ABD5053AAC6702A1E96 /* PBXTargetDependency */,
- 15DEA84F636C3196240D1D75 /* PBXTargetDependency */,
- 5840B608EBF169165AB8D4C1 /* PBXTargetDependency */,
- 05F2142121A27FFF1491D461 /* PBXTargetDependency */,
- 711903504C3954C5D5F28A80 /* PBXTargetDependency */,
- 4A26C247D63D3F3818205176 /* PBXTargetDependency */,
- C121B2AB87DDB002EAA4F203 /* PBXTargetDependency */,
- 61A13C6364F38BD59C2B6D89 /* PBXTargetDependency */,
- 37430682BEA1D77B055A8615 /* PBXTargetDependency */,
- 450A4911C2FBEEF2DDC8752B /* PBXTargetDependency */,
- 11DC1A2C024035F6E5872BB4 /* PBXTargetDependency */,
- C1364A708FA99859C791D4D2 /* PBXTargetDependency */,
- 1F4E92C34B478CC0329094EF /* PBXTargetDependency */,
- 79491753D9B50441E2584973 /* PBXTargetDependency */,
- 90DA201644C892BC19D50BF2 /* PBXTargetDependency */,
- 27B2CD07039AA0D7159A8F79 /* PBXTargetDependency */,
- 46C05EE79E414A31B24750D6 /* PBXTargetDependency */,
- DDB976A3F15917AC6BA90D21 /* PBXTargetDependency */,
- A650C2A2E23F2A16A18506BE /* PBXTargetDependency */,
+ 396B57ADD302F07C42EAE355 /* PBXTargetDependency */,
);
- name = "TestDriver iOS";
- productName = TestDriver;
- productReference = ACF4E8E01FC452B93358E977 /* TestDriver.app */;
- productType = "com.apple.product-type.application";
+ name = "IceDiscovery C++11 macOS";
+ productName = "IceDiscovery C++11 macOS";
+ productReference = FDC4148479AEFCB6426F5E58 /* libIceDiscovery C++11 macOS.a */;
+ productType = "com.apple.product-type.library.static";
};
- 46D6805E63BB07D00857FF65 /* IceDefaultValue macOS */ = {
+ 649D215E8804C017CA836B16 /* IceDiscovery C++11 iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 69CCF36EB5526EE2C0B7CBB0 /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */;
+ buildConfigurationList = 022EA05646E8140352CD83EA /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */;
buildPhases = (
- EEC4A0F509FFBD740CD6C901 /* Sources */,
- C8B254C5FEE6D9DA0F7AD5B7 /* Frameworks */,
- 7C966D42E4C66FBE8A0FAE5F /* Resources */,
- 59C90D170B93E54EB7C07ED7 /* Swiftformat & Swiftlint */,
+ AB483BD6973FA18F54C0F707 /* Headers */,
+ 35903663DF9A9B2E78733F56 /* Sources */,
+ 9CC69F6021F3ADAA62093773 /* Frameworks */,
);
buildRules = (
- 45CFB770757F695D400CF895 /* PBXBuildRule */,
+ F250701A7B28E60F90C0934A /* PBXBuildRule */,
);
dependencies = (
+ E20C1B352D3C4E6B8435BA06 /* PBXTargetDependency */,
);
- name = "IceDefaultValue macOS";
- productName = IceDefaultValue;
- productReference = D80900AAE1BA05236D22A848 /* IceDefaultValue.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "IceDiscovery C++11 iOS";
+ productName = "IceDiscovery C++11 iOS";
+ productReference = 0AFAD6C28DA1495DABD4127E /* libIceDiscovery C++11 iOS.a */;
+ productType = "com.apple.product-type.library.static";
};
- 4CF8A5E80D330A8FD27BC24C /* IceSlicingExceptionsAMD macOS */ = {
+ 66D7646E717E859CA23ACF56 /* SliceEscape macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = F34AE495D66246942ADC9AF0 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */;
+ buildConfigurationList = 08722FDBA4607321D22D492E /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */;
buildPhases = (
- 68739D1AF671C9485AAD0767 /* Sources */,
- D455A4A7CD146C84FDD4F2DB /* Frameworks */,
- 75C7A04CF18C4A9E59C4128B /* Resources */,
- 07BBAA85ADC8CB98B66CA4E3 /* Swiftformat & Swiftlint */,
+ A3E4BAC90727FB8A981408AB /* Sources */,
+ C84E76F4608DCBB4DB309614 /* Frameworks */,
+ 90EEB52FB404D34D36CC9FD0 /* Resources */,
+ CE878E94F747E855EC249E18 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 928CC1102F2B15AB03C23964 /* PBXBuildRule */,
+ 84FB96730E4A7AB92DC16BC4 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceSlicingExceptionsAMD macOS";
- productName = IceSlicingExceptionsAMD;
- productReference = 89A51B23E16E26B5745CD61F /* IceSlicingExceptionsAMD.bundle */;
+ name = "SliceEscape macOS";
+ productName = SliceEscape;
+ productReference = 47887C1FB9AA3D7D7B8F5B5B /* SliceEscape.bundle */;
productType = "com.apple.product-type.bundle";
};
- 4D4688E27490C1B57417BEC2 /* IceSlicingExceptionsAMD iOS */ = {
+ 6A21D52AF98E02D675C03AB8 /* IceInfo iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 810488EFD8A5DC6E54CDFBD0 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */;
+ buildConfigurationList = A0F50595BC156668C2E89978 /* Build configuration list for PBXNativeTarget "IceInfo iOS" */;
buildPhases = (
- 2CEF702B467113D5E613019F /* Sources */,
- A397CB128D59F9DB7DCCCFCB /* Frameworks */,
- 9CACBA443D8E4BEDF9BC777D /* Resources */,
- 6662BC35DCE850DF51F7DB41 /* Swiftformat & Swiftlint */,
+ 189C87F2403BD89537105F14 /* Sources */,
+ 36B89521664F2C89347860F0 /* Frameworks */,
+ C262DE287163009A76F205A1 /* Resources */,
+ 3711708C516764F5096BC1DA /* Swiftformat & Swiftlint */,
);
buildRules = (
- 038551C9ECB7E6358CC2BDE1 /* PBXBuildRule */,
+ 9F442D313A7AA93144030527 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceSlicingExceptionsAMD iOS";
- productName = IceSlicingExceptionsAMD;
- productReference = 97F654181891F3B80AA29092 /* IceSlicingExceptionsAMD.bundle */;
+ name = "IceInfo iOS";
+ productName = IceInfo;
+ productReference = EDB3662F7248B27CB1AD4BAC /* IceInfo.bundle */;
productType = "com.apple.product-type.bundle";
};
- 4FACAB223C4BE57F8313B439 /* IceAdapterDeactivation iOS */ = {
+ 70073F296AA7A50B2A86451A /* Ice macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 35673F5B3BF6701F9669B4B7 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */;
+ buildConfigurationList = ED7198BFB413F597DDF01014 /* Build configuration list for PBXNativeTarget "Ice macOS" */;
buildPhases = (
- 04218661B9AADD48FF6045B4 /* Sources */,
- BE975D571071F66BFB975FAC /* Frameworks */,
- EE2D5E65A142E80E4540619A /* Resources */,
- 9DF59C2CE8F22B3CC161B52F /* Swiftformat & Swiftlint */,
+ 8FBD46E14E4C740523FD1BED /* Headers */,
+ C33C92B5FCB51BCA8A0B6EA2 /* Sources */,
+ 720746EB56741A31AEBE510C /* Frameworks */,
+ E9A6F32F192ED65C49266A8A /* Resources */,
+ 46C533BB60CE55765B9ED604 /* Swiftformat & Swiftlint */,
);
buildRules = (
- AF24E936EA9B5A6E5D3979B3 /* PBXBuildRule */,
+ 7AEA1178810B3CFC3CB5905C /* PBXBuildRule */,
+ 2A6B2D58E6041C42CBE531C7 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceAdapterDeactivation iOS";
- productName = IceAdapterDeactivation;
- productReference = EBD0BA0C20BD4A72616B55A7 /* IceAdapterDeactivation.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "Ice macOS";
+ productName = Ice;
+ productReference = 630B53C4B0DCBF443CE3A899 /* Ice.framework */;
+ productType = "com.apple.product-type.framework";
};
- 50EB7BD9F516353B67693EDA /* IceIAP C++11 iOS */ = {
+ 70541D10A453A62A357FD6DA /* IceDefaultValue iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 98521E3CC51928593719445F /* Build configuration list for PBXNativeTarget "IceIAP C++11 iOS" */;
+ buildConfigurationList = C90BB8962A6540993480EB24 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */;
buildPhases = (
- 5EC139AD6D65DA94D5DCE8A1 /* Headers */,
- DFDCC2C4C597F8CB6CA25EF3 /* Sources */,
- DD2BFBC845F3C0CFDFAFC7CD /* Frameworks */,
+ 3D6A3D2E519E553F66F5E216 /* Sources */,
+ DDD1BD129433CA3F57CE2136 /* Frameworks */,
+ 46294F14D3215DC0246E68E6 /* Resources */,
+ ACCD22EACD54362ACA16B1DA /* Swiftformat & Swiftlint */,
);
buildRules = (
- 02DB8FF862AA083E6F6CDA68 /* PBXBuildRule */,
+ 2D2524A2569CB54EA7F6DEA9 /* PBXBuildRule */,
);
dependencies = (
- F564720888BC11B9DE627E2E /* PBXTargetDependency */,
);
- name = "IceIAP C++11 iOS";
- productName = "IceIAP C++11 iOS";
- productReference = 2283D69713D5C7438C9D5292 /* libIceIAP C++11 iOS.a */;
- productType = "com.apple.product-type.library.static";
+ name = "IceDefaultValue iOS";
+ productName = IceDefaultValue;
+ productReference = 866FFC39BC5078EBDF04F85E /* IceDefaultValue.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- 51D42EC70167D099FF9F11F6 /* IceProxy macOS */ = {
+ 718273E1950034827BC4BCF7 /* IceInvoke macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 426883BE293CC578590EA839 /* Build configuration list for PBXNativeTarget "IceProxy macOS" */;
+ buildConfigurationList = F743A0D4109BD1BAD0F483FF /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */;
buildPhases = (
- 463FF161B7EBEA788B89EDAB /* Sources */,
- 1FB2CCEF2696A5C3D34F66E5 /* Frameworks */,
- CCA2BF146190F3280B0D9E34 /* Resources */,
- DCDE50FFE9DDF48480D8ABCC /* Swiftformat & Swiftlint */,
+ 8DF9AB1E37029E6A058288F5 /* Sources */,
+ 886A49EE98F0F58C2339377C /* Frameworks */,
+ 395C91ABC682A77E19265D98 /* Resources */,
+ A542C912309230479B2AF9FD /* Swiftformat & Swiftlint */,
);
buildRules = (
- F163C99B764CE5398D82F7D9 /* PBXBuildRule */,
+ 8ECA92289E2F462A4B6CE0AC /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceProxy macOS";
- productName = IceProxy;
- productReference = 73A97154F0F1D051F4D4077F /* IceProxy.bundle */;
+ name = "IceInvoke macOS";
+ productName = IceInvoke;
+ productReference = 51406D24D7B88671FC1959C1 /* IceInvoke.bundle */;
productType = "com.apple.product-type.bundle";
};
- 52292A0F78EADC0126136916 /* IceProxyAMD iOS */ = {
+ 74BF9981D471516844317E41 /* IceScope macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 8DBFA5B2AA7690D5C6A46E7E /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */;
+ buildConfigurationList = 8C291B59A5D2440EBA129DD8 /* Build configuration list for PBXNativeTarget "IceScope macOS" */;
buildPhases = (
- 5FEF8651F9FDA48FAD83B505 /* Sources */,
- CC0DDC6FC08D38DE6B1A4C92 /* Frameworks */,
- 319624D9881110F5CD5F4094 /* Resources */,
- 2081B9FF56D4C6748BD9287E /* Swiftformat & Swiftlint */,
+ B5D4569FA4F71C1A9546DB95 /* Sources */,
+ 52AACFCE922C1EDD181FDFD2 /* Frameworks */,
+ 3F2BEDC35BF93D070ABBF796 /* Resources */,
+ 6C43421FB66339318C2ABEAE /* Swiftformat & Swiftlint */,
);
buildRules = (
- 4C6230CDA5E03CC06AAA6B7E /* PBXBuildRule */,
+ 1C41A001F987C9C9F37BE1D6 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceProxyAMD iOS";
- productName = IceProxyAMD;
- productReference = ABAFBED8C90A204AFA67BBF4 /* IceProxyAMD.bundle */;
+ name = "IceScope macOS";
+ productName = IceScope;
+ productReference = DF2792969E80FCBEE04BA8ED /* IceScope.bundle */;
productType = "com.apple.product-type.bundle";
};
- 58E0983675E6A21751BA077D /* IceServantLocator iOS */ = {
+ 74C6B641416DEE756B63F83B /* IceTimeout macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = D1644BE84B2D01FA71FC02FF /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */;
+ buildConfigurationList = 064714039391BE78F7670B39 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */;
buildPhases = (
- BE032C9A2318BDCFB3266B04 /* Sources */,
- C9A558FE9C338BDC1C6E8970 /* Frameworks */,
- E90E9FB7CF7BF29A83FA2747 /* Resources */,
- FF56F517124993A84C687638 /* Swiftformat & Swiftlint */,
+ 617588F840E3EA2FA8DC21AE /* Sources */,
+ 0C3513384C5015BDC0F130F9 /* Frameworks */,
+ B94DDE7B5E36CEE426627D77 /* Resources */,
+ EDBC42F377DFAD24C67F028D /* Swiftformat & Swiftlint */,
);
buildRules = (
- 6FEDE6028003D2FB77F108F0 /* PBXBuildRule */,
+ 58FE2196A8780CC1C132AAA6 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceServantLocator iOS";
- productName = IceServantLocator;
- productReference = 0551639DEFF9603D6E191663 /* IceServantLocator.bundle */;
+ name = "IceTimeout macOS";
+ productName = IceTimeout;
+ productReference = C62B6C403ABEA4B86221A379 /* IceTimeout.bundle */;
productType = "com.apple.product-type.bundle";
};
- 5CF6468D18D175DFA0C3C15C /* IceOptional macOS */ = {
+ 780FF90F7A2E5DB653296F94 /* IceStream iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 0B1B9815FB1FEB319ED16287 /* Build configuration list for PBXNativeTarget "IceOptional macOS" */;
+ buildConfigurationList = 38424EB3784B8F0D400F9850 /* Build configuration list for PBXNativeTarget "IceStream iOS" */;
buildPhases = (
- E7A519FDC6DDE5D3B00D72DB /* Sources */,
- 5D4874CC2EC207A209FA75B8 /* Frameworks */,
- B38341C99164DB5B13D2EC01 /* Resources */,
- AC8E340F874B8D005D771E00 /* Swiftformat & Swiftlint */,
+ E5A173120D4551AA1A379621 /* Sources */,
+ A602355D031E6F85C42DA7D9 /* Frameworks */,
+ A5FDEAFD08A977FD11AACCDC /* Resources */,
+ 809211C4AFF094D3841619CC /* Swiftformat & Swiftlint */,
);
buildRules = (
- 8379DF0DCF4587DB4624FF2F /* PBXBuildRule */,
+ 6A831C09D1A1797892A3F734 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceOptional macOS";
- productName = IceOptional;
- productReference = 794CB5C40C28921A7F8899C9 /* IceOptional.bundle */;
+ name = "IceStream iOS";
+ productName = IceStream;
+ productReference = 20295373CA09AE8ECFCB450B /* IceStream.bundle */;
productType = "com.apple.product-type.bundle";
};
- 61C1F3CDEF881BCAD67C369D /* IceOperationsAMD iOS */ = {
+ 7B52FA8B327DB67AF60C0BB1 /* IceExceptionsAMD macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 36F27D1768F1B0825F888E5B /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */;
+ buildConfigurationList = 5CA49AA47D0471A7616BA1FA /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */;
buildPhases = (
- AD5261CE1E9E1BC5A23E7634 /* Sources */,
- DD10118ED40B2A6866E70B07 /* Frameworks */,
- FE9C6F712A02E1E4A104DE8B /* Resources */,
- 558023C3FFAA7B119A4A0AA1 /* Swiftformat & Swiftlint */,
+ 0D66523ABFA4F5701071EFA8 /* Sources */,
+ 455ADA53D78A4A7E33F92D31 /* Frameworks */,
+ 6A7B4942F6921B70F208E5C3 /* Resources */,
+ 617B34839C773ACD834B3EB8 /* Swiftformat & Swiftlint */,
);
buildRules = (
- ED402D1AB4208AAFF5FD4E2F /* PBXBuildRule */,
+ ADE40EA47B1818FD6D528159 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceOperationsAMD iOS";
- productName = IceOperationsAMD;
- productReference = F1F49CE58160B74F9BAFED79 /* IceOperationsAMD.bundle */;
+ name = "IceExceptionsAMD macOS";
+ productName = IceExceptionsAMD;
+ productReference = 15E1BA9F33DE8EF789B1E6AC /* IceExceptionsAMD.bundle */;
productType = "com.apple.product-type.bundle";
};
- 681378E5D9D07BAA1B211EAD /* IceProperties macOS */ = {
+ 7E58C9E85060E10DB9449968 /* IceLocation macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 7537616DB8D929DFE14E78BD /* Build configuration list for PBXNativeTarget "IceProperties macOS" */;
+ buildConfigurationList = ACF5F649800A7C2D49AAEB9C /* Build configuration list for PBXNativeTarget "IceLocation macOS" */;
buildPhases = (
- 454BCC7D5BAE16A064B121D3 /* Sources */,
- 129570850BEC1D93F0E75FD7 /* Frameworks */,
- 79B1BF76D5D0B6DCE9D9E2C5 /* Resources */,
- 3F380CFF1BA97CB4E0BCA1C4 /* Swiftformat & Swiftlint */,
+ 9EEC88E87721C6EC55B19AE2 /* Sources */,
+ 75ABCBFAC4B7A36A2F414617 /* Frameworks */,
+ 286B7455EBDA0104559B238E /* Resources */,
+ C3B8322B486F329671B332D0 /* Swiftformat & Swiftlint */,
);
buildRules = (
- F240F7B1B2078524D9E5C013 /* PBXBuildRule */,
+ 470FCDFE24EE82E23CAA883B /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceProperties macOS";
- productName = IceProperties;
- productReference = 3E6B5AD7E9945BABB2529D9E /* IceProperties.bundle */;
+ name = "IceLocation macOS";
+ productName = IceLocation;
+ productReference = 9481B651D132BA3CFD0AAFA9 /* IceLocation.bundle */;
productType = "com.apple.product-type.bundle";
};
- 6B88A98489947A12B8C8631A /* IceSSLConfiguration macOS */ = {
+ 7E64A09456EF45C06475AEF9 /* IceStream macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 529EB7CCB7C463103905DF35 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */;
+ buildConfigurationList = 4FBAF59E8DCB5E4F5FC9951C /* Build configuration list for PBXNativeTarget "IceStream macOS" */;
buildPhases = (
- 9A01FFB341B9905C338B69D1 /* Sources */,
- 01FF6EDEEBCA60035B0916E9 /* Frameworks */,
- A0AB685E70DD31D83B011B4A /* Resources */,
- 3F99A5EF628E3834ACB9D2ED /* Swiftformat & Swiftlint */,
+ 7CDA69CA3A3BE95C0018632E /* Sources */,
+ E92E0003EE476D2A98274A3B /* Frameworks */,
+ 89283BC845A6321576ACAE45 /* Resources */,
+ FAC9BF514EFEC1A8EACF9E34 /* Swiftformat & Swiftlint */,
);
buildRules = (
- B350F72476838E6F6DDC551A /* PBXBuildRule */,
+ 7E536F915E7439F0ACE31E4B /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceSSLConfiguration macOS";
- productName = IceSSLConfiguration;
- productReference = 0DD700D41041F13457102359 /* IceSSLConfiguration.bundle */;
+ name = "IceStream macOS";
+ productName = IceStream;
+ productReference = FE689398E99ABF73ED63012C /* IceStream.bundle */;
productType = "com.apple.product-type.bundle";
};
- 6BCAD53F679E6EFF6E9ABE76 /* TestCommon iOS */ = {
+ 82A5700C3111DD043A653C62 /* IceImpl iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 4036886D6C40B4610A418198 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */;
+ buildConfigurationList = ADA8F6BD55276F10B6E816C5 /* Build configuration list for PBXNativeTarget "IceImpl iOS" */;
buildPhases = (
- 9D6527FA944B454CDD88F1BE /* Headers */,
- 69A584B596E0CAEFD2F3C45B /* Sources */,
- F2C8C170389FAE4B34C5FFE5 /* Frameworks */,
- 7DF7300D926EB869E06886C7 /* Resources */,
- FAAC5B67CE77808D63D293F1 /* Swiftformat & Swiftlint */,
+ 46086259263420DEC2369529 /* Headers */,
+ 3AD4CBE68208C0F387CB4FD4 /* Sources */,
+ 182C50B8BBC03EBD7F67D884 /* Frameworks */,
+ 2415BAF24675CA6B39C037B5 /* Resources */,
);
buildRules = (
- 5C17074E36854D493C04AAB5 /* PBXBuildRule */,
);
dependencies = (
);
- name = "TestCommon iOS";
- productName = TestCommon;
- productReference = 8FA91575D4D2B35946BF8E43 /* TestCommon.framework */;
+ name = "IceImpl iOS";
+ productName = IceImpl;
+ productReference = A63DCDA9CA07C5D78EB18355 /* IceImpl.framework */;
productType = "com.apple.product-type.framework";
};
- 6CEDEA9B995306DFD9C2E473 /* IceFacets iOS */ = {
+ 853E509B9FD262019EBA40BE /* Glacier2 iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = AF4E60455B7E9C0AFED12C8C /* Build configuration list for PBXNativeTarget "IceFacets iOS" */;
+ buildConfigurationList = E4BCB0FAD79923D9399D5008 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */;
buildPhases = (
- 05DB80F8EB3F033DB3E7C4BE /* Sources */,
- 17DC448F53792822FEC0C851 /* Frameworks */,
- A9F037CE85448E42167F6356 /* Resources */,
- 0A2EDC7CA06CC7A9259CE5B3 /* Swiftformat & Swiftlint */,
+ DE937BBA063D7704578D57EC /* Headers */,
+ EBCB845104B7CA5323964461 /* Sources */,
+ 4EC3F43A252A5469B91F2D0E /* Frameworks */,
+ D5CE8187A11BA735C40B3737 /* Resources */,
);
buildRules = (
- E0C276430979A9D36E7B9A4C /* PBXBuildRule */,
+ CFDDFB44B3E9C95882C9CF88 /* PBXBuildRule */,
);
dependencies = (
+ 3FDB52F936213826B19389A6 /* PBXTargetDependency */,
);
- name = "IceFacets iOS";
- productName = IceFacets;
- productReference = 734A694F78C0E5DB148EC8DF /* IceFacets.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "Glacier2 iOS";
+ productName = Glacier2;
+ productReference = 0C6CA87763EF92E236588FBA /* Glacier2.framework */;
+ productType = "com.apple.product-type.framework";
};
- 6E6FDF29A9BD1AAC14D11E06 /* IceExceptionsAMD macOS */ = {
+ 86A66976BDA39228F3A72337 /* IceLocation iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = A6A12AD3D7060FB4C9BE0212 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */;
+ buildConfigurationList = 54F9D1E55169ADDA28565C2F /* Build configuration list for PBXNativeTarget "IceLocation iOS" */;
buildPhases = (
- 2068BDE55746D3B80CC103B9 /* Sources */,
- 0B71E2123726959C4C0BA581 /* Frameworks */,
- C3D7F17010C8E21113AA2CDA /* Resources */,
- 54F1EF8E5DE7832AEB6C61C2 /* Swiftformat & Swiftlint */,
+ 0CF37023CE75E983D2329FDD /* Sources */,
+ 484F5714BC4493143F66E54B /* Frameworks */,
+ 47B9A4FB73922CA516CAC09D /* Resources */,
+ 3A448222314BCE9743A4C4A8 /* Swiftformat & Swiftlint */,
);
buildRules = (
- FF09340DCCCDCC76624437F5 /* PBXBuildRule */,
+ 7B930E120F9057CFA734EDC7 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceExceptionsAMD macOS";
- productName = IceExceptionsAMD;
- productReference = 59BDA919B81B67B5D58B445E /* IceExceptionsAMD.bundle */;
+ name = "IceLocation iOS";
+ productName = IceLocation;
+ productReference = A148A58FC6419CF431F133D9 /* IceLocation.bundle */;
productType = "com.apple.product-type.bundle";
};
- 72CC3BF62B704A82067C98D1 /* IceAmi macOS */ = {
+ 9005F12C5A1006056BCDD1BA /* IceSSLConfiguration macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 315074C3E24CE4937956CF21 /* Build configuration list for PBXNativeTarget "IceAmi macOS" */;
+ buildConfigurationList = AD060323B6E89ABBD37D5412 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */;
buildPhases = (
- 2A608B7BE3599FCD5C604B8A /* Sources */,
- BA2A48787360AB526EED6927 /* Frameworks */,
- C01F5770D8BE4A38F8726E1A /* Resources */,
- 0339E7E60B6994CA1A76F7B1 /* Swiftformat & Swiftlint */,
+ A58EB3CF089EDC3156B2B24B /* Sources */,
+ 48ACAAE0BF72F5146AB0B96D /* Frameworks */,
+ CBF079B433A6C01EEE1EBC76 /* Resources */,
+ F09D84261CD7EB713B9A1208 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 0FC83B938B9740777DECB85A /* PBXBuildRule */,
+ FAEF8F4AEF26C83D11BC6C31 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceAmi macOS";
- productName = IceAmi;
- productReference = 664DE546AEA6A224A9B4EB0A /* IceAmi.bundle */;
+ name = "IceSSLConfiguration macOS";
+ productName = IceSSLConfiguration;
+ productReference = 8BC872547290B7E35FCC1E98 /* IceSSLConfiguration.bundle */;
productType = "com.apple.product-type.bundle";
};
- 745B3C1B56A24EC2C6B28C0B /* IceAdapterDeactivation macOS */ = {
+ 917FA4C5A8B4A5A1376C00A7 /* IceSlicingObjectsAMD macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = C113FB2FAE008EC4757DB682 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */;
+ buildConfigurationList = B4E01ECB8C7E2FF0AE45FC02 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */;
buildPhases = (
- 367DE12070AA2F3E654969AA /* Sources */,
- 03CE5874671B6170E8C7F21F /* Frameworks */,
- 0797227506B33F4C0807065A /* Resources */,
- 91C01076C7064C2293B3094D /* Swiftformat & Swiftlint */,
+ 2FF7B7F06BAE081BF9F726AA /* Sources */,
+ E0A7992152D28A104BA72718 /* Frameworks */,
+ 6C37070AF83D63F58F6531BF /* Resources */,
+ 56060A99446DFA62E9116ACB /* Swiftformat & Swiftlint */,
);
buildRules = (
- 0E0A8B6A213A0CA8CD817635 /* PBXBuildRule */,
+ 0AE3FAF3651F7D971AE56AEF /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceAdapterDeactivation macOS";
- productName = IceAdapterDeactivation;
- productReference = 8E8BB0CB5BF9A48E9E7CC2BF /* IceAdapterDeactivation.bundle */;
+ name = "IceSlicingObjectsAMD macOS";
+ productName = IceSlicingObjectsAMD;
+ productReference = F5FFEAC74A94BBC740FD19E2 /* IceSlicingObjectsAMD.bundle */;
productType = "com.apple.product-type.bundle";
};
- 787C5CBA95AB46FF6CE79E78 /* IceDiscovery C++11 macOS */ = {
+ 9481764D72790337282158DA /* SliceEscape iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FBF289C22BE858FDED854882 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */;
+ buildConfigurationList = 2A83495F040C4FA2AB2F9E86 /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */;
buildPhases = (
- 2496DF1B314068A1EC1D0396 /* Headers */,
- B15803FC33584BFED92B04A4 /* Sources */,
- 59ACB088EE5294094A3953E1 /* Frameworks */,
+ DF3E0A9757026E51E93E57CD /* Sources */,
+ DE16CE9CB919F197F49DAA10 /* Frameworks */,
+ 6DC0F4B1C3D38EDCF1B022E0 /* Resources */,
+ FA84EF77736151A6FE968FBE /* Swiftformat & Swiftlint */,
);
buildRules = (
- E4F90A82607EA0DAC54ACB6E /* PBXBuildRule */,
+ C5DD475406DFE059F294DC30 /* PBXBuildRule */,
);
dependencies = (
- FCF7FC31BBEC4E7C38EB13CC /* PBXTargetDependency */,
);
- name = "IceDiscovery C++11 macOS";
- productName = "IceDiscovery C++11 macOS";
- productReference = 2FEEB7A710CB728ED1FC66D6 /* libIceDiscovery C++11 macOS.a */;
- productType = "com.apple.product-type.library.static";
+ name = "SliceEscape iOS";
+ productName = SliceEscape;
+ productReference = 322C504F6FBC0E00C381D83D /* SliceEscape.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- 7C51C4D927219908F31FD1DF /* IceLocatorDiscovery C++11 iOS */ = {
+ 98425A8E3491D503D949A569 /* IceSlicingObjectsAMD iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = DBA11E9A93E60DF58EDA583A /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */;
+ buildConfigurationList = 8A7A775640C3114B93B0A4CC /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */;
buildPhases = (
- 4B6A3B94AA3483E714BB8248 /* Headers */,
- C07D2A9A378B181FACED955F /* Sources */,
- B7C156CCF5C8C98ADCD1544E /* Frameworks */,
+ 2F34DC5F5A380F109C8E8A69 /* Sources */,
+ 2BDE0688FE07596526FAFC2B /* Frameworks */,
+ 5F4852FB8C06011A12A6637C /* Resources */,
+ F6F0431FE022D9C621D20A40 /* Swiftformat & Swiftlint */,
);
buildRules = (
- B86FDD52F325F94B78865C5A /* PBXBuildRule */,
+ 5623775083D35C03CD09C85A /* PBXBuildRule */,
);
dependencies = (
- F31B5C26D7CD1F507855EE50 /* PBXTargetDependency */,
);
- name = "IceLocatorDiscovery C++11 iOS";
- productName = "IceLocatorDiscovery C++11 iOS";
- productReference = 8A354429E9BF7539C167CEB8 /* libIceLocatorDiscovery C++11 iOS.a */;
- productType = "com.apple.product-type.library.static";
+ name = "IceSlicingObjectsAMD iOS";
+ productName = IceSlicingObjectsAMD;
+ productReference = D8918D7258991F1E8CF58618 /* IceSlicingObjectsAMD.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- 7D8B11B9BA9DF9540757E9E2 /* IceProxy iOS */ = {
+ 9ABEB8C8AD9097D7F07B50B5 /* IceStorm macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 542730CEDAC1D2E87A029B87 /* Build configuration list for PBXNativeTarget "IceProxy iOS" */;
+ buildConfigurationList = A373504C9CC59D9F565CC675 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */;
buildPhases = (
- 3699166C07DBD0238F22B990 /* Sources */,
- 9A5AFBC9141096708E512FED /* Frameworks */,
- 6AEF10FD50710C8CB4E035E3 /* Resources */,
- FA948278EB323ECFC8117432 /* Swiftformat & Swiftlint */,
+ 7ECDF7A8207CCA9124106F09 /* Headers */,
+ E602F87A1621E53F99DC6159 /* Sources */,
+ B16D8CC51812B2BC7E5ED912 /* Frameworks */,
+ 7AC874FE548C3A9CE7B88E4E /* Resources */,
);
buildRules = (
- 8F5151CD28D64D9B8BC95083 /* PBXBuildRule */,
+ A7E377C918B1DB9D6E6489D5 /* PBXBuildRule */,
);
dependencies = (
+ 2EC87EF317194682F6001FB2 /* PBXTargetDependency */,
);
- name = "IceProxy iOS";
- productName = IceProxy;
- productReference = 594CACC0045DC32A52CF8674 /* IceProxy.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "IceStorm macOS";
+ productName = IceStorm;
+ productReference = 5FB28C8905B0491A1AC74818 /* IceStorm.framework */;
+ productType = "com.apple.product-type.framework";
};
- 804D21EDE7515F8014A581B6 /* TestDriver macOS */ = {
+ 9BF54EDF114BEAB8899A47F9 /* IceAmi macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 8457D3048B91B96446309692 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */;
+ buildConfigurationList = 3AF3001C3CB7029DDF4887BB /* Build configuration list for PBXNativeTarget "IceAmi macOS" */;
buildPhases = (
- AB2FA8C6744BB9F39A5C18EA /* Sources */,
- E5FF65D45A572591D959E693 /* Frameworks */,
- C206F6E056499487E90D6197 /* Resources */,
- 78E440A99B8445DA939FD4A6 /* Swiftformat & Swiftlint */,
- D0BFF0E4F14730D0B48B3170 /* Copy Frameworks */,
- 5B93E56D795C385F1853E9BE /* Copy Symbols */,
+ DF52695754AFC111F5C6AA65 /* Sources */,
+ 85AEE67706B48B7E255748AD /* Frameworks */,
+ 51E29C54273A051F786F0022 /* Resources */,
+ B87DF4C10B82AF830EB49404 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 95482D63B61AD6BFB2D99120 /* PBXBuildRule */,
+ 7312000DAB6DD18FD7D9233E /* PBXBuildRule */,
);
dependencies = (
- 16C26BE2CE56212EEED11ACE /* PBXTargetDependency */,
- 74C341BEBE4F93BF564D4C68 /* PBXTargetDependency */,
- ADA0941E3E4B5B8C5F8B29E7 /* PBXTargetDependency */,
- A7F9C139FD5FB4D51F12D300 /* PBXTargetDependency */,
- 42810233E9A45788BC92891C /* PBXTargetDependency */,
- 0812F80B66346FB090B8A325 /* PBXTargetDependency */,
- C62DF3AE0247A10B7B772F00 /* PBXTargetDependency */,
- DAC125EAC29F17096A3A0D02 /* PBXTargetDependency */,
- 055609914FB0CFDF4BABC6C0 /* PBXTargetDependency */,
- CF332F3A52E4FEF205A5FB6B /* PBXTargetDependency */,
- 6AA574C74CCC578B7432D624 /* PBXTargetDependency */,
- 10ACDDC5DBF41BB3B0351BF4 /* PBXTargetDependency */,
- 2FE793C179B6207352B4D870 /* PBXTargetDependency */,
- 1C057B65D05B833913568F3F /* PBXTargetDependency */,
- 0B11D7F975773AC9256E38BC /* PBXTargetDependency */,
- F73C0D35E3D7AAC3549AA38B /* PBXTargetDependency */,
- 499156DE39EA866DEE27982C /* PBXTargetDependency */,
- D94F105F21B2CA72D50187D9 /* PBXTargetDependency */,
- D19CD979F605E8BD41055908 /* PBXTargetDependency */,
- 35917C7823FBDD520C665CFD /* PBXTargetDependency */,
- 3632AFE15830E26E77353267 /* PBXTargetDependency */,
- 92AE682ECBFDFC92316F8F4A /* PBXTargetDependency */,
- A81789CB426DFF874340F6FA /* PBXTargetDependency */,
- 3CC86BDBC2BE3D9319E5A643 /* PBXTargetDependency */,
- 30EE8A8B19ACA9B83868B53E /* PBXTargetDependency */,
- FFB69BD57020E38CBDC4A5FC /* PBXTargetDependency */,
- D61565BAF74E0EF7932537C3 /* PBXTargetDependency */,
- 5F5E524240889EA74A14D41C /* PBXTargetDependency */,
- A604DB2B6B5B64B9B0E768B6 /* PBXTargetDependency */,
- A43D52FD149947E9854A35FD /* PBXTargetDependency */,
- 92555D3A9F10179AF701CDC3 /* PBXTargetDependency */,
- E05946E2750ABAF28332F61F /* PBXTargetDependency */,
- 6AEA5BF8463452678E11E38F /* PBXTargetDependency */,
- 4235779BACB41CB2FBB34E4D /* PBXTargetDependency */,
- F1390367DA81D3738B47882C /* PBXTargetDependency */,
- 94569CC229996BE0AD227F4E /* PBXTargetDependency */,
- 1CC9B98C3CCDD8EDF8975A31 /* PBXTargetDependency */,
- 8BBEEBBC9990C8C12A2E4E90 /* PBXTargetDependency */,
- DA1022D5B25104A90CD25100 /* PBXTargetDependency */,
);
- name = "TestDriver macOS";
- productName = TestDriver;
- productReference = 93D9509A39BDFCB18004A379 /* TestDriver.app */;
- productType = "com.apple.product-type.application";
+ name = "IceAmi macOS";
+ productName = IceAmi;
+ productReference = D50984E810079607F9CBD3D6 /* IceAmi.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- 830E9112B17863864A340FE9 /* IceInfo macOS */ = {
+ 9CC26892A88B1BB899E53DF5 /* Ice iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 7F168B364AD77CD15E38A3F0 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */;
+ buildConfigurationList = 599A03172F3DD05E9B21DD56 /* Build configuration list for PBXNativeTarget "Ice iOS" */;
buildPhases = (
- 1F59CD3431FD7596963CF977 /* Sources */,
- 50C1F12753C75322108E2A8F /* Frameworks */,
- EF28EEBE6608AD0284BA1BEE /* Resources */,
- B9546737BE96F627A4400DB1 /* Swiftformat & Swiftlint */,
+ 6A07884FAC3D3A473BD8511F /* Headers */,
+ EB27FA1A1721942EAE540FF8 /* Sources */,
+ B4028F19E8B2E1D92D1EF04A /* Frameworks */,
+ 937E063387845413B9DAE535 /* Resources */,
+ B8DDCAEE0D115923C2B37FFD /* Swiftformat & Swiftlint */,
);
buildRules = (
- B830D6608623871E04F36273 /* PBXBuildRule */,
+ 14AFFF5F55AF63C02D9C8EB6 /* PBXBuildRule */,
+ 4AE08462FEC8159FB9E5A57C /* PBXBuildRule */,
+ 4FEE1BB6EBCBEF57BD0EB0EA /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceInfo macOS";
- productName = IceInfo;
- productReference = 21101A4A8B29F9285DA12AC8 /* IceInfo.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "Ice iOS";
+ productName = Ice;
+ productReference = 6374A039ED84F684F9BA9C27 /* Ice.framework */;
+ productType = "com.apple.product-type.framework";
};
- 83CCFF5F1359DE0B92E2AF70 /* SliceEscape macOS */ = {
+ 9CC7B60AEA78A6484EAA237C /* IceOptional macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = ABEC778C602F8EEC501D2619 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */;
+ buildConfigurationList = FB69FF66505566A1F0F531E7 /* Build configuration list for PBXNativeTarget "IceOptional macOS" */;
buildPhases = (
- FDCCB0606A000E5432AC4497 /* Sources */,
- A24C7B04B9E969DE9CF4A57D /* Frameworks */,
- 289BD974E0DD507C0D1DFFCE /* Resources */,
- B4351A9E43F03DEC983B6D93 /* Swiftformat & Swiftlint */,
+ AF4EE30053EFFF3091D960DF /* Sources */,
+ A1908FC84025AEC72399F802 /* Frameworks */,
+ 29459FE6CE25A350AAC83531 /* Resources */,
+ 95766AB08FD969B4E630CCA2 /* Swiftformat & Swiftlint */,
);
buildRules = (
- FF2BB6DD9BE033784754D8FB /* PBXBuildRule */,
+ E914077A9BD68E2A51033078 /* PBXBuildRule */,
);
dependencies = (
);
- name = "SliceEscape macOS";
- productName = SliceEscape;
- productReference = 0FBF93F2D51FCD340542AF0C /* SliceEscape.bundle */;
+ name = "IceOptional macOS";
+ productName = IceOptional;
+ productReference = DBB159780C224B99CDFB5E11 /* IceOptional.bundle */;
productType = "com.apple.product-type.bundle";
};
- 84314C42C05E6B069FAF3710 /* IceProperties iOS */ = {
+ A044C3AF402929B4D55A9080 /* IceExceptions iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = AE4C138C66BC2B1DCE698BE0 /* Build configuration list for PBXNativeTarget "IceProperties iOS" */;
+ buildConfigurationList = 2B9BF32EB50A287532EFE5DB /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */;
buildPhases = (
- 2A67AF10D4DD89A6E2951FFA /* Sources */,
- A3C4D497E452DC1CE53FF3E6 /* Frameworks */,
- BB854970707C92855BECCD6F /* Resources */,
- 57B60F78CA96654D582BC698 /* Swiftformat & Swiftlint */,
+ 0B0171600B105FCFD505CC69 /* Sources */,
+ 16ACC68D3C75E758C4F2E01C /* Frameworks */,
+ ED04F8DB769A095C24B10DDD /* Resources */,
+ C5D0EAA8FC10045964DA0816 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 02C51F7C9FB6510F67303724 /* PBXBuildRule */,
+ 48A7CF0E8AD916BB737444E9 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceProperties iOS";
- productName = IceProperties;
- productReference = E2221223DDFEC20D1310DB77 /* IceProperties.bundle */;
+ name = "IceExceptions iOS";
+ productName = IceExceptions;
+ productReference = AC0CDB474BB450E68664654E /* IceExceptions.bundle */;
productType = "com.apple.product-type.bundle";
};
- 8785D7837C39C2283224DA75 /* IceRetry macOS */ = {
+ A85959564B5FB3770489D66C /* IceInheritance iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 4B53509FD8207E1712DE9CD2 /* Build configuration list for PBXNativeTarget "IceRetry macOS" */;
+ buildConfigurationList = AC4840906D5390A1ACF1707D /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */;
buildPhases = (
- 92D41DE1038D51D2691573BE /* Sources */,
- 4E88A7AB00FD7534EE993DE3 /* Frameworks */,
- CA9FD825CA74C9CD4B5BE88E /* Resources */,
- 983066BD338971BCD9055935 /* Swiftformat & Swiftlint */,
+ 1B488B219AAD34222F0EEB53 /* Sources */,
+ 786CCD283FDFA1333FA94A4E /* Frameworks */,
+ EFF6A4BE78A57FD6031DC786 /* Resources */,
+ 846E422CB48606E9E4DEBA34 /* Swiftformat & Swiftlint */,
);
buildRules = (
- A7330F7E01C43FDDC7EC97A9 /* PBXBuildRule */,
+ 418B250A03318E67044979C2 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceRetry macOS";
- productName = IceRetry;
- productReference = 48E3BED1D96A31F2947B3802 /* IceRetry.bundle */;
+ name = "IceInheritance iOS";
+ productName = IceInheritance;
+ productReference = 775EFBE78694683F3173F765 /* IceInheritance.bundle */;
productType = "com.apple.product-type.bundle";
};
- 89D3AFE4AD95A970E6498E06 /* Ice macOS */ = {
+ A95A462BF3224269501972C7 /* IceObjects macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 9A1C26BA21A67EEE50E3490B /* Build configuration list for PBXNativeTarget "Ice macOS" */;
+ buildConfigurationList = B053A2B5E4DFA7ADD41297BA /* Build configuration list for PBXNativeTarget "IceObjects macOS" */;
buildPhases = (
- 3F5675CA29BF0733FE9A0E9E /* Headers */,
- 7AD23EE8AD93C284687DA83F /* Sources */,
- 8D3AC889941C77BFD0E81C66 /* Frameworks */,
- 718DE06CD3652CB466BBA7A6 /* Resources */,
- 3571F797E1C8A2E25D58E9F0 /* Swiftformat & Swiftlint */,
+ 96747F5114F453B5F89727C7 /* Sources */,
+ A17BCAC4D7416A576BBC1D07 /* Frameworks */,
+ 2361AEBE79B32E8F9EB19425 /* Resources */,
+ 53EB7E8B1472700FED4BA189 /* Swiftformat & Swiftlint */,
);
buildRules = (
- C5459FABB45D1478606602B9 /* PBXBuildRule */,
- 2BF27F05A7910E054E69F823 /* PBXBuildRule */,
+ 55A39830E710846103CDC97C /* PBXBuildRule */,
);
dependencies = (
);
- name = "Ice macOS";
- productName = Ice;
- productReference = BA8101A60EED9B96E5B22B7F /* Ice.framework */;
- productType = "com.apple.product-type.framework";
+ name = "IceObjects macOS";
+ productName = IceObjects;
+ productReference = 72F0133C3F5E2F48BC792374 /* IceObjects.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- 8D10D5D5B55A211B9D5B239E /* IceLocatorDiscovery C++11 macOS */ = {
+ AAC6189F144D95865D2DFFA2 /* IceLocatorDiscovery C++11 macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = ABCB4BF2F8351C233BB17527 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */;
+ buildConfigurationList = 3D5362A6A9DCA922C7836BA6 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */;
buildPhases = (
- D698BD30C22D437BDEDEBD75 /* Headers */,
- CD1DD3C806C65D266912F4C8 /* Sources */,
- 012EC33C0D2CF6AD911A4D12 /* Frameworks */,
+ 6404D94C6E19D3FAA2E2DF25 /* Headers */,
+ F94100741F0171876B47D60E /* Sources */,
+ FF5C42DBC80AF8AC0483DE17 /* Frameworks */,
);
buildRules = (
- 96EB29E7D3715A577603A0F9 /* PBXBuildRule */,
+ 2AFDB45DB19ACC9E6067FF68 /* PBXBuildRule */,
);
dependencies = (
- 7EE988CA9788B37224C7E16B /* PBXTargetDependency */,
+ 81200067C92CE4F275FC7939 /* PBXTargetDependency */,
);
name = "IceLocatorDiscovery C++11 macOS";
productName = "IceLocatorDiscovery C++11 macOS";
- productReference = 217D1B8BD2609F6135197ED9 /* libIceLocatorDiscovery C++11 macOS.a */;
+ productReference = 1B61A6FA40AFB5C32FEAA154 /* libIceLocatorDiscovery C++11 macOS.a */;
productType = "com.apple.product-type.library.static";
};
- 8F8ECD3FC3C6C282CA7C748A /* SliceEscape iOS */ = {
+ AD8EE389D94E8B7A9B7F1E3E /* IceRetry iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 900419A1217A47848F7F878F /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */;
+ buildConfigurationList = 94E7636391C60516A03A2298 /* Build configuration list for PBXNativeTarget "IceRetry iOS" */;
buildPhases = (
- 56218FEA142DA538DCB5908B /* Sources */,
- D4BC4189C05FC602E7F7AD36 /* Frameworks */,
- E7BF879BDD8199182B551831 /* Resources */,
- C89E672A9FA3350C738F562F /* Swiftformat & Swiftlint */,
+ 101967D9CD033F096516A4E1 /* Sources */,
+ 1BA9A7D667E0E020D4537429 /* Frameworks */,
+ 920FE675BE2E310DC6B6A18C /* Resources */,
+ B57390BB0B1E6850E4BE8452 /* Swiftformat & Swiftlint */,
);
buildRules = (
- F53AADACB7A733352918CA94 /* PBXBuildRule */,
+ 5F84D16F382531CB448CE271 /* PBXBuildRule */,
);
dependencies = (
);
- name = "SliceEscape iOS";
- productName = SliceEscape;
- productReference = 02A653BDDFE566D6362AC794 /* SliceEscape.bundle */;
+ name = "IceRetry iOS";
+ productName = IceRetry;
+ productReference = 565110536C762BBC6BC835F7 /* IceRetry.bundle */;
productType = "com.apple.product-type.bundle";
};
- 928BFD8C43F5AA1C2F7F86EE /* IceSlicingExceptions macOS */ = {
+ AE89C19755A8AF0192B7C09E /* IceTimeout iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 8695A3ED3FF360177DD416F8 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */;
+ buildConfigurationList = A049B8D3BC61C4BCB949D2BE /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */;
buildPhases = (
- AC46A26F5334F6646A03B23E /* Sources */,
- BAFC013EDF26ED4C5402ECDE /* Frameworks */,
- 82F223AB644559FAD1A87486 /* Resources */,
- 5C99192370A58855CF9C14B9 /* Swiftformat & Swiftlint */,
+ 915E52CFBA4E926827F89842 /* Sources */,
+ EDD741F2706E70D40E5D24CB /* Frameworks */,
+ ED07679856573B78405C660E /* Resources */,
+ 4DF3958ED9372C5A29A41769 /* Swiftformat & Swiftlint */,
);
buildRules = (
- B11C84AF19601BAFD33C03AF /* PBXBuildRule */,
+ 5114AA713C1C2FBEDC5D8EB9 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceSlicingExceptions macOS";
- productName = IceSlicingExceptions;
- productReference = 034D5FF825FFE2A304A95FEB /* IceSlicingExceptions.bundle */;
+ name = "IceTimeout iOS";
+ productName = IceTimeout;
+ productReference = FAFBC31486E68C91E83A6419 /* IceTimeout.bundle */;
productType = "com.apple.product-type.bundle";
};
- 95BBF08A50DC5F76CB2F6923 /* IceAcm iOS */ = {
+ AF5DFD5174E2D34ED1167326 /* IceAmi iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 1B6B8E537547317F1F5AA8FC /* Build configuration list for PBXNativeTarget "IceAcm iOS" */;
+ buildConfigurationList = E76BB2299C636133E87D564E /* Build configuration list for PBXNativeTarget "IceAmi iOS" */;
buildPhases = (
- A86E14DF253A5DF96A4D75B5 /* Sources */,
- 1A18DF97015DB2EE6F1EB01E /* Frameworks */,
- 31618C7BA3B5DC06897DDFAF /* Resources */,
- FD3373A7D561CAA5B0B224A3 /* Swiftformat & Swiftlint */,
+ 234C0F3D3545D517E8190429 /* Sources */,
+ 3E19FD668FFEBB03DE8C289E /* Frameworks */,
+ 8AE6A48BFF9CD5A93701C0AA /* Resources */,
+ 78A53EBE72A00EF49C53B1B5 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 1A9226F8D9F868CA1C7A10F6 /* PBXBuildRule */,
+ 7BE96A3059EBEAACB97F4C75 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceAcm iOS";
- productName = IceAcm;
- productReference = A656B7EA027D8EED38F05BA9 /* IceAcm.bundle */;
+ name = "IceAmi iOS";
+ productName = IceAmi;
+ productReference = A8317EBDEA737A29A26FBE54 /* IceAmi.bundle */;
productType = "com.apple.product-type.bundle";
};
- 969E38571FC7BE0D1FA5C0F2 /* IceTimeout macOS */ = {
+ AFF5C170D720B29E4A6ABD57 /* IceBinding iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 33D4048CC4EA1DDC228DF8A7 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */;
+ buildConfigurationList = 666DF9C599B8622C9E860697 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */;
buildPhases = (
- F627D711854849F8F48774AD /* Sources */,
- BA168A94DA839850CE4DE1EB /* Frameworks */,
- F707C7FD823B272342FBB470 /* Resources */,
- 23224A7251EAD93840CE4D26 /* Swiftformat & Swiftlint */,
+ 7B860E5C1B40D1CCDD58113E /* Sources */,
+ 4105D6B40F340BA8683FFFBC /* Frameworks */,
+ 4A23545CA6DF4A31892011C7 /* Resources */,
+ 441ABE8BD326D534EF37D2BD /* Swiftformat & Swiftlint */,
);
buildRules = (
- 05C79E758597B36A64B90D4D /* PBXBuildRule */,
+ 131464A08B67FBD8BB055BF6 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceTimeout macOS";
- productName = IceTimeout;
- productReference = 2B59DE6E7E31115EA6E52219 /* IceTimeout.bundle */;
+ name = "IceBinding iOS";
+ productName = IceBinding;
+ productReference = 351BCBF951501569DADF145C /* IceBinding.bundle */;
productType = "com.apple.product-type.bundle";
};
- A0C4BC07716CFC719E71B864 /* IceOptionalAMD iOS */ = {
+ B0CE4A0950BF71C921ADDF6F /* IceObjects iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = BEE3CE9720A8AD9DB0663E0F /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */;
+ buildConfigurationList = D9276EC4F7CCD2B90FDF719A /* Build configuration list for PBXNativeTarget "IceObjects iOS" */;
buildPhases = (
- 3D801E0157278B1FE6B02661 /* Sources */,
- 63CCEFD42E4A7FB3E3475C0B /* Frameworks */,
- B152E3719F315BE08395F193 /* Resources */,
- 5B3A7694D77C3ADE2CA75633 /* Swiftformat & Swiftlint */,
+ B314BDF86BABC52A0FB4B295 /* Sources */,
+ BEB35E5803FBC21F68F06A80 /* Frameworks */,
+ 0ADF6C76425B8B18AC8063BD /* Resources */,
+ 0CC37C2A83BD9509F427DF73 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 1B0689F1D1870DAB544ADFCC /* PBXBuildRule */,
+ FB191F47675FE5CED7DD9EBB /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceOptionalAMD iOS";
- productName = IceOptionalAMD;
- productReference = FF0F98E6AF1E0870BEB89E7A /* IceOptionalAMD.bundle */;
+ name = "IceObjects iOS";
+ productName = IceObjects;
+ productReference = 7481133E66BBCFB35C59DD6B /* IceObjects.bundle */;
productType = "com.apple.product-type.bundle";
};
- A1F0756F55089999FFC176DC /* IceSSLConfiguration iOS */ = {
+ B0DD51FFCF661AD3AAF3C70D /* IceHold macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 096864319ABEAC03601BF640 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */;
+ buildConfigurationList = 3708D65482505072EA299F73 /* Build configuration list for PBXNativeTarget "IceHold macOS" */;
buildPhases = (
- E329ED17E61E16808B33EF9E /* Sources */,
- 187E9CF41A5D9233F23789B2 /* Frameworks */,
- CD7FCB844CA3EABC76D41C59 /* Resources */,
- A8277E856FE9170569081041 /* Swiftformat & Swiftlint */,
+ 85FF82E93983D8D230302187 /* Sources */,
+ DAD950AAE934147197AB7FA7 /* Frameworks */,
+ D2E1C76AF4B1F7254829DF15 /* Resources */,
+ C98F45CAAA556B9EF28BB153 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 13489F4FBEAEC351E63C0BA7 /* PBXBuildRule */,
+ DDFBFB634CB064A39D01F83B /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceSSLConfiguration iOS";
- productName = IceSSLConfiguration;
- productReference = 86E120D7592D593667241A60 /* IceSSLConfiguration.bundle */;
+ name = "IceHold macOS";
+ productName = IceHold;
+ productReference = AC1D8A33F8AB3689E7733586 /* IceHold.bundle */;
productType = "com.apple.product-type.bundle";
};
- A62091DEE8CD959DE94A8F0D /* IceProxyAMD macOS */ = {
+ B2BF1813AE20AC0EA6B7A103 /* TestDriver macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 28B7FBC67E3CDBAFA2522F32 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */;
+ buildConfigurationList = 31E095C7331413338107B448 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */;
buildPhases = (
- 0A4DBBA188AA470466DD8C60 /* Sources */,
- 17A34BD0869E9AE8BB46DEA3 /* Frameworks */,
- 3D821856EE1FDAD92D7E6B82 /* Resources */,
- 3BAA44D0CE849E0C8A394181 /* Swiftformat & Swiftlint */,
+ 9F7DB6C28E797DCFCF28E346 /* Sources */,
+ 236F9DA1EBE6F3DD0556BC01 /* Frameworks */,
+ 884133A2D68638AF7BF31663 /* Resources */,
+ D8FA32D321954E26FCE1C4FB /* Swiftformat & Swiftlint */,
+ 1E4BA54E6C17567129C4A64C /* Copy Frameworks */,
+ 7A1DAD903573F751F091B1EE /* Copy Symbols */,
);
buildRules = (
- DDF4876FEAB9724BB5B9E7BA /* PBXBuildRule */,
+ 4FD02D17D015F3DBE14A9CF8 /* PBXBuildRule */,
);
dependencies = (
+ 97468E816AB595F2DC5A330C /* PBXTargetDependency */,
+ 0BC6F31149E565AD458EAC76 /* PBXTargetDependency */,
+ 329CE26EAA6745BB04D549BF /* PBXTargetDependency */,
+ F4ECEDB234A8FAA2C2A90A0C /* PBXTargetDependency */,
+ 1E51B764B101F073BCBE93D0 /* PBXTargetDependency */,
+ 2312AE874A20F16AB6212023 /* PBXTargetDependency */,
+ F37E61DF81732179C80C1F21 /* PBXTargetDependency */,
+ DB588519F47752F74E251B38 /* PBXTargetDependency */,
+ BE03F2E1CB7540DF563FE3D9 /* PBXTargetDependency */,
+ B693B0881307B8BB83B53E13 /* PBXTargetDependency */,
+ 62BE6A9CF43770EB8A9D7EA6 /* PBXTargetDependency */,
+ 0F74DC276D7A82CC4A91EDB1 /* PBXTargetDependency */,
+ 0BA0B4EF528685A4EC63A369 /* PBXTargetDependency */,
+ D24946AFE4920E7A0383993E /* PBXTargetDependency */,
+ 14D7191875E525D14A209782 /* PBXTargetDependency */,
+ 41DDDED9175FEB3E71FCFEF4 /* PBXTargetDependency */,
+ 23D393982F33A5365EB0B176 /* PBXTargetDependency */,
+ 3BDC4B2DDE4417DA586B66CF /* PBXTargetDependency */,
+ 22EF2A0BFA587A83DEE31451 /* PBXTargetDependency */,
+ 5A2707DDC5D740555A77BFD9 /* PBXTargetDependency */,
+ 623023D67129DB2B1239FF72 /* PBXTargetDependency */,
+ 6800E235CA9959C1E42BF4BB /* PBXTargetDependency */,
+ E146E9FB790183C4B924BC2A /* PBXTargetDependency */,
+ 5C23BDF6256A3031AC10D6B5 /* PBXTargetDependency */,
+ 24C558E328434AB3561A09AC /* PBXTargetDependency */,
+ D3618EDA9EE5FF1FC880FD07 /* PBXTargetDependency */,
+ 99C6842A7041BAC03EDCD85D /* PBXTargetDependency */,
+ 936C28F3BF2E4F06FC6D76B0 /* PBXTargetDependency */,
+ D0E039756C657969DADABB3C /* PBXTargetDependency */,
+ 02628382C6F9A43E384AFA9B /* PBXTargetDependency */,
+ 1DDEF00AF380BF4FAC522334 /* PBXTargetDependency */,
+ B5C6D19765F12EBAEA839FF5 /* PBXTargetDependency */,
+ F6C82AA58467CEC036497C5C /* PBXTargetDependency */,
+ 4A439B93D54EEFA019F2B595 /* PBXTargetDependency */,
+ 63DF01B583DA0EB0A8A2972A /* PBXTargetDependency */,
+ 853C9A80722F4C5C80746654 /* PBXTargetDependency */,
+ 3939985C9C3F2136D68F7AD0 /* PBXTargetDependency */,
+ 15E26023EBB505BC9A38F649 /* PBXTargetDependency */,
+ 03E9E32A37CF3910CEA84CAE /* PBXTargetDependency */,
);
- name = "IceProxyAMD macOS";
- productName = IceProxyAMD;
- productReference = FF0571D193794236BC596A7D /* IceProxyAMD.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "TestDriver macOS";
+ productName = TestDriver;
+ productReference = F8F014DC45DDAD9941F05D9D /* TestDriver.app */;
+ productType = "com.apple.product-type.application";
};
- A767A66A0553040C3E4C8FE8 /* IceInterceptor macOS */ = {
+ B3C1AB542406B80D9E28FD83 /* IceProperties macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 1370D96FC0BC8549F5BE0DCC /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */;
+ buildConfigurationList = 99C66E52BD5A441013FE59BA /* Build configuration list for PBXNativeTarget "IceProperties macOS" */;
buildPhases = (
- 99335EDD647A66C9FBB47AC4 /* Sources */,
- 909639C94708DD464C1E36B4 /* Frameworks */,
- 45998D9FD0B58CB1FA328459 /* Resources */,
- 215C22AA742559E96A0C3728 /* Swiftformat & Swiftlint */,
+ 32D39D63AD118713DC009FC2 /* Sources */,
+ 02E64BE526855B3CED6378EB /* Frameworks */,
+ 72A34644A657E11BAEFE28F5 /* Resources */,
+ 0BFA93678B6C42F427327808 /* Swiftformat & Swiftlint */,
);
buildRules = (
- C0E786BE016DC950F89F3D68 /* PBXBuildRule */,
+ 345E6A127471D8865C6FBCCE /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceInterceptor macOS";
- productName = IceInterceptor;
- productReference = 318B4362356CAEAF664C3474 /* IceInterceptor.bundle */;
+ name = "IceProperties macOS";
+ productName = IceProperties;
+ productReference = 65F5921131948B7942F63863 /* IceProperties.bundle */;
productType = "com.apple.product-type.bundle";
};
- A924D28ED6AB052D7610258D /* IceScope macOS */ = {
+ B4B423BCBEA896092FC8A89D /* IceOptionalAMD macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = A205A776B81BB18A29C1EB17 /* Build configuration list for PBXNativeTarget "IceScope macOS" */;
+ buildConfigurationList = FFF4542034AC0A918BA23AD2 /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */;
buildPhases = (
- 9BF39DF54E75A89C89E29E47 /* Sources */,
- 6603E93ED977364E39B708AE /* Frameworks */,
- F17CD0FD5F59A80791BF2401 /* Resources */,
- 53002A6C352C4BBC814E0448 /* Swiftformat & Swiftlint */,
+ 41893407B02893F3D02F6046 /* Sources */,
+ 88E0A79DCD6CEB08E91813F6 /* Frameworks */,
+ 7A213D33DF4E5410D47700AB /* Resources */,
+ 9CCA56F04E11EA3438DDC740 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 7BA44CD090BA08E3C470AAEC /* PBXBuildRule */,
+ DFD83888019F7A81E0B12BB4 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceScope macOS";
- productName = IceScope;
- productReference = 4E0AA9FBEC424181F02EF258 /* IceScope.bundle */;
+ name = "IceOptionalAMD macOS";
+ productName = IceOptionalAMD;
+ productReference = C6AE8BE95F80EBF3D2C290AE /* IceOptionalAMD.bundle */;
productType = "com.apple.product-type.bundle";
};
- AC2F87AF2DD6F1ED5E2590A9 /* IceOperationsAMD macOS */ = {
+ B4E064E37239C58606BE5146 /* IceSlicingObjects iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = A7598B3368BB5CBC212802DC /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */;
+ buildConfigurationList = 3A6F2F5DDAB4C53762E814D7 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */;
buildPhases = (
- F3C88FD4709DC66F219FA771 /* Sources */,
- 78A399541DAB569490FAF3E1 /* Frameworks */,
- 1ABC24FD8F298057BB170856 /* Resources */,
- 647FFE88B6938BBBD37270F2 /* Swiftformat & Swiftlint */,
+ D059A491F4B523B8B7291FD9 /* Sources */,
+ CC9549D100F438E9F6833260 /* Frameworks */,
+ 9A508815E2FEF680175A09BE /* Resources */,
+ 3A39AE068E8FE2AB13ABD132 /* Swiftformat & Swiftlint */,
);
buildRules = (
- F616305128F06B33044C8483 /* PBXBuildRule */,
+ E38A933BEE8E9CEDE73793D8 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceOperationsAMD macOS";
- productName = IceOperationsAMD;
- productReference = F6F943274DED61792E50D25A /* IceOperationsAMD.bundle */;
+ name = "IceSlicingObjects iOS";
+ productName = IceSlicingObjects;
+ productReference = DEB369D710EC587DFD76B069 /* IceSlicingObjects.bundle */;
productType = "com.apple.product-type.bundle";
};
- AF00BF11A38D6C49E3896A52 /* IceBinding iOS */ = {
+ B51020A18D6BB52E85D2C0A0 /* IceAdapterDeactivation macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 55E827A018689871BB520646 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */;
+ buildConfigurationList = C6D068827C43CCD901F35E19 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */;
buildPhases = (
- F6BB4EDC12CAA94895EC56B3 /* Sources */,
- E8823EED7429679913A1C5DD /* Frameworks */,
- 4B07F0D84D94F4CD4273F45F /* Resources */,
- B0A02340394B042B140E17DA /* Swiftformat & Swiftlint */,
+ 7B2ACB69AF713D31ADEEEA64 /* Sources */,
+ 0CAA1ABF1BA7C9182E8C2E63 /* Frameworks */,
+ 1B900AADC2B62FAA73123E33 /* Resources */,
+ 3E7185B7CBD3767DBD95F487 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 0CD9321BB1B119C89D25BFBA /* PBXBuildRule */,
+ EF3119F06227FEA86582E2B5 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceBinding iOS";
- productName = IceBinding;
- productReference = EE16F167CC49EDDC79F69F5F /* IceBinding.bundle */;
+ name = "IceAdapterDeactivation macOS";
+ productName = IceAdapterDeactivation;
+ productReference = A2C780B2D6CA6CD0DCCED459 /* IceAdapterDeactivation.bundle */;
productType = "com.apple.product-type.bundle";
};
- AF40834517F20D8EB2CCFCCE /* IceScope iOS */ = {
+ B6E7B96E62DB9ACA0E5D579D /* Glacier2 macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 85F37B00888EF12FC2F8C769 /* Build configuration list for PBXNativeTarget "IceScope iOS" */;
+ buildConfigurationList = 7166296F9C5BED610EC38C50 /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */;
buildPhases = (
- 45BCAFEB77C89E1F9A88EB1C /* Sources */,
- 47C25F98C9A1B5957318F0F9 /* Frameworks */,
- D300A8ABB26404CA777F0090 /* Resources */,
- B8811143A56B29CAF4DEEEE8 /* Swiftformat & Swiftlint */,
+ 75EBDE3F80A4D5D5A8003536 /* Headers */,
+ 242E1CFBA016DA6A671C2DF8 /* Sources */,
+ 22B893671D734666B9190978 /* Frameworks */,
+ 25DAD46CFAFE17BCB80D1B8E /* Resources */,
);
buildRules = (
- 021CD5CCFBC260BC090B0831 /* PBXBuildRule */,
+ 226DA0E31C8283EB24DB4910 /* PBXBuildRule */,
);
dependencies = (
+ 982C655245B9DDA853AE0EA0 /* PBXTargetDependency */,
);
- name = "IceScope iOS";
- productName = IceScope;
- productReference = CCC6391BF44ABA9EA371F984 /* IceScope.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "Glacier2 macOS";
+ productName = Glacier2;
+ productReference = B9BD5DA20CE10B5EEAFC1A37 /* Glacier2.framework */;
+ productType = "com.apple.product-type.framework";
};
- B3452891B8260C4BD87385FC /* IceBinding macOS */ = {
+ B7D8F90200493C54A87563A7 /* IceInheritance macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 87E94B7A34F404F02C5A75D5 /* Build configuration list for PBXNativeTarget "IceBinding macOS" */;
+ buildConfigurationList = E83289DC3FFCCCD073C1FFC5 /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */;
buildPhases = (
- 8905ECBD934374A6BF2650E5 /* Sources */,
- 4819AEC0FC6E815E2E24C077 /* Frameworks */,
- A9AB08B17AABA963392BAFE6 /* Resources */,
- 733FD68C4F287BEB870F242C /* Swiftformat & Swiftlint */,
+ 0C3DD1F53CE2BA8F65051731 /* Sources */,
+ C6E62CE14A9559FE5DA373A1 /* Frameworks */,
+ 61F2CBA9C432F2602455DBEA /* Resources */,
+ 5E403166825C341BD80381C3 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 461CDDFF8F9793F897873074 /* PBXBuildRule */,
+ 16BBAE9E1411D45F4A0A87B3 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceBinding macOS";
- productName = IceBinding;
- productReference = 52660B66383EDC81626C3C67 /* IceBinding.bundle */;
+ name = "IceInheritance macOS";
+ productName = IceInheritance;
+ productReference = 775EBD369201C97189EB1022 /* IceInheritance.bundle */;
productType = "com.apple.product-type.bundle";
};
- B7B10DC70A80C1FB0D874813 /* IceUdp iOS */ = {
+ BB0FE27477960DDC5B6DB47E /* IceProxyAMD iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 228EB37A9E091494B0C256FC /* Build configuration list for PBXNativeTarget "IceUdp iOS" */;
+ buildConfigurationList = 0A50864A90D4F8D3245B146C /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */;
buildPhases = (
- 7C6459EE51C40E41C64C545D /* Sources */,
- 4CFACB5082B7517C49A4AD82 /* Frameworks */,
- D895A5689C009E2BB0E68AAB /* Resources */,
- 5A8794C476457903A3E4AC9A /* Swiftformat & Swiftlint */,
+ B0E938D7D1F3C435E08794D8 /* Sources */,
+ 46034A9395EBE9F9AE75A7C0 /* Frameworks */,
+ 981FC1F5112404D9A28937C2 /* Resources */,
+ AD33D2667184659D4CE2B88F /* Swiftformat & Swiftlint */,
);
buildRules = (
- 6908B0E0F7CE739A163602C9 /* PBXBuildRule */,
+ 12E4E9666D46DD8B798F7577 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceUdp iOS";
- productName = IceUdp;
- productReference = 5EF983122BD6F435855FC204 /* IceUdp.bundle */;
+ name = "IceProxyAMD iOS";
+ productName = IceProxyAMD;
+ productReference = 53CFE6E9577551B9B5BE8F0B /* IceProxyAMD.bundle */;
productType = "com.apple.product-type.bundle";
};
- B90E5201833CD54733E58F25 /* IceGrid macOS */ = {
+ BC6991488D8CC573AA1BDC8F /* IceUdp macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = FDE53A09EE668091EEB4AEE5 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */;
+ buildConfigurationList = 5BE47BA7845B5AAC60557E2E /* Build configuration list for PBXNativeTarget "IceUdp macOS" */;
buildPhases = (
- 28C70B7271551774D408191D /* Headers */,
- 507EF2736D0BD4BA4200D7E9 /* Sources */,
- 6A68D2B235231F9004700D13 /* Frameworks */,
- 14A37D59A7C6609EC1F76EE8 /* Resources */,
+ 1BD15802172AFAC546F1B3A4 /* Sources */,
+ 05E5D67717492C7DD2A8557F /* Frameworks */,
+ 2279C34B48F96D68B40D6318 /* Resources */,
+ E5832316498C33EE0583EAC0 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 4A340419F80BE8544B686161 /* PBXBuildRule */,
+ A48E9626497212F402FCBA92 /* PBXBuildRule */,
);
dependencies = (
- 035A5A528BF25A119CADE4BB /* PBXTargetDependency */,
- CDF152F142A321B4E88712EC /* PBXTargetDependency */,
);
- name = "IceGrid macOS";
- productName = IceGrid;
- productReference = E565EEA036FCDFE7E2231B17 /* IceGrid.framework */;
- productType = "com.apple.product-type.framework";
+ name = "IceUdp macOS";
+ productName = IceUdp;
+ productReference = 51E99B30521AA55C7680038E /* IceUdp.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- BA3C6CB03E611F920F0CBA82 /* IceEnums macOS */ = {
+ BFD1D15D5C7B133F2BE814F2 /* IceAcm macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 05483C85E7E50674149C9C50 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */;
+ buildConfigurationList = A39E2D48580C09BBC71D5DBF /* Build configuration list for PBXNativeTarget "IceAcm macOS" */;
buildPhases = (
- 0F1D34998E02F7FBEFF5B95C /* Sources */,
- E309796CE6D91E32ED411D15 /* Frameworks */,
- 046AF0475AD9B00B7856CF97 /* Resources */,
- 77B98A48916D5BF86A2B88A4 /* Swiftformat & Swiftlint */,
+ 277ACFFBE657808BF2E9E581 /* Sources */,
+ 23F25ECD9DCE2D2529CA103A /* Frameworks */,
+ E00CE6C4330895E2A916553B /* Resources */,
+ 2BB755A01EB9BBBC8F617578 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 5F612E3B30CA12F47FCED6BE /* PBXBuildRule */,
+ 4CAC08FD2A9CC4AD650F86E1 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceEnums macOS";
- productName = IceEnums;
- productReference = 5A4773F9B5A0740C005F9730 /* IceEnums.bundle */;
+ name = "IceAcm macOS";
+ productName = IceAcm;
+ productReference = 2C37F4117B16BB71AFE86813 /* IceAcm.bundle */;
productType = "com.apple.product-type.bundle";
};
- BE9F28CD4A7397D091DE85B6 /* IceDefaultServant macOS */ = {
+ C45CC74DC170C850261716E7 /* IceHold iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 44DCE327E53EAC837F42EA9F /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */;
+ buildConfigurationList = 8E047B2C5887B009C08DF8A9 /* Build configuration list for PBXNativeTarget "IceHold iOS" */;
buildPhases = (
- FE83A71A48865F74B52C978C /* Sources */,
- BAA40E01BF32730B16160D1F /* Frameworks */,
- E0552E678A083E9F2DC488E3 /* Resources */,
- 0EB88587998AA842B1D99C6F /* Swiftformat & Swiftlint */,
+ A30D0FFCACCAC02E95AA5706 /* Sources */,
+ AC4D88CFA9B00AD0F230FF22 /* Frameworks */,
+ 06E7CDD8A55FAE6635787DBC /* Resources */,
+ 0B05C7D018C0FE0BEDD50201 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 9701593F1430A13D07B31E77 /* PBXBuildRule */,
+ 7645087BBBB8D210B741CE75 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceDefaultServant macOS";
- productName = IceDefaultServant;
- productReference = C65B6C7BED85697CBEA44EAA /* IceDefaultServant.bundle */;
+ name = "IceHold iOS";
+ productName = IceHold;
+ productReference = AB05AFC920CC27CFDC84109C /* IceHold.bundle */;
productType = "com.apple.product-type.bundle";
};
- BF4AF5071FFE74BD004E45D9 /* IceImpl macOS */ = {
+ C93625A0B67E6042F06F5069 /* IceSSL C++11 macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 5DA6953399E0F9A8B3F060F7 /* Build configuration list for PBXNativeTarget "IceImpl macOS" */;
+ buildConfigurationList = FD8230E9C1D0EE28B4931D47 /* Build configuration list for PBXNativeTarget "IceSSL C++11 macOS" */;
buildPhases = (
- 4083D2403C013702F8B4B34F /* Headers */,
- B1D2E64811D23EC256AB073D /* Sources */,
- 6E9C9652815AC938C1593FEA /* Frameworks */,
- 5A8A5E11D4E4DCD66B28A2EB /* Resources */,
+ 2F552D13CFD73AA3D3434E06 /* Headers */,
+ C1DFCE6502BF464BCD1D1DEA /* Sources */,
+ 1A056407630E55E3A5483A4D /* Frameworks */,
);
buildRules = (
+ A19F3F920CD412E9063C6631 /* PBXBuildRule */,
);
dependencies = (
+ 44E4246722201BC6F6BF8AF0 /* PBXTargetDependency */,
);
- name = "IceImpl macOS";
- productName = IceImpl;
- productReference = 20E8394869BBE3A6A0E8B73A /* IceImpl.framework */;
- productType = "com.apple.product-type.framework";
+ name = "IceSSL C++11 macOS";
+ productName = "IceSSL C++11 macOS";
+ productReference = 37E322077E762CEEF4853257 /* libIceSSL C++11 macOS.a */;
+ productType = "com.apple.product-type.library.static";
};
- BF98F490756093B64A2F9A38 /* IceStream macOS */ = {
+ CA67B414AA1971674CA1BB76 /* IceFacets iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = D13DB8BF02F53D4D5C5FC6B2 /* Build configuration list for PBXNativeTarget "IceStream macOS" */;
+ buildConfigurationList = 64447114766458236325E022 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */;
buildPhases = (
- 157E4A6659A4EBA04C701F59 /* Sources */,
- 43F48F58AE216FDBE3CDB16F /* Frameworks */,
- 77CCF8D8E82969BF83B292C2 /* Resources */,
- E1F3D89226E653B045B7D1FA /* Swiftformat & Swiftlint */,
+ C5AB6C8350F24C52563C91A6 /* Sources */,
+ CE1B49DBE14C3D6E3401CD73 /* Frameworks */,
+ D95C0DD2462404C0FACCC594 /* Resources */,
+ 8F44291388A023E1E1673496 /* Swiftformat & Swiftlint */,
);
buildRules = (
- D4FE20BF437FA0B2C6ECDAC4 /* PBXBuildRule */,
+ 587D2F4F24B57B6822290E27 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceStream macOS";
- productName = IceStream;
- productReference = 9A0CD78B16D57E052BF40A4B /* IceStream.bundle */;
+ name = "IceFacets iOS";
+ productName = IceFacets;
+ productReference = 4AD13CA61E0593B0D0D02A9F /* IceFacets.bundle */;
productType = "com.apple.product-type.bundle";
};
- C9C42E66F1D59B07261FE036 /* IceDefaultServant iOS */ = {
+ CA75423F06FACFFA27DD068F /* IceOptionalAMD iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 923E82D04BBD1892796204F8 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */;
+ buildConfigurationList = C4A6860A77BD8DB928E88B4E /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */;
buildPhases = (
- 5A97DB0BC418D8CF7B2FC003 /* Sources */,
- AEB2FFFA522A4D6568E36ECA /* Frameworks */,
- 9E3CD669A72EE2D88CE5F4F5 /* Resources */,
- 1D3E51A3FE730D238F908A98 /* Swiftformat & Swiftlint */,
+ C8736F5BFA8FA3A2405C66BC /* Sources */,
+ 85ABCEE7B5A8A213DF3540A0 /* Frameworks */,
+ B5BD683C8F1416A0949501A1 /* Resources */,
+ 3264CE85903DE5D54750F0EF /* Swiftformat & Swiftlint */,
);
buildRules = (
- 99952175DB791E05FC46AC6A /* PBXBuildRule */,
+ F2260A7B9F04A685D2051DE3 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceDefaultServant iOS";
- productName = IceDefaultServant;
- productReference = A9AF41322A6116F0AC78A561 /* IceDefaultServant.bundle */;
+ name = "IceOptionalAMD iOS";
+ productName = IceOptionalAMD;
+ productReference = 19EC86E70EBD4A492213EA37 /* IceOptionalAMD.bundle */;
productType = "com.apple.product-type.bundle";
};
- CE1F12199245AF18BE422490 /* IceRetry iOS */ = {
+ CC09866B17B00F50BB557DAA /* IceSlicingExceptionsAMD macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = BB849AF65D8E73450735E635 /* Build configuration list for PBXNativeTarget "IceRetry iOS" */;
+ buildConfigurationList = 8A0150E660EE096AE4BA4DA7 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */;
buildPhases = (
- 770C994D5714FF675D511FEA /* Sources */,
- E8D783AD3D4B45A094E09C58 /* Frameworks */,
- 3123F1213C51EAA7D1338B8A /* Resources */,
- F88053E458C758CF33570491 /* Swiftformat & Swiftlint */,
+ 09F2946E82F044612DFC07C3 /* Sources */,
+ F65ABCC24497E51F27A8116C /* Frameworks */,
+ 0E8F9432A5CAB736C9C6BBE4 /* Resources */,
+ 0E8C23EDBD80A4B22901B537 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 69892B67DEEACA8164B429F1 /* PBXBuildRule */,
+ 1732B4D0CCA4449EB5AFF1CA /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceRetry iOS";
- productName = IceRetry;
- productReference = F4AA714EDBBA725022DE32AB /* IceRetry.bundle */;
+ name = "IceSlicingExceptionsAMD macOS";
+ productName = IceSlicingExceptionsAMD;
+ productReference = D8E7928159B49F7A04DA97BA /* IceSlicingExceptionsAMD.bundle */;
productType = "com.apple.product-type.bundle";
};
- CE65845A02268F04B192E479 /* IceSSL C++11 macOS */ = {
+ CC1E58215C72A515E5C4E968 /* IceInfo macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 4F6E20F6C7D2A1E242D70314 /* Build configuration list for PBXNativeTarget "IceSSL C++11 macOS" */;
+ buildConfigurationList = 9FFCC715BA02435E1096FBAA /* Build configuration list for PBXNativeTarget "IceInfo macOS" */;
buildPhases = (
- D53C19DBE52D5479767ABE5F /* Headers */,
- 7F942DB3FF698A6DD6B4941E /* Sources */,
- FB0224E57D5D62E294203095 /* Frameworks */,
+ 1DB0BD88EC56F2333289662D /* Sources */,
+ 06AC6C94D56BEA09B166C3E0 /* Frameworks */,
+ 03F21DAAE6433804B6DB8AFB /* Resources */,
+ DA19C8960FDB6E8C163E3A88 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 6FC78EFF29300701B539B14A /* PBXBuildRule */,
+ 8E1B4C745D38544CACDDA8F3 /* PBXBuildRule */,
);
dependencies = (
- 2A03A6871946141EF367455E /* PBXTargetDependency */,
);
- name = "IceSSL C++11 macOS";
- productName = "IceSSL C++11 macOS";
- productReference = 43EBC589686D2144CFD9CB97 /* libIceSSL C++11 macOS.a */;
- productType = "com.apple.product-type.library.static";
+ name = "IceInfo macOS";
+ productName = IceInfo;
+ productReference = 6058A9A6703F0612B4B79A97 /* IceInfo.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- D65ED0BD35F3EC0FC6466BCB /* IceAdmin iOS */ = {
+ CD69162F352A58A781D2191D /* IceProxy iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 663E82BC6D360C653552534C /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */;
+ buildConfigurationList = D14EE68874684570D055DEB2 /* Build configuration list for PBXNativeTarget "IceProxy iOS" */;
buildPhases = (
- 847BAE7A129A4ACC6B4DCF65 /* Sources */,
- 11AD2AD061A6039293A15B8C /* Frameworks */,
- A2AD11BD470DE5C065F0617F /* Resources */,
- 61156C1EF10919FD3E50F44A /* Swiftformat & Swiftlint */,
+ 4129C7F7C957EE5CE7B81D74 /* Sources */,
+ EEC2A94E462C20A43B7033AC /* Frameworks */,
+ CB7046FE7D1A348E79B5EA58 /* Resources */,
+ CDCD0CD33D77189C5A73F465 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 8B593A73C2DA0D095626C7B1 /* PBXBuildRule */,
+ 3F5A5B923D717153D031817C /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceAdmin iOS";
- productName = IceAdmin;
- productReference = 0AC87AC3932C89B1E8784540 /* IceAdmin.bundle */;
+ name = "IceProxy iOS";
+ productName = IceProxy;
+ productReference = E5D4CA75EFA1350097AB7876 /* IceProxy.bundle */;
productType = "com.apple.product-type.bundle";
};
- D8AD4CF3DB9467AF9BFA06BD /* IceSlicingObjects macOS */ = {
+ CDA3E575A10E9943686D9651 /* IceAcm iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 4FB56971A8BAB09F00E82736 /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */;
+ buildConfigurationList = 1B6C41EDB80A8E95187A11A4 /* Build configuration list for PBXNativeTarget "IceAcm iOS" */;
buildPhases = (
- 4A58D1FAD011427FAFDF10C4 /* Sources */,
- 70632180BDEB575B2DE6A8C4 /* Frameworks */,
- 846E07EBC63EB4BA03BC7EDE /* Resources */,
- E879A8A86B0FF43AE98E1B9C /* Swiftformat & Swiftlint */,
+ B3C32EE3776C0DFDBC742F63 /* Sources */,
+ 9E51559722AF1BA9F3B59DFD /* Frameworks */,
+ 7DB62168D6F58CB0DF0F0C42 /* Resources */,
+ 286DB19CC8F5465BAE6E86B7 /* Swiftformat & Swiftlint */,
);
buildRules = (
- FE3714B84FE483BB227055F8 /* PBXBuildRule */,
+ 7EA695440CDA4FF79880274F /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceSlicingObjects macOS";
- productName = IceSlicingObjects;
- productReference = F54102FD9173D5948F3DB693 /* IceSlicingObjects.bundle */;
+ name = "IceAcm iOS";
+ productName = IceAcm;
+ productReference = 3B6F273274F0A33E74B63CA8 /* IceAcm.bundle */;
productType = "com.apple.product-type.bundle";
};
- D9A5F8103D92E3527085B9D2 /* IceInheritance iOS */ = {
+ CFCBBCD749119BF8D24C0547 /* Ice C++11 iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 0C8DFB85BF487864C2632AC4 /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */;
+ buildConfigurationList = 0A45BD9B6920C07D7615B808 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */;
buildPhases = (
- 7CF66B71BD588C1DAB4DEB7C /* Sources */,
- 2337533DFE9DBB9863BBBCBB /* Frameworks */,
- 1154F67D01097FA193920F03 /* Resources */,
- 0E2AA6E154C4F83A720F5F63 /* Swiftformat & Swiftlint */,
+ EC0E6C7D45A0CF4B70DCE283 /* Headers */,
+ F3342E6328D2D09E35712DFD /* Sources */,
+ 9B58C2C1A72022161596C43F /* Frameworks */,
);
buildRules = (
- 8BA36FFBC139C95B707EA864 /* PBXBuildRule */,
+ 0793D603DF162459022BAC7D /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceInheritance iOS";
- productName = IceInheritance;
- productReference = 5885D5FFD3D6F50139F94947 /* IceInheritance.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "Ice C++11 iOS";
+ productName = "Ice C++11 iOS";
+ productReference = 2761AE969F9024BC359E5325 /* libIce C++11 iOS.a */;
+ productType = "com.apple.product-type.library.static";
};
- DF0F057CC484113257567B98 /* IceUdp macOS */ = {
+ D0D371AC63C9FC42EB4E27B9 /* IceSSLConfiguration iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = F025CE48F8B716A89A12071C /* Build configuration list for PBXNativeTarget "IceUdp macOS" */;
+ buildConfigurationList = E7FD53EEBFD3D39188FB5192 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */;
buildPhases = (
- 8C2225880064EB4F06B5DEDD /* Sources */,
- EFECB4D3E2AAA56FB79F0256 /* Frameworks */,
- F9C2084D2A8B69D9B8DC1CB8 /* Resources */,
- 107903FAF8F83D449A8F27E1 /* Swiftformat & Swiftlint */,
+ C9648CAAEF1F19C47BC1C742 /* Sources */,
+ 3C57181422369E5E1BAAD908 /* Frameworks */,
+ 58CAEEC623907596C4299AD6 /* Resources */,
+ FE01F89BB220FE756EEBEF4B /* Swiftformat & Swiftlint */,
);
buildRules = (
- C80D9A1ED9AD9446DFCF122C /* PBXBuildRule */,
+ 6F0FEF3A01107CADC1BE48E5 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceUdp macOS";
- productName = IceUdp;
- productReference = 0F400D91B52F6ED22A761CAF /* IceUdp.bundle */;
+ name = "IceSSLConfiguration iOS";
+ productName = IceSSLConfiguration;
+ productReference = C150DFE9F6860E13C667DA77 /* IceSSLConfiguration.bundle */;
productType = "com.apple.product-type.bundle";
};
- E07DFEAC4405C142A89C313C /* IceInvoke iOS */ = {
+ DA7E46E820F346FEEB71D302 /* IceDefaultServant macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 110325CD156FF96E0F3C9BDD /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */;
+ buildConfigurationList = 56E4F5042639125C70840636 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */;
buildPhases = (
- 47321BD1C778996CD912CE8B /* Sources */,
- 5F6DFD0C8616349031C9F254 /* Frameworks */,
- 6E0873ECD062ECAAE14D5ACD /* Resources */,
- 5120124EA1D571EF597B975A /* Swiftformat & Swiftlint */,
+ 58E3ED111A937B98657B865E /* Sources */,
+ A44B2FABCD5061AB73293565 /* Frameworks */,
+ 0B2C9EF7938FCE0CFFD56095 /* Resources */,
+ 7CDCA8AD809197C063745A06 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 2AEF880F572A16895B17159C /* PBXBuildRule */,
+ 8046804BB4C5FC610BC928C3 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceInvoke iOS";
- productName = IceInvoke;
- productReference = 095FD037AD9F4A3D5CE458DF /* IceInvoke.bundle */;
+ name = "IceDefaultServant macOS";
+ productName = IceDefaultServant;
+ productReference = 68624E43D69AF264C6D22C54 /* IceDefaultServant.bundle */;
productType = "com.apple.product-type.bundle";
};
- E6132AB8E453580BE3A35BA1 /* IceDefaultValue iOS */ = {
+ DB28B503557795AB1CA8DF41 /* IceBinding macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 5D55C4A0CD43858B616FF05F /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */;
+ buildConfigurationList = F5937BA8C8F690AA8EAEBB12 /* Build configuration list for PBXNativeTarget "IceBinding macOS" */;
buildPhases = (
- C4C7D367623F7F7358FF9B14 /* Sources */,
- 7978D15CCE773A51BFE58006 /* Frameworks */,
- 8A966CA6ED7FDD848CDD1495 /* Resources */,
- 4267E725C2F69047663B4327 /* Swiftformat & Swiftlint */,
+ 860DAB4F0AC633E5E3071139 /* Sources */,
+ 8C0A0FECEB22634E115A89A1 /* Frameworks */,
+ 14669483778D991501DFBD7F /* Resources */,
+ 2FEE0B757B67A8058878A540 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 2D0C287118D8A5E5F1CE2467 /* PBXBuildRule */,
+ C3201A2DE59CB50AF9F0ABCE /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceDefaultValue iOS";
- productName = IceDefaultValue;
- productReference = 7DEA75801F4667F22FBB0E23 /* IceDefaultValue.bundle */;
+ name = "IceBinding macOS";
+ productName = IceBinding;
+ productReference = 5942973BCDA04C01DF823F17 /* IceBinding.bundle */;
productType = "com.apple.product-type.bundle";
};
- E6C971120A8271A079AADB39 /* IceEnums iOS */ = {
+ E072028161A34E7533BE2CCE /* IceProxyAMD macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 0B25891D076DA8CBD5BE8E1B /* Build configuration list for PBXNativeTarget "IceEnums iOS" */;
+ buildConfigurationList = 5218491F128E8B11F981A048 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */;
buildPhases = (
- BC0F4BDC51D5F1894171BF41 /* Sources */,
- 4251E83B40FB2F60C2421568 /* Frameworks */,
- 894735BC32F9EC760A7D99B0 /* Resources */,
- 2FD44BC8BFCE68F0B674D0EA /* Swiftformat & Swiftlint */,
+ 5FE7830A9CCAEE182C734E7D /* Sources */,
+ ED403878A1719C7475CAC5B5 /* Frameworks */,
+ F2C3239F070A7F2406EB27CD /* Resources */,
+ BA1EAE199CAE89B3F1FB1C5F /* Swiftformat & Swiftlint */,
);
buildRules = (
- 73792DE767842AD20B8964BA /* PBXBuildRule */,
+ 4E4367CBA28BD557A396B5A9 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceEnums iOS";
- productName = IceEnums;
- productReference = 9FED4EE7B5090FE0DAE755DC /* IceEnums.bundle */;
+ name = "IceProxyAMD macOS";
+ productName = IceProxyAMD;
+ productReference = 4EB4AAB6340039C6B77D0B38 /* IceProxyAMD.bundle */;
productType = "com.apple.product-type.bundle";
};
- E6E909AF3A34692C76335CD5 /* IceOptional iOS */ = {
+ E1F75FFAED46F9A8EF5A6B58 /* IceOperations iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = A45E2164B11135E65150E064 /* Build configuration list for PBXNativeTarget "IceOptional iOS" */;
+ buildConfigurationList = B75546AAD836D4DADE30C4CE /* Build configuration list for PBXNativeTarget "IceOperations iOS" */;
buildPhases = (
- 0384D8ACBEFF79978B54CCCD /* Sources */,
- E3B60B3604708D33DC4368DF /* Frameworks */,
- F902BDC9B5B3607F03AC574F /* Resources */,
- A226E11A9F06DE160BF7BD9E /* Swiftformat & Swiftlint */,
+ 1FA3B7EB7F1182C0D262BF52 /* Sources */,
+ 7C08E9656CFB70E54AD500C9 /* Frameworks */,
+ C8BED7A99CC22A713336F70F /* Resources */,
+ 26831D0966DA8486BE7FD1D7 /* Swiftformat & Swiftlint */,
);
buildRules = (
- A5E7AED8B88E3D4D058AE599 /* PBXBuildRule */,
+ 14B8CDF4D2B3CFC8DEBE07E2 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceOptional iOS";
- productName = IceOptional;
- productReference = 07C19BFF26EA2D5A9BFF11C2 /* IceOptional.bundle */;
+ name = "IceOperations iOS";
+ productName = IceOperations;
+ productReference = 5101032594480253E29AC55D /* IceOperations.bundle */;
productType = "com.apple.product-type.bundle";
};
- EA33EAE1209A64C18B26C6DC /* IceAmi iOS */ = {
+ E61D28A41E985F8384CE50D1 /* IceDefaultServant iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 75A4C98CD6A96756317C31BC /* Build configuration list for PBXNativeTarget "IceAmi iOS" */;
+ buildConfigurationList = 6FD94E57FD531EF067FD6854 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */;
buildPhases = (
- 30292CEA05759E9468CAA493 /* Sources */,
- B2D6BFF51E847682D6AA5044 /* Frameworks */,
- 1BDB691983EA36648130BB74 /* Resources */,
- B5F66FA0343BF136422FC924 /* Swiftformat & Swiftlint */,
+ 636BAD0C78A616E0F22F7BE6 /* Sources */,
+ C9A12D93A3F27254167BA1DF /* Frameworks */,
+ AFAB8F75A50A9DE536E30C6D /* Resources */,
+ 0CE441B47FB73920D64F6260 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 0E5DE469AEAC36B035B54907 /* PBXBuildRule */,
+ 8014B6993B63A3F3E19B2F76 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceAmi iOS";
- productName = IceAmi;
- productReference = 2F61780DB1A2DD448877BC09 /* IceAmi.bundle */;
+ name = "IceDefaultServant iOS";
+ productName = IceDefaultServant;
+ productReference = 31B36589E40A384AAC70F89D /* IceDefaultServant.bundle */;
productType = "com.apple.product-type.bundle";
};
- EC193DAA8373DAB1D6CE3C67 /* IceOptionalAMD macOS */ = {
+ E63C32A9BA1812EC9E117B93 /* IceFacets macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 373BE199EE06531ECE4A5B1B /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */;
+ buildConfigurationList = 0052F09E1EC8CD9EA58C75A1 /* Build configuration list for PBXNativeTarget "IceFacets macOS" */;
buildPhases = (
- B11B6A32D3D7F90F9ACB2ADE /* Sources */,
- C03E5B555410F04DACDD6E53 /* Frameworks */,
- 081B9EC7CEFB163FA55370D5 /* Resources */,
- FD289E5BA38A235126D2E05B /* Swiftformat & Swiftlint */,
+ 015604B60ECD5F85DCB22B1F /* Sources */,
+ 2A6652799F09804AC6435F04 /* Frameworks */,
+ 3E6AEE882EE5C381DA75C7C3 /* Resources */,
+ 69AE0DCB9EDEB85AAC98C871 /* Swiftformat & Swiftlint */,
);
buildRules = (
- D3488CF345BDE58B5550D1B6 /* PBXBuildRule */,
+ 655B4455D98032259E864D23 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceOptionalAMD macOS";
- productName = IceOptionalAMD;
- productReference = 202045998BA207BE21F9742F /* IceOptionalAMD.bundle */;
+ name = "IceFacets macOS";
+ productName = IceFacets;
+ productReference = 84AC8D09459962A732B6CC66 /* IceFacets.bundle */;
productType = "com.apple.product-type.bundle";
};
- ECDA8A6880B8784EAE848EFE /* IceServices macOS */ = {
+ E765EC8C4FC688664074FCAB /* IceServices macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 1CA4FD4613A7A1A012E21837 /* Build configuration list for PBXNativeTarget "IceServices macOS" */;
+ buildConfigurationList = AA0AE6796EB0CDCE44536B82 /* Build configuration list for PBXNativeTarget "IceServices macOS" */;
buildPhases = (
- 248DE8429DDAF64146E04006 /* Sources */,
- FB4E6925F3CD9E1A9B1C0680 /* Frameworks */,
- 2AD40A0AE6D88DD4CD5CDF77 /* Resources */,
- 2C4524B9E1860B0C45B2C55D /* Swiftformat & Swiftlint */,
+ 0DF6F3D26764F3A95ECA2A5F /* Sources */,
+ D43B4A3B0333AD08BF4C63CB /* Frameworks */,
+ 343B137C46526274D04B29EC /* Resources */,
+ FAAB138ACC17EE25DD7F6068 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 4BF431F87D32385C85252285 /* PBXBuildRule */,
+ 099110B06AFA934A481499B6 /* PBXBuildRule */,
);
dependencies = (
);
name = "IceServices macOS";
productName = IceServices;
- productReference = 418EE006DB669F2A5A84699F /* IceServices.bundle */;
- productType = "com.apple.product-type.bundle";
- };
- EFCCDA054A8107675B170FC1 /* IceAcm macOS */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = CC58ECA9F171F76159BEC55C /* Build configuration list for PBXNativeTarget "IceAcm macOS" */;
- buildPhases = (
- C8FEA612160E1EDA60C828A5 /* Sources */,
- 0CD72165C814C60E948F36BB /* Frameworks */,
- 21D61C934C8FBE89A403E6B0 /* Resources */,
- 60196D4DC8074CF1A47B7DED /* Swiftformat & Swiftlint */,
- );
- buildRules = (
- 3B0A378ED7110CC3A7C5C04F /* PBXBuildRule */,
- );
- dependencies = (
- );
- name = "IceAcm macOS";
- productName = IceAcm;
- productReference = E5BEE9FCD147249B52EA9011 /* IceAcm.bundle */;
+ productReference = 4C9E5195C48351C3DD02282F /* IceServices.bundle */;
productType = "com.apple.product-type.bundle";
};
- F5FC59FA400A88FD72FDB307 /* IceTimeout iOS */ = {
+ E959FDFA9037FBC6F3BC42D7 /* IceServantLocator iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 0082D6EB52B4BE289FAB82A2 /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */;
+ buildConfigurationList = 906EFFA48985FAAEAF5691BB /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */;
buildPhases = (
- B463761F3B18FD0D540703B9 /* Sources */,
- 2663F0A7ABA51569FFC456B1 /* Frameworks */,
- 0075C60A22357E34B5C84C3C /* Resources */,
- 1E90D340C99FE93BCBF421F2 /* Swiftformat & Swiftlint */,
+ 91ED151095F1FE81C8F2C3BE /* Sources */,
+ 7372A3947354D59C7F252C57 /* Frameworks */,
+ B348D527DAF47B3B02696EF3 /* Resources */,
+ 65C0AC43A1BCAD157508D5B9 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 1C3B631DD4399ADDB704685D /* PBXBuildRule */,
+ BF7B4C57E2DDD9B077DF3FCF /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceTimeout iOS";
- productName = IceTimeout;
- productReference = 5346CCCFF12A71D81795AD83 /* IceTimeout.bundle */;
+ name = "IceServantLocator iOS";
+ productName = IceServantLocator;
+ productReference = AD3BF9C9F8D9D3658927A2D1 /* IceServantLocator.bundle */;
productType = "com.apple.product-type.bundle";
};
- F69E07D158565776D5926FF9 /* IceHold macOS */ = {
+ E994CBBED485628BB1F1F56D /* IceServantLocatorAMD iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 3968B0040AE5B78A00A2D644 /* Build configuration list for PBXNativeTarget "IceHold macOS" */;
+ buildConfigurationList = 8F1169A14C5FFC0C3D6CF782 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */;
buildPhases = (
- 46BAAAAADBFB11606460F838 /* Sources */,
- 75F8F3A3382379E83F130004 /* Frameworks */,
- 5357BB4E24B791310310AFBD /* Resources */,
- E870763E70733F394E7CEEF6 /* Swiftformat & Swiftlint */,
+ C63CA19E78F7AACF6499F16E /* Sources */,
+ E87713C5E179F4F99FBAF45C /* Frameworks */,
+ 7DA65DE6D40208641008B36E /* Resources */,
+ C42BC5B75F10876BFA5A1E8E /* Swiftformat & Swiftlint */,
);
buildRules = (
- 099746C16398EC88EA4C7023 /* PBXBuildRule */,
+ 3DDCD7DC128FD66AA312AB88 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceHold macOS";
- productName = IceHold;
- productReference = 1783729E7EF7417321B68CBA /* IceHold.bundle */;
+ name = "IceServantLocatorAMD iOS";
+ productName = IceServantLocatorAMD;
+ productReference = 39AE997BF225284894A3427E /* IceServantLocatorAMD.bundle */;
productType = "com.apple.product-type.bundle";
};
- F72DCF0A21A0C8E25DFC8FFE /* IceServices iOS */ = {
+ E9E6D506EA0A011CEDDBC701 /* IceServices iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 388A0F088FDBD80977683DEA /* Build configuration list for PBXNativeTarget "IceServices iOS" */;
+ buildConfigurationList = D06BAC9C4FE0AD4A5BF09332 /* Build configuration list for PBXNativeTarget "IceServices iOS" */;
buildPhases = (
- 0A88B525A24BF93743058631 /* Sources */,
- BEAF467E5B19C94C6DF38B4D /* Frameworks */,
- 365F6474D4326E479BF7C2E3 /* Resources */,
- 70D684CEFAC4553D4C95863F /* Swiftformat & Swiftlint */,
+ BB9950031371D1D1D466E76A /* Sources */,
+ 2A16BCBB6B3A8490392596E1 /* Frameworks */,
+ D2613DB78872438593461A36 /* Resources */,
+ C972820A2BB29C39DD953D05 /* Swiftformat & Swiftlint */,
);
buildRules = (
- F325A1B9F3A8578944FCDB38 /* PBXBuildRule */,
+ BE8049C4EFA7F45D4EDFCCA9 /* PBXBuildRule */,
);
dependencies = (
);
name = "IceServices iOS";
productName = IceServices;
- productReference = 229B9CB20575480C7011720F /* IceServices.bundle */;
+ productReference = DF6DB4595BEADE88D4B8FF06 /* IceServices.bundle */;
productType = "com.apple.product-type.bundle";
};
- F8B243B2C39ADB2080563C0C /* IceHold iOS */ = {
+ ED591945226DC859C59BD051 /* IceExceptions macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = C53FD75A7B7D87B05FC3F9A5 /* Build configuration list for PBXNativeTarget "IceHold iOS" */;
+ buildConfigurationList = 4E93CAAD864E9783BE996EC4 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */;
buildPhases = (
- 522DC0DAFBC85A696DEB9D4D /* Sources */,
- 987D6792871CC486D71E392E /* Frameworks */,
- 9D694C555CEF83C4F6F9EED5 /* Resources */,
- B18712F9F46F09FC6167BB8B /* Swiftformat & Swiftlint */,
+ 9C8BD7B7C0C62004F63C11BC /* Sources */,
+ 27D527AC78B78AFE438F7C9A /* Frameworks */,
+ 401A96400E95955179762F10 /* Resources */,
+ 6F3C668487F989F470880A77 /* Swiftformat & Swiftlint */,
);
buildRules = (
- CBF341A9DF67B3CA074250DC /* PBXBuildRule */,
+ 6C66B41AE5730071C239022A /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceHold iOS";
- productName = IceHold;
- productReference = 3F187CE3CC99555A8AA5B48A /* IceHold.bundle */;
+ name = "IceExceptions macOS";
+ productName = IceExceptions;
+ productReference = 1B8CA636A2A4EB28960FDD61 /* IceExceptions.bundle */;
productType = "com.apple.product-type.bundle";
};
- F9FE0C1E75C7CE2FEAC8545F /* IceObjects macOS */ = {
+ EE2F6B7F5CAB0150B8F5A31E /* IceSlicingExceptions macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = BC3734CED5FA04CAA5923005 /* Build configuration list for PBXNativeTarget "IceObjects macOS" */;
+ buildConfigurationList = 350948EDB95C1ECE3494B71A /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */;
buildPhases = (
- 4E22EA2346E2ED9417193A23 /* Sources */,
- DE5E0A478A24916C487BDCDB /* Frameworks */,
- A51C69A680AA4AC0900CB7A8 /* Resources */,
- 6AB5BCFBF8F2A2DE92D06F3E /* Swiftformat & Swiftlint */,
+ 6042A77A974A73C2B5C273E6 /* Sources */,
+ 77F8D928C3E32F7F37017A06 /* Frameworks */,
+ 6B850378FB170432DA6F117E /* Resources */,
+ F83791BCED0C55BB9BFD506C /* Swiftformat & Swiftlint */,
);
buildRules = (
- AB1CA692BD4582B416712B78 /* PBXBuildRule */,
+ AFF6B340A54426F2C48429E6 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceObjects macOS";
- productName = IceObjects;
- productReference = B0ED3F4472239D27B9CDAC15 /* IceObjects.bundle */;
+ name = "IceSlicingExceptions macOS";
+ productName = IceSlicingExceptions;
+ productReference = 9C15AF93ADECF03E659813AE /* IceSlicingExceptions.bundle */;
productType = "com.apple.product-type.bundle";
};
- FAA60FF4700E1629AA35CA6B /* Ice iOS */ = {
+ EE95BFEA8BAE4CCD7D0C5C92 /* IceSlicingExceptions iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = E78172F94479A2AA0D1DF182 /* Build configuration list for PBXNativeTarget "Ice iOS" */;
+ buildConfigurationList = 6A639AC44EDA6AC434A58D15 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */;
buildPhases = (
- 546DDCBA064F2762DA5962E0 /* Headers */,
- A8C76968DCC60C718BE7EA54 /* Sources */,
- B33825B6F1CF0771855702DE /* Frameworks */,
- 8BA6062E2923F8CF615A42F4 /* Resources */,
- C9164FB85EEE8953BD58127D /* Swiftformat & Swiftlint */,
+ 95B37EF7EE6809FFB9BAFF3B /* Sources */,
+ D01788B510E86FD0975842C1 /* Frameworks */,
+ 77EAEF6C69A4AEEC1552824E /* Resources */,
+ 2112EA07BB43FFC9EBCA61A4 /* Swiftformat & Swiftlint */,
);
buildRules = (
- E453D0CDCEE769E08A60CDE0 /* PBXBuildRule */,
- 8FE217434854904B02A1B6A1 /* PBXBuildRule */,
- 97257A448C0C06972EB94EB3 /* PBXBuildRule */,
+ F483673324C543869947A837 /* PBXBuildRule */,
);
dependencies = (
);
- name = "Ice iOS";
- productName = Ice;
- productReference = 1C9CF1CBF941960EEAB640B9 /* Ice.framework */;
- productType = "com.apple.product-type.framework";
+ name = "IceSlicingExceptions iOS";
+ productName = IceSlicingExceptions;
+ productReference = 4F9862A9DB389084AA3F18B9 /* IceSlicingExceptions.bundle */;
+ productType = "com.apple.product-type.bundle";
};
- FAFC63CCC240428D0B5A7F82 /* IceSlicingObjectsAMD iOS */ = {
+ EE9E360C1C3D7E0439172FDD /* IceLocatorDiscovery C++11 iOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 88CE85A0E0062B0A1716616E /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */;
+ buildConfigurationList = 4EB3874EB8509C067EE0EEEF /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */;
buildPhases = (
- 8AFCE1310A07F1FB31076426 /* Sources */,
- 395C76EA00A5D33E44D99602 /* Frameworks */,
- EEE2FFFB9EE73228ECCF0FC4 /* Resources */,
- 7649C826136D00FD78C1A863 /* Swiftformat & Swiftlint */,
+ 5D5F9E4BD0F2D203BDE86206 /* Headers */,
+ D0C296C719DB94BD6AF47575 /* Sources */,
+ 398A46CEE0D55D519F260DE0 /* Frameworks */,
);
buildRules = (
- D0ED84E8E3327D4360B50DF8 /* PBXBuildRule */,
+ 53786ADB873F541B8853B764 /* PBXBuildRule */,
);
dependencies = (
+ EC7491E26BB80D883B62B353 /* PBXTargetDependency */,
);
- name = "IceSlicingObjectsAMD iOS";
- productName = IceSlicingObjectsAMD;
- productReference = B49E3D640D575476EDF754DE /* IceSlicingObjectsAMD.bundle */;
- productType = "com.apple.product-type.bundle";
+ name = "IceLocatorDiscovery C++11 iOS";
+ productName = "IceLocatorDiscovery C++11 iOS";
+ productReference = 626EED2E2153D0A9AE63108D /* libIceLocatorDiscovery C++11 iOS.a */;
+ productType = "com.apple.product-type.library.static";
};
- FCAA4DCF1BD66E55753D8DE0 /* Glacier2 iOS */ = {
+ F3BECA2A6AD04BC94BDE4C75 /* TestCommon macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 17D3584157716E7F762F53DD /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */;
+ buildConfigurationList = 4E46BD33CC08E029F5484449 /* Build configuration list for PBXNativeTarget "TestCommon macOS" */;
buildPhases = (
- 3F5A93B3F39D973CEB00139A /* Headers */,
- 17C514704A80B33B94E9D348 /* Sources */,
- 933F7EB64A8D0E61748406EE /* Frameworks */,
- EFD29B9D73F363F7599219CA /* Resources */,
+ E6503018927D8D425B344D26 /* Headers */,
+ 24B11D5B6AB91D21E6FCB142 /* Sources */,
+ A969ADEB4D3D0699DAD9DCCB /* Frameworks */,
+ 3CA4BBCC648CA092749D6B14 /* Resources */,
+ 7ED2107B929B80513C30813F /* Swiftformat & Swiftlint */,
);
buildRules = (
- 14F971727EB456F357FD8E1F /* PBXBuildRule */,
+ AEDE8C486FA7ED6DF9D9AC0C /* PBXBuildRule */,
);
dependencies = (
- CA9FE00F0212A050418ED43D /* PBXTargetDependency */,
);
- name = "Glacier2 iOS";
- productName = Glacier2;
- productReference = 3EC2422F7DF9807B4B59F69E /* Glacier2.framework */;
+ name = "TestCommon macOS";
+ productName = TestCommon;
+ productReference = 2033BDC3AF58A54C9EF1698B /* TestCommon.framework */;
productType = "com.apple.product-type.framework";
};
- FDE91A15EA90BB247AB8ABBB /* IceLocation iOS */ = {
+ F532269BF56C02A5A87C95A7 /* IceAdmin macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 1C8FAD5732676597898A8AA2 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */;
+ buildConfigurationList = EC64E89B4ECDF625FBCF24EE /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */;
buildPhases = (
- 2D113CB3D7818E8EE73CD77C /* Sources */,
- EDCE1184623255E1F8D659FC /* Frameworks */,
- CA2A2098041D8AA9435778E1 /* Resources */,
- 6E997C54A52268196C6F6275 /* Swiftformat & Swiftlint */,
+ F2FBC50096605178F3FD3435 /* Sources */,
+ 584D63C7072AFCB4B716E637 /* Frameworks */,
+ 8EAC3E6D02E830F973E2105B /* Resources */,
+ 958EAD12FD66968A6F787031 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 36404E207BFB716C6E18FC80 /* PBXBuildRule */,
+ 14C17C89586F44BCD1101690 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceLocation iOS";
- productName = IceLocation;
- productReference = 7B6D005E02B69AF9FE56313C /* IceLocation.bundle */;
+ name = "IceAdmin macOS";
+ productName = IceAdmin;
+ productReference = F84CA9A304E3F6159E1CFC94 /* IceAdmin.bundle */;
productType = "com.apple.product-type.bundle";
};
- FE86CB123B13ECCFF37B1D0B /* IceExceptions macOS */ = {
+ F620D8585971DEC00C33207F /* IceOperationsAMD macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = 23DE8E43DCCF352C5761ADCB /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */;
+ buildConfigurationList = 0249A14FCD436F83D9F8730D /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */;
buildPhases = (
- CFCD67B388613BF6A57486F2 /* Sources */,
- F08E2056D2E92657EEB70CCE /* Frameworks */,
- D96BE7085F78CD18A2F3CF34 /* Resources */,
- 86687331A56DE43B169EC03A /* Swiftformat & Swiftlint */,
+ C3691D1DBC8CE0D7BA7BFB8B /* Sources */,
+ 45B8985F51795D64FE773565 /* Frameworks */,
+ EADE23E9167C60CA4D853B1F /* Resources */,
+ 6E41D3A8A08A504618C4E669 /* Swiftformat & Swiftlint */,
);
buildRules = (
- 8D5A2F423AE5F9F00062AC62 /* PBXBuildRule */,
+ 7D63AC9329A68D018436128E /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceExceptions macOS";
- productName = IceExceptions;
- productReference = 5A05394CC1EFA4C1C9619075 /* IceExceptions.bundle */;
+ name = "IceOperationsAMD macOS";
+ productName = IceOperationsAMD;
+ productReference = F75C2DE308BADB2A61399C3F /* IceOperationsAMD.bundle */;
productType = "com.apple.product-type.bundle";
};
- FEF5913971918DD52A9A1A5F /* IceServantLocatorAMD macOS */ = {
+ FEF324BE2711D4602F6574BC /* IceSlicingObjects macOS */ = {
isa = PBXNativeTarget;
- buildConfigurationList = CD32B57652A38AF1879B4156 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */;
+ buildConfigurationList = C582C66DA84517E2DEF5BC5D /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */;
buildPhases = (
- 70C0C75954D3CFCEAFFF873A /* Sources */,
- 970F7106D6B4FF96A02D4C78 /* Frameworks */,
- A3ED393751707C8F3D8E2369 /* Resources */,
- 2D95735580F73E28A4824A6E /* Swiftformat & Swiftlint */,
+ 35E306744F432B8F1202AB86 /* Sources */,
+ 15B2345546A4EAF8D94C4F3C /* Frameworks */,
+ DD425F667A6EE7B472FFB734 /* Resources */,
+ 60629D6A22E65EBC5890A8E7 /* Swiftformat & Swiftlint */,
);
buildRules = (
- AB0A725794A172B0D80C4CB5 /* PBXBuildRule */,
+ 684A994B5503846CB120AB56 /* PBXBuildRule */,
);
dependencies = (
);
- name = "IceServantLocatorAMD macOS";
- productName = IceServantLocatorAMD;
- productReference = D37101549BEDABD23E8A508F /* IceServantLocatorAMD.bundle */;
+ name = "IceSlicingObjects macOS";
+ productName = IceSlicingObjects;
+ productReference = 226E6E31A9D9B1EEB6E4EFE1 /* IceSlicingObjects.bundle */;
productType = "com.apple.product-type.bundle";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
- 41F00024FF339B5061D8BCF4 /* Project object */ = {
+ 0726E601744CEB8B4C528E4A /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 1100;
LastUpgradeCheck = 1100;
TargetAttributes = {
- 076983A948FE64CF9ABD1844 = {
+ 0B20F023D2E1BC4B57915592 = {
ProvisioningStyle = Automatic;
};
- 0914A24DE1888840E5B162E7 = {
+ 0B9E7BE2574649A7DEAD1C1C = {
ProvisioningStyle = Automatic;
};
- 0CA791446BF1239097A4E060 = {
+ 11F37400E8E07989B6E1EC6B = {
ProvisioningStyle = Automatic;
};
- 0D1E892424EEBFE0181DF694 = {
+ 12BB34202E09CE86EEA85292 = {
ProvisioningStyle = Automatic;
};
- 1021ADEEE20D0179A7D1EAE5 = {
+ 152C6B4D442533A14394AA59 = {
ProvisioningStyle = Automatic;
};
- 10FF7E84A1164BACC6E539FF = {
+ 181D4BB2B500C7095E790261 = {
ProvisioningStyle = Automatic;
};
- 14BA1B5F33A0E29CFB75C274 = {
+ 1A56C6EA194130F78ED3E3D7 = {
ProvisioningStyle = Automatic;
};
- 16B8E7C8A49D358168590178 = {
+ 1AAC4E0E13E730A3EBE99884 = {
ProvisioningStyle = Automatic;
};
- 179FBAA19344F9CA38B571C5 = {
+ 1E406447B88C3D90364D4D1F = {
ProvisioningStyle = Automatic;
};
- 1904592D5D35822D47AD8D76 = {
+ 201230D356840C5A08351F26 = {
ProvisioningStyle = Automatic;
};
- 19BA482623F0EEF5700964FF = {
+ 215AFD7E3854FE327298A93E = {
ProvisioningStyle = Automatic;
};
- 19D6396909861EBAD283577E = {
+ 243376B5BCD8FB6B573F35B1 = {
ProvisioningStyle = Automatic;
};
- 1EC0C7ECB735847544C17B4A = {
+ 25A27A7EDF9F753CD06CD077 = {
ProvisioningStyle = Automatic;
};
- 1F2AA78A763D19F22E79A046 = {
+ 28CDBC394C2C48C28EDC2737 = {
ProvisioningStyle = Automatic;
};
- 2045B45980FB68801EA7DC30 = {
+ 28CFE986A434086C3605887E = {
ProvisioningStyle = Automatic;
};
- 28CE11EAF0AF8ED4144E13C3 = {
+ 28E66BF870D16ED437F027B7 = {
ProvisioningStyle = Automatic;
};
- 28D7C910F8C11FA8AE746E5F = {
+ 2B0DA341DBA94884D0304509 = {
ProvisioningStyle = Automatic;
};
- 2EB20E48501BD9D7B072833A = {
+ 2FA692464307DB8942B81FCE = {
ProvisioningStyle = Automatic;
};
- 2FCF9711489B071F1761C95C = {
+ 33A418E3474BE5E738D35102 = {
ProvisioningStyle = Automatic;
};
- 34B4FD44212BC22DE43DF98B = {
+ 34CC3FB8F32A94970DA6C5BC = {
ProvisioningStyle = Automatic;
};
- 3721D48CE03788DE444C0915 = {
+ 3EAB7D1B9F1CE476576FAA4C = {
ProvisioningStyle = Automatic;
};
- 3C76932432EC535E14CAA9A8 = {
+ 4610DAE8306D4D0C91F09CEE = {
ProvisioningStyle = Automatic;
};
- 3ED36C0437C2FD7C1609CEAA = {
+ 4A2ABF9D0923453422834FC0 = {
ProvisioningStyle = Automatic;
};
- 404E0C7A0B6D245EF6B20FBE = {
+ 4A47CB078D8654283E9A288C = {
ProvisioningStyle = Automatic;
};
- 41AF91D808C68D2FDFDEC0E4 = {
+ 51B83832597A166C70372361 = {
ProvisioningStyle = Automatic;
};
- 41E689F7CB08945D981E736B = {
+ 5295813C4C98826FBA6D4CA4 = {
ProvisioningStyle = Automatic;
};
- 4448C0412CE8E4BBD74B6938 = {
+ 553857E5964EBE16D6716B46 = {
ProvisioningStyle = Automatic;
};
- 4528506F75BB1C17D38A8FB2 = {
+ 57F4F70C7420D9DEB081223A = {
ProvisioningStyle = Automatic;
};
- 45CD5EF1475B7ADCCDB65C94 = {
+ 5AB40796E10DD225752975C0 = {
ProvisioningStyle = Automatic;
};
- 46D6805E63BB07D00857FF65 = {
+ 5E57DA0A85ED2B235C1D4A3A = {
ProvisioningStyle = Automatic;
};
- 4CF8A5E80D330A8FD27BC24C = {
+ 649D215E8804C017CA836B16 = {
ProvisioningStyle = Automatic;
};
- 4D4688E27490C1B57417BEC2 = {
+ 66D7646E717E859CA23ACF56 = {
ProvisioningStyle = Automatic;
};
- 4FACAB223C4BE57F8313B439 = {
+ 6A21D52AF98E02D675C03AB8 = {
ProvisioningStyle = Automatic;
};
- 50EB7BD9F516353B67693EDA = {
+ 70073F296AA7A50B2A86451A = {
ProvisioningStyle = Automatic;
};
- 51D42EC70167D099FF9F11F6 = {
+ 70541D10A453A62A357FD6DA = {
ProvisioningStyle = Automatic;
};
- 52292A0F78EADC0126136916 = {
+ 718273E1950034827BC4BCF7 = {
ProvisioningStyle = Automatic;
};
- 58E0983675E6A21751BA077D = {
+ 74BF9981D471516844317E41 = {
ProvisioningStyle = Automatic;
};
- 5CF6468D18D175DFA0C3C15C = {
+ 74C6B641416DEE756B63F83B = {
ProvisioningStyle = Automatic;
};
- 61C1F3CDEF881BCAD67C369D = {
+ 780FF90F7A2E5DB653296F94 = {
ProvisioningStyle = Automatic;
};
- 681378E5D9D07BAA1B211EAD = {
+ 7B52FA8B327DB67AF60C0BB1 = {
ProvisioningStyle = Automatic;
};
- 6B88A98489947A12B8C8631A = {
+ 7E58C9E85060E10DB9449968 = {
ProvisioningStyle = Automatic;
};
- 6BCAD53F679E6EFF6E9ABE76 = {
+ 7E64A09456EF45C06475AEF9 = {
ProvisioningStyle = Automatic;
};
- 6CEDEA9B995306DFD9C2E473 = {
+ 82A5700C3111DD043A653C62 = {
ProvisioningStyle = Automatic;
};
- 6E6FDF29A9BD1AAC14D11E06 = {
+ 853E509B9FD262019EBA40BE = {
ProvisioningStyle = Automatic;
};
- 72CC3BF62B704A82067C98D1 = {
+ 86A66976BDA39228F3A72337 = {
ProvisioningStyle = Automatic;
};
- 745B3C1B56A24EC2C6B28C0B = {
+ 9005F12C5A1006056BCDD1BA = {
ProvisioningStyle = Automatic;
};
- 787C5CBA95AB46FF6CE79E78 = {
+ 917FA4C5A8B4A5A1376C00A7 = {
ProvisioningStyle = Automatic;
};
- 7C51C4D927219908F31FD1DF = {
+ 9481764D72790337282158DA = {
ProvisioningStyle = Automatic;
};
- 7D8B11B9BA9DF9540757E9E2 = {
+ 98425A8E3491D503D949A569 = {
ProvisioningStyle = Automatic;
};
- 804D21EDE7515F8014A581B6 = {
+ 9ABEB8C8AD9097D7F07B50B5 = {
ProvisioningStyle = Automatic;
};
- 830E9112B17863864A340FE9 = {
+ 9BF54EDF114BEAB8899A47F9 = {
ProvisioningStyle = Automatic;
};
- 83CCFF5F1359DE0B92E2AF70 = {
+ 9CC26892A88B1BB899E53DF5 = {
ProvisioningStyle = Automatic;
};
- 84314C42C05E6B069FAF3710 = {
+ 9CC7B60AEA78A6484EAA237C = {
ProvisioningStyle = Automatic;
};
- 8785D7837C39C2283224DA75 = {
+ A044C3AF402929B4D55A9080 = {
ProvisioningStyle = Automatic;
};
- 89D3AFE4AD95A970E6498E06 = {
+ A85959564B5FB3770489D66C = {
ProvisioningStyle = Automatic;
};
- 8D10D5D5B55A211B9D5B239E = {
+ A95A462BF3224269501972C7 = {
ProvisioningStyle = Automatic;
};
- 8F8ECD3FC3C6C282CA7C748A = {
+ AAC6189F144D95865D2DFFA2 = {
ProvisioningStyle = Automatic;
};
- 928BFD8C43F5AA1C2F7F86EE = {
+ AD8EE389D94E8B7A9B7F1E3E = {
ProvisioningStyle = Automatic;
};
- 95BBF08A50DC5F76CB2F6923 = {
+ AE89C19755A8AF0192B7C09E = {
ProvisioningStyle = Automatic;
};
- 969E38571FC7BE0D1FA5C0F2 = {
+ AF5DFD5174E2D34ED1167326 = {
ProvisioningStyle = Automatic;
};
- A0C4BC07716CFC719E71B864 = {
+ AFF5C170D720B29E4A6ABD57 = {
ProvisioningStyle = Automatic;
};
- A1F0756F55089999FFC176DC = {
+ B0CE4A0950BF71C921ADDF6F = {
ProvisioningStyle = Automatic;
};
- A62091DEE8CD959DE94A8F0D = {
+ B0DD51FFCF661AD3AAF3C70D = {
ProvisioningStyle = Automatic;
};
- A767A66A0553040C3E4C8FE8 = {
+ B2BF1813AE20AC0EA6B7A103 = {
ProvisioningStyle = Automatic;
};
- A924D28ED6AB052D7610258D = {
+ B3C1AB542406B80D9E28FD83 = {
ProvisioningStyle = Automatic;
};
- AC2F87AF2DD6F1ED5E2590A9 = {
+ B4B423BCBEA896092FC8A89D = {
ProvisioningStyle = Automatic;
};
- AF00BF11A38D6C49E3896A52 = {
+ B4E064E37239C58606BE5146 = {
ProvisioningStyle = Automatic;
};
- AF40834517F20D8EB2CCFCCE = {
+ B51020A18D6BB52E85D2C0A0 = {
ProvisioningStyle = Automatic;
};
- B3452891B8260C4BD87385FC = {
+ B6E7B96E62DB9ACA0E5D579D = {
ProvisioningStyle = Automatic;
};
- B7B10DC70A80C1FB0D874813 = {
+ B7D8F90200493C54A87563A7 = {
ProvisioningStyle = Automatic;
};
- B90E5201833CD54733E58F25 = {
+ BB0FE27477960DDC5B6DB47E = {
ProvisioningStyle = Automatic;
};
- BA3C6CB03E611F920F0CBA82 = {
+ BC6991488D8CC573AA1BDC8F = {
ProvisioningStyle = Automatic;
};
- BE9F28CD4A7397D091DE85B6 = {
+ BFD1D15D5C7B133F2BE814F2 = {
ProvisioningStyle = Automatic;
};
- BF4AF5071FFE74BD004E45D9 = {
+ C45CC74DC170C850261716E7 = {
ProvisioningStyle = Automatic;
};
- BF98F490756093B64A2F9A38 = {
+ C93625A0B67E6042F06F5069 = {
ProvisioningStyle = Automatic;
};
- C9C42E66F1D59B07261FE036 = {
+ CA67B414AA1971674CA1BB76 = {
ProvisioningStyle = Automatic;
};
- CE1F12199245AF18BE422490 = {
+ CA75423F06FACFFA27DD068F = {
ProvisioningStyle = Automatic;
};
- CE65845A02268F04B192E479 = {
+ CC09866B17B00F50BB557DAA = {
ProvisioningStyle = Automatic;
};
- D65ED0BD35F3EC0FC6466BCB = {
+ CC1E58215C72A515E5C4E968 = {
ProvisioningStyle = Automatic;
};
- D8AD4CF3DB9467AF9BFA06BD = {
+ CD69162F352A58A781D2191D = {
ProvisioningStyle = Automatic;
};
- D9A5F8103D92E3527085B9D2 = {
+ CDA3E575A10E9943686D9651 = {
ProvisioningStyle = Automatic;
};
- DF0F057CC484113257567B98 = {
+ CFCBBCD749119BF8D24C0547 = {
ProvisioningStyle = Automatic;
};
- E07DFEAC4405C142A89C313C = {
+ D0D371AC63C9FC42EB4E27B9 = {
ProvisioningStyle = Automatic;
};
- E6132AB8E453580BE3A35BA1 = {
+ DA7E46E820F346FEEB71D302 = {
ProvisioningStyle = Automatic;
};
- E6C971120A8271A079AADB39 = {
+ DB28B503557795AB1CA8DF41 = {
ProvisioningStyle = Automatic;
};
- E6E909AF3A34692C76335CD5 = {
+ E072028161A34E7533BE2CCE = {
ProvisioningStyle = Automatic;
};
- EA33EAE1209A64C18B26C6DC = {
+ E1F75FFAED46F9A8EF5A6B58 = {
ProvisioningStyle = Automatic;
};
- EC193DAA8373DAB1D6CE3C67 = {
+ E61D28A41E985F8384CE50D1 = {
ProvisioningStyle = Automatic;
};
- ECDA8A6880B8784EAE848EFE = {
+ E63C32A9BA1812EC9E117B93 = {
ProvisioningStyle = Automatic;
};
- EFCCDA054A8107675B170FC1 = {
+ E765EC8C4FC688664074FCAB = {
ProvisioningStyle = Automatic;
};
- F5FC59FA400A88FD72FDB307 = {
+ E959FDFA9037FBC6F3BC42D7 = {
ProvisioningStyle = Automatic;
};
- F69E07D158565776D5926FF9 = {
+ E994CBBED485628BB1F1F56D = {
ProvisioningStyle = Automatic;
};
- F72DCF0A21A0C8E25DFC8FFE = {
+ E9E6D506EA0A011CEDDBC701 = {
ProvisioningStyle = Automatic;
};
- F8B243B2C39ADB2080563C0C = {
+ ED591945226DC859C59BD051 = {
ProvisioningStyle = Automatic;
};
- F9FE0C1E75C7CE2FEAC8545F = {
+ EE2F6B7F5CAB0150B8F5A31E = {
ProvisioningStyle = Automatic;
};
- FAA60FF4700E1629AA35CA6B = {
+ EE95BFEA8BAE4CCD7D0C5C92 = {
ProvisioningStyle = Automatic;
};
- FAFC63CCC240428D0B5A7F82 = {
+ EE9E360C1C3D7E0439172FDD = {
ProvisioningStyle = Automatic;
};
- FCAA4DCF1BD66E55753D8DE0 = {
+ F3BECA2A6AD04BC94BDE4C75 = {
ProvisioningStyle = Automatic;
};
- FDE91A15EA90BB247AB8ABBB = {
+ F532269BF56C02A5A87C95A7 = {
ProvisioningStyle = Automatic;
};
- FE86CB123B13ECCFF37B1D0B = {
+ F620D8585971DEC00C33207F = {
ProvisioningStyle = Automatic;
};
- FEF5913971918DD52A9A1A5F = {
+ FEF324BE2711D4602F6574BC = {
ProvisioningStyle = Automatic;
};
};
};
- buildConfigurationList = 98BF3AE57809D14BCDFD9812 /* Build configuration list for PBXProject "ice" */;
+ buildConfigurationList = 5FDF9EEE54129D9539D0147A /* Build configuration list for PBXProject "ice" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = en;
hasScannedForEncodings = 0;
@@ -9545,758 +9647,758 @@
Base,
en,
);
- mainGroup = EDD96890F7603CCBFAE8985D;
- productRefGroup = 60D92721BAE0511E67037F91 /* Products */;
+ mainGroup = E7266CEDFAAE92B6358E0137;
+ productRefGroup = 3EBBBDC564C075DD66B0B816 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
- FCAA4DCF1BD66E55753D8DE0 /* Glacier2 iOS */,
- 0D1E892424EEBFE0181DF694 /* Glacier2 macOS */,
- 0914A24DE1888840E5B162E7 /* Ice C++11 iOS */,
- 16B8E7C8A49D358168590178 /* Ice C++11 macOS */,
- FAA60FF4700E1629AA35CA6B /* Ice iOS */,
- 89D3AFE4AD95A970E6498E06 /* Ice macOS */,
- 95BBF08A50DC5F76CB2F6923 /* IceAcm iOS */,
- EFCCDA054A8107675B170FC1 /* IceAcm macOS */,
- 4FACAB223C4BE57F8313B439 /* IceAdapterDeactivation iOS */,
- 745B3C1B56A24EC2C6B28C0B /* IceAdapterDeactivation macOS */,
- D65ED0BD35F3EC0FC6466BCB /* IceAdmin iOS */,
- 3721D48CE03788DE444C0915 /* IceAdmin macOS */,
- EA33EAE1209A64C18B26C6DC /* IceAmi iOS */,
- 72CC3BF62B704A82067C98D1 /* IceAmi macOS */,
- AF00BF11A38D6C49E3896A52 /* IceBinding iOS */,
- B3452891B8260C4BD87385FC /* IceBinding macOS */,
- C9C42E66F1D59B07261FE036 /* IceDefaultServant iOS */,
- BE9F28CD4A7397D091DE85B6 /* IceDefaultServant macOS */,
- E6132AB8E453580BE3A35BA1 /* IceDefaultValue iOS */,
- 46D6805E63BB07D00857FF65 /* IceDefaultValue macOS */,
- 179FBAA19344F9CA38B571C5 /* IceDiscovery C++11 iOS */,
- 787C5CBA95AB46FF6CE79E78 /* IceDiscovery C++11 macOS */,
- E6C971120A8271A079AADB39 /* IceEnums iOS */,
- BA3C6CB03E611F920F0CBA82 /* IceEnums macOS */,
- 404E0C7A0B6D245EF6B20FBE /* IceExceptions iOS */,
- FE86CB123B13ECCFF37B1D0B /* IceExceptions macOS */,
- 1021ADEEE20D0179A7D1EAE5 /* IceExceptionsAMD iOS */,
- 6E6FDF29A9BD1AAC14D11E06 /* IceExceptionsAMD macOS */,
- 6CEDEA9B995306DFD9C2E473 /* IceFacets iOS */,
- 1904592D5D35822D47AD8D76 /* IceFacets macOS */,
- 19BA482623F0EEF5700964FF /* IceGrid iOS */,
- B90E5201833CD54733E58F25 /* IceGrid macOS */,
- F8B243B2C39ADB2080563C0C /* IceHold iOS */,
- F69E07D158565776D5926FF9 /* IceHold macOS */,
- 50EB7BD9F516353B67693EDA /* IceIAP C++11 iOS */,
- 41AF91D808C68D2FDFDEC0E4 /* IceImpl iOS */,
- BF4AF5071FFE74BD004E45D9 /* IceImpl macOS */,
- 28CE11EAF0AF8ED4144E13C3 /* IceInfo iOS */,
- 830E9112B17863864A340FE9 /* IceInfo macOS */,
- D9A5F8103D92E3527085B9D2 /* IceInheritance iOS */,
- 34B4FD44212BC22DE43DF98B /* IceInheritance macOS */,
- 14BA1B5F33A0E29CFB75C274 /* IceInterceptor iOS */,
- A767A66A0553040C3E4C8FE8 /* IceInterceptor macOS */,
- E07DFEAC4405C142A89C313C /* IceInvoke iOS */,
- 3ED36C0437C2FD7C1609CEAA /* IceInvoke macOS */,
- FDE91A15EA90BB247AB8ABBB /* IceLocation iOS */,
- 076983A948FE64CF9ABD1844 /* IceLocation macOS */,
- 7C51C4D927219908F31FD1DF /* IceLocatorDiscovery C++11 iOS */,
- 8D10D5D5B55A211B9D5B239E /* IceLocatorDiscovery C++11 macOS */,
- 2EB20E48501BD9D7B072833A /* IceObjects iOS */,
- F9FE0C1E75C7CE2FEAC8545F /* IceObjects macOS */,
- 41E689F7CB08945D981E736B /* IceOperations iOS */,
- 19D6396909861EBAD283577E /* IceOperations macOS */,
- 61C1F3CDEF881BCAD67C369D /* IceOperationsAMD iOS */,
- AC2F87AF2DD6F1ED5E2590A9 /* IceOperationsAMD macOS */,
- E6E909AF3A34692C76335CD5 /* IceOptional iOS */,
- 5CF6468D18D175DFA0C3C15C /* IceOptional macOS */,
- A0C4BC07716CFC719E71B864 /* IceOptionalAMD iOS */,
- EC193DAA8373DAB1D6CE3C67 /* IceOptionalAMD macOS */,
- 84314C42C05E6B069FAF3710 /* IceProperties iOS */,
- 681378E5D9D07BAA1B211EAD /* IceProperties macOS */,
- 7D8B11B9BA9DF9540757E9E2 /* IceProxy iOS */,
- 51D42EC70167D099FF9F11F6 /* IceProxy macOS */,
- 52292A0F78EADC0126136916 /* IceProxyAMD iOS */,
- A62091DEE8CD959DE94A8F0D /* IceProxyAMD macOS */,
- CE1F12199245AF18BE422490 /* IceRetry iOS */,
- 8785D7837C39C2283224DA75 /* IceRetry macOS */,
- AF40834517F20D8EB2CCFCCE /* IceScope iOS */,
- A924D28ED6AB052D7610258D /* IceScope macOS */,
- 58E0983675E6A21751BA077D /* IceServantLocator iOS */,
- 1F2AA78A763D19F22E79A046 /* IceServantLocator macOS */,
- 4528506F75BB1C17D38A8FB2 /* IceServantLocatorAMD iOS */,
- FEF5913971918DD52A9A1A5F /* IceServantLocatorAMD macOS */,
- F72DCF0A21A0C8E25DFC8FFE /* IceServices iOS */,
- ECDA8A6880B8784EAE848EFE /* IceServices macOS */,
- 2FCF9711489B071F1761C95C /* IceSlicingExceptions iOS */,
- 928BFD8C43F5AA1C2F7F86EE /* IceSlicingExceptions macOS */,
- 4D4688E27490C1B57417BEC2 /* IceSlicingExceptionsAMD iOS */,
- 4CF8A5E80D330A8FD27BC24C /* IceSlicingExceptionsAMD macOS */,
- 3C76932432EC535E14CAA9A8 /* IceSlicingObjects iOS */,
- D8AD4CF3DB9467AF9BFA06BD /* IceSlicingObjects macOS */,
- FAFC63CCC240428D0B5A7F82 /* IceSlicingObjectsAMD iOS */,
- 28D7C910F8C11FA8AE746E5F /* IceSlicingObjectsAMD macOS */,
- 1EC0C7ECB735847544C17B4A /* IceSSL C++11 iOS */,
- CE65845A02268F04B192E479 /* IceSSL C++11 macOS */,
- A1F0756F55089999FFC176DC /* IceSSLConfiguration iOS */,
- 6B88A98489947A12B8C8631A /* IceSSLConfiguration macOS */,
- 4448C0412CE8E4BBD74B6938 /* IceStorm iOS */,
- 10FF7E84A1164BACC6E539FF /* IceStorm macOS */,
- 2045B45980FB68801EA7DC30 /* IceStream iOS */,
- BF98F490756093B64A2F9A38 /* IceStream macOS */,
- F5FC59FA400A88FD72FDB307 /* IceTimeout iOS */,
- 969E38571FC7BE0D1FA5C0F2 /* IceTimeout macOS */,
- B7B10DC70A80C1FB0D874813 /* IceUdp iOS */,
- DF0F057CC484113257567B98 /* IceUdp macOS */,
- 8F8ECD3FC3C6C282CA7C748A /* SliceEscape iOS */,
- 83CCFF5F1359DE0B92E2AF70 /* SliceEscape macOS */,
- 6BCAD53F679E6EFF6E9ABE76 /* TestCommon iOS */,
- 0CA791446BF1239097A4E060 /* TestCommon macOS */,
- 45CD5EF1475B7ADCCDB65C94 /* TestDriver iOS */,
- 804D21EDE7515F8014A581B6 /* TestDriver macOS */,
+ 853E509B9FD262019EBA40BE /* Glacier2 iOS */,
+ B6E7B96E62DB9ACA0E5D579D /* Glacier2 macOS */,
+ CFCBBCD749119BF8D24C0547 /* Ice C++11 iOS */,
+ 2B0DA341DBA94884D0304509 /* Ice C++11 macOS */,
+ 9CC26892A88B1BB899E53DF5 /* Ice iOS */,
+ 70073F296AA7A50B2A86451A /* Ice macOS */,
+ CDA3E575A10E9943686D9651 /* IceAcm iOS */,
+ BFD1D15D5C7B133F2BE814F2 /* IceAcm macOS */,
+ 5295813C4C98826FBA6D4CA4 /* IceAdapterDeactivation iOS */,
+ B51020A18D6BB52E85D2C0A0 /* IceAdapterDeactivation macOS */,
+ 152C6B4D442533A14394AA59 /* IceAdmin iOS */,
+ F532269BF56C02A5A87C95A7 /* IceAdmin macOS */,
+ AF5DFD5174E2D34ED1167326 /* IceAmi iOS */,
+ 9BF54EDF114BEAB8899A47F9 /* IceAmi macOS */,
+ AFF5C170D720B29E4A6ABD57 /* IceBinding iOS */,
+ DB28B503557795AB1CA8DF41 /* IceBinding macOS */,
+ E61D28A41E985F8384CE50D1 /* IceDefaultServant iOS */,
+ DA7E46E820F346FEEB71D302 /* IceDefaultServant macOS */,
+ 70541D10A453A62A357FD6DA /* IceDefaultValue iOS */,
+ 5AB40796E10DD225752975C0 /* IceDefaultValue macOS */,
+ 649D215E8804C017CA836B16 /* IceDiscovery C++11 iOS */,
+ 5E57DA0A85ED2B235C1D4A3A /* IceDiscovery C++11 macOS */,
+ 28CFE986A434086C3605887E /* IceEnums iOS */,
+ 33A418E3474BE5E738D35102 /* IceEnums macOS */,
+ A044C3AF402929B4D55A9080 /* IceExceptions iOS */,
+ ED591945226DC859C59BD051 /* IceExceptions macOS */,
+ 201230D356840C5A08351F26 /* IceExceptionsAMD iOS */,
+ 7B52FA8B327DB67AF60C0BB1 /* IceExceptionsAMD macOS */,
+ CA67B414AA1971674CA1BB76 /* IceFacets iOS */,
+ E63C32A9BA1812EC9E117B93 /* IceFacets macOS */,
+ 28E66BF870D16ED437F027B7 /* IceGrid iOS */,
+ 3EAB7D1B9F1CE476576FAA4C /* IceGrid macOS */,
+ C45CC74DC170C850261716E7 /* IceHold iOS */,
+ B0DD51FFCF661AD3AAF3C70D /* IceHold macOS */,
+ 553857E5964EBE16D6716B46 /* IceIAP C++11 iOS */,
+ 82A5700C3111DD043A653C62 /* IceImpl iOS */,
+ 0B20F023D2E1BC4B57915592 /* IceImpl macOS */,
+ 6A21D52AF98E02D675C03AB8 /* IceInfo iOS */,
+ CC1E58215C72A515E5C4E968 /* IceInfo macOS */,
+ A85959564B5FB3770489D66C /* IceInheritance iOS */,
+ B7D8F90200493C54A87563A7 /* IceInheritance macOS */,
+ 2FA692464307DB8942B81FCE /* IceInterceptor iOS */,
+ 215AFD7E3854FE327298A93E /* IceInterceptor macOS */,
+ 25A27A7EDF9F753CD06CD077 /* IceInvoke iOS */,
+ 718273E1950034827BC4BCF7 /* IceInvoke macOS */,
+ 86A66976BDA39228F3A72337 /* IceLocation iOS */,
+ 7E58C9E85060E10DB9449968 /* IceLocation macOS */,
+ EE9E360C1C3D7E0439172FDD /* IceLocatorDiscovery C++11 iOS */,
+ AAC6189F144D95865D2DFFA2 /* IceLocatorDiscovery C++11 macOS */,
+ B0CE4A0950BF71C921ADDF6F /* IceObjects iOS */,
+ A95A462BF3224269501972C7 /* IceObjects macOS */,
+ E1F75FFAED46F9A8EF5A6B58 /* IceOperations iOS */,
+ 1E406447B88C3D90364D4D1F /* IceOperations macOS */,
+ 57F4F70C7420D9DEB081223A /* IceOperationsAMD iOS */,
+ F620D8585971DEC00C33207F /* IceOperationsAMD macOS */,
+ 4A47CB078D8654283E9A288C /* IceOptional iOS */,
+ 9CC7B60AEA78A6484EAA237C /* IceOptional macOS */,
+ CA75423F06FACFFA27DD068F /* IceOptionalAMD iOS */,
+ B4B423BCBEA896092FC8A89D /* IceOptionalAMD macOS */,
+ 1AAC4E0E13E730A3EBE99884 /* IceProperties iOS */,
+ B3C1AB542406B80D9E28FD83 /* IceProperties macOS */,
+ CD69162F352A58A781D2191D /* IceProxy iOS */,
+ 11F37400E8E07989B6E1EC6B /* IceProxy macOS */,
+ BB0FE27477960DDC5B6DB47E /* IceProxyAMD iOS */,
+ E072028161A34E7533BE2CCE /* IceProxyAMD macOS */,
+ AD8EE389D94E8B7A9B7F1E3E /* IceRetry iOS */,
+ 1A56C6EA194130F78ED3E3D7 /* IceRetry macOS */,
+ 34CC3FB8F32A94970DA6C5BC /* IceScope iOS */,
+ 74BF9981D471516844317E41 /* IceScope macOS */,
+ E959FDFA9037FBC6F3BC42D7 /* IceServantLocator iOS */,
+ 181D4BB2B500C7095E790261 /* IceServantLocator macOS */,
+ E994CBBED485628BB1F1F56D /* IceServantLocatorAMD iOS */,
+ 51B83832597A166C70372361 /* IceServantLocatorAMD macOS */,
+ E9E6D506EA0A011CEDDBC701 /* IceServices iOS */,
+ E765EC8C4FC688664074FCAB /* IceServices macOS */,
+ EE95BFEA8BAE4CCD7D0C5C92 /* IceSlicingExceptions iOS */,
+ EE2F6B7F5CAB0150B8F5A31E /* IceSlicingExceptions macOS */,
+ 4A2ABF9D0923453422834FC0 /* IceSlicingExceptionsAMD iOS */,
+ CC09866B17B00F50BB557DAA /* IceSlicingExceptionsAMD macOS */,
+ B4E064E37239C58606BE5146 /* IceSlicingObjects iOS */,
+ FEF324BE2711D4602F6574BC /* IceSlicingObjects macOS */,
+ 98425A8E3491D503D949A569 /* IceSlicingObjectsAMD iOS */,
+ 917FA4C5A8B4A5A1376C00A7 /* IceSlicingObjectsAMD macOS */,
+ 12BB34202E09CE86EEA85292 /* IceSSL C++11 iOS */,
+ C93625A0B67E6042F06F5069 /* IceSSL C++11 macOS */,
+ D0D371AC63C9FC42EB4E27B9 /* IceSSLConfiguration iOS */,
+ 9005F12C5A1006056BCDD1BA /* IceSSLConfiguration macOS */,
+ 243376B5BCD8FB6B573F35B1 /* IceStorm iOS */,
+ 9ABEB8C8AD9097D7F07B50B5 /* IceStorm macOS */,
+ 780FF90F7A2E5DB653296F94 /* IceStream iOS */,
+ 7E64A09456EF45C06475AEF9 /* IceStream macOS */,
+ AE89C19755A8AF0192B7C09E /* IceTimeout iOS */,
+ 74C6B641416DEE756B63F83B /* IceTimeout macOS */,
+ 0B9E7BE2574649A7DEAD1C1C /* IceUdp iOS */,
+ BC6991488D8CC573AA1BDC8F /* IceUdp macOS */,
+ 9481764D72790337282158DA /* SliceEscape iOS */,
+ 66D7646E717E859CA23ACF56 /* SliceEscape macOS */,
+ 4610DAE8306D4D0C91F09CEE /* TestCommon iOS */,
+ F3BECA2A6AD04BC94BDE4C75 /* TestCommon macOS */,
+ 28CDBC394C2C48C28EDC2737 /* TestDriver iOS */,
+ B2BF1813AE20AC0EA6B7A103 /* TestDriver macOS */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
- 0075C60A22357E34B5C84C3C /* Resources */ = {
+ 03F21DAAE6433804B6DB8AFB /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 046AF0475AD9B00B7856CF97 /* Resources */ = {
+ 06E7CDD8A55FAE6635787DBC /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 04D32DF14ACFD413D2F36056 /* Resources */ = {
+ 0898BA130E7D558CE1D0801B /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 0797227506B33F4C0807065A /* Resources */ = {
+ 0ADF6C76425B8B18AC8063BD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 081B9EC7CEFB163FA55370D5 /* Resources */ = {
+ 0B2C9EF7938FCE0CFFD56095 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 0A98228B9515B1DB0150729E /* Resources */ = {
+ 0E8F9432A5CAB736C9C6BBE4 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 1154F67D01097FA193920F03 /* Resources */ = {
+ 14669483778D991501DFBD7F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 14A37D59A7C6609EC1F76EE8 /* Resources */ = {
+ 1B900AADC2B62FAA73123E33 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 18F9C4384FF4A8BE316A31F0 /* Resources */ = {
+ 1C8EBB22E6110CA651B5AE94 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 1ABC24FD8F298057BB170856 /* Resources */ = {
+ 1CE2DA15F7BFF6191BC93389 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 1BDB691983EA36648130BB74 /* Resources */ = {
+ 2279C34B48F96D68B40D6318 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 20AC3A053AB3644BBFF2F205 /* Resources */ = {
+ 2361AEBE79B32E8F9EB19425 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 21D61C934C8FBE89A403E6B0 /* Resources */ = {
+ 2415BAF24675CA6B39C037B5 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 289BD974E0DD507C0D1DFFCE /* Resources */ = {
+ 25DAD46CFAFE17BCB80D1B8E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 2AD40A0AE6D88DD4CD5CDF77 /* Resources */ = {
+ 286B7455EBDA0104559B238E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 3123F1213C51EAA7D1338B8A /* Resources */ = {
+ 287C74F0F682520334C70332 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 31618C7BA3B5DC06897DDFAF /* Resources */ = {
+ 29459FE6CE25A350AAC83531 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 319624D9881110F5CD5F4094 /* Resources */ = {
+ 2B6E3D89D06B03534490E0B0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ F13A439C9CA5B88C0267537C /* certs in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 351B4F947E4109118BEA5353 /* Resources */ = {
+ 327FAF07807DBB731BB58165 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 365F6474D4326E479BF7C2E3 /* Resources */ = {
+ 343B137C46526274D04B29EC /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 3D821856EE1FDAD92D7E6B82 /* Resources */ = {
+ 38F16D70747EC8A142CDFE9B /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4349416146481071BC5286BD /* Resources */ = {
+ 395C91ABC682A77E19265D98 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 45998D9FD0B58CB1FA328459 /* Resources */ = {
+ 3CA4BBCC648CA092749D6B14 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4B07F0D84D94F4CD4273F45F /* Resources */ = {
+ 3E6AEE882EE5C381DA75C7C3 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4B6B8E3B776A78E0D03620C8 /* Resources */ = {
+ 3F2BEDC35BF93D070ABBF796 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4CE3F1AB27B3C98FE67F0AF2 /* Resources */ = {
+ 401A96400E95955179762F10 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 5357BB4E24B791310310AFBD /* Resources */ = {
+ 41FE814B22CDFB43D444B7A9 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 567B2E4498DE7430C64598ED /* Resources */ = {
+ 46294F14D3215DC0246E68E6 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 5A8A5E11D4E4DCD66B28A2EB /* Resources */ = {
+ 47B9A4FB73922CA516CAC09D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 6796246E014E3E4D3F18E309 /* Resources */ = {
+ 4A23545CA6DF4A31892011C7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 6AEF10FD50710C8CB4E035E3 /* Resources */ = {
+ 5064F164501D15966944248E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 6E0873ECD062ECAAE14D5ACD /* Resources */ = {
+ 51CCE03A1E923D61E70AA22D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 718DE06CD3652CB466BBA7A6 /* Resources */ = {
+ 51E29C54273A051F786F0022 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 75C7A04CF18C4A9E59C4128B /* Resources */ = {
+ 58CAEEC623907596C4299AD6 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ 4479374881A3AC61AF0F0084 /* certs in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 77CCF8D8E82969BF83B292C2 /* Resources */ = {
+ 5C8D1D89B27A8EDD3B92177B /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 79B1BF76D5D0B6DCE9D9E2C5 /* Resources */ = {
+ 5F4852FB8C06011A12A6637C /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 7C966D42E4C66FBE8A0FAE5F /* Resources */ = {
+ 61F2CBA9C432F2602455DBEA /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 7D1D9AC459A695B2024EF72C /* Resources */ = {
+ 657AA3033812AE42797AB382 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 7DF7300D926EB869E06886C7 /* Resources */ = {
+ 6A7B4942F6921B70F208E5C3 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 805F12B7F2FA8832D5025D65 /* Resources */ = {
+ 6B850378FB170432DA6F117E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 82F223AB644559FAD1A87486 /* Resources */ = {
+ 6C37070AF83D63F58F6531BF /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 846E07EBC63EB4BA03BC7EDE /* Resources */ = {
+ 6DC0F4B1C3D38EDCF1B022E0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 87F1CFD208877354893A13DE /* Resources */ = {
+ 72A34644A657E11BAEFE28F5 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 894735BC32F9EC760A7D99B0 /* Resources */ = {
+ 77EAEF6C69A4AEEC1552824E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 8A966CA6ED7FDD848CDD1495 /* Resources */ = {
+ 7A213D33DF4E5410D47700AB /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 8BA6062E2923F8CF615A42F4 /* Resources */ = {
+ 7AC874FE548C3A9CE7B88E4E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 8BC2E13470FA9CF59F44AF86 /* Resources */ = {
+ 7DA65DE6D40208641008B36E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 9CACBA443D8E4BEDF9BC777D /* Resources */ = {
+ 7DB62168D6F58CB0DF0F0C42 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 9D694C555CEF83C4F6F9EED5 /* Resources */ = {
+ 859569F9A6D7BEFCA0957ECB /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- 9E3CD669A72EE2D88CE5F4F5 /* Resources */ = {
+ 884133A2D68638AF7BF31663 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- A0AB685E70DD31D83B011B4A /* Resources */ = {
+ 89283BC845A6321576ACAE45 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- B1BFCCF5A1158F5B74ECFF47 /* certs in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- A2AD11BD470DE5C065F0617F /* Resources */ = {
+ 8A540EF8847C540566DFDDF7 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- A3ED393751707C8F3D8E2369 /* Resources */ = {
+ 8AE6A48BFF9CD5A93701C0AA /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- A51C69A680AA4AC0900CB7A8 /* Resources */ = {
+ 8EAC3E6D02E830F973E2105B /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- A9AB08B17AABA963392BAFE6 /* Resources */ = {
+ 90EEB52FB404D34D36CC9FD0 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- A9F037CE85448E42167F6356 /* Resources */ = {
+ 920FE675BE2E310DC6B6A18C /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- B152E3719F315BE08395F193 /* Resources */ = {
+ 937E063387845413B9DAE535 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- B38341C99164DB5B13D2EC01 /* Resources */ = {
+ 9390284F2929A191FCFE579F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- B5C60C06DF06195588400C97 /* Resources */ = {
+ 981FC1F5112404D9A28937C2 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- BA297851698CB273E4280B9C /* Resources */ = {
+ 98F2E1A57BA48C66E5EDC904 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 052732AFD9B04C3B58E3B501 /* certs in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BB854970707C92855BECCD6F /* Resources */ = {
+ 99A92A9F9F6037C16A85D8C6 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- BF21011ACA49876CC3A78688 /* Resources */ = {
+ 9A508815E2FEF680175A09BE /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- C01F5770D8BE4A38F8726E1A /* Resources */ = {
+ 9F38974143631060A19628A3 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- C0A8690F3C243782A50F87E6 /* Resources */ = {
+ A0F37A30304B02310301D24F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- C1D29365D7DF45624475B905 /* Resources */ = {
+ A5FDEAFD08A977FD11AACCDC /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- C206F6E056499487E90D6197 /* Resources */ = {
+ AEC8A04AC45F718789136B09 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- C3D7F17010C8E21113AA2CDA /* Resources */ = {
+ AFAB8F75A50A9DE536E30C6D /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- C491292075C354286BBADBBF /* Resources */ = {
+ B348D527DAF47B3B02696EF3 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- CA2A2098041D8AA9435778E1 /* Resources */ = {
+ B5BD683C8F1416A0949501A1 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- CA9FD825CA74C9CD4B5BE88E /* Resources */ = {
+ B94DDE7B5E36CEE426627D77 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- CC3A8F006D594D4E48D2AFB0 /* Resources */ = {
+ C262DE287163009A76F205A1 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- CCA2BF146190F3280B0D9E34 /* Resources */ = {
+ C8BED7A99CC22A713336F70F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- CD7FCB844CA3EABC76D41C59 /* Resources */ = {
+ CAD28B93F0E62828AF0D6377 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- C0BC4621AD2C431E911F15C4 /* certs in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- D300A8ABB26404CA777F0090 /* Resources */ = {
+ CB7046FE7D1A348E79B5EA58 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- D895A5689C009E2BB0E68AAB /* Resources */ = {
+ CB8EE20C7A414BAD85AB7695 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- D96BE7085F78CD18A2F3CF34 /* Resources */ = {
+ CBF079B433A6C01EEE1EBC76 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
+ BEBD5D9D189718C49FFE8B73 /* certs in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- E0552E678A083E9F2DC488E3 /* Resources */ = {
+ D2613DB78872438593461A36 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- E7BF879BDD8199182B551831 /* Resources */ = {
+ D2E1C76AF4B1F7254829DF15 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- E822C343A9C2224BE535AAFD /* Resources */ = {
+ D558B6EDE5C078BAFAA2B8B9 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- E8682169F4055234C066BA9F /* Resources */ = {
+ D5CE8187A11BA735C40B3737 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- E90E9FB7CF7BF29A83FA2747 /* Resources */ = {
+ D95C0DD2462404C0FACCC594 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- EE2D5E65A142E80E4540619A /* Resources */ = {
+ D9A629B2453AD278E9A0B579 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- EEE2FFFB9EE73228ECCF0FC4 /* Resources */ = {
+ DD425F667A6EE7B472FFB734 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- EF28EEBE6608AD0284BA1BEE /* Resources */ = {
+ E00CE6C4330895E2A916553B /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- EFD29B9D73F363F7599219CA /* Resources */ = {
+ E9A6F32F192ED65C49266A8A /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- F17CD0FD5F59A80791BF2401 /* Resources */ = {
+ EADE23E9167C60CA4D853B1F /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- F707C7FD823B272342FBB470 /* Resources */ = {
+ ECFB74072388133D184C1787 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- F765EC4848E3E7826159CB29 /* Resources */ = {
+ ED04F8DB769A095C24B10DDD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- F902BDC9B5B3607F03AC574F /* Resources */ = {
+ ED07679856573B78405C660E /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- F9C2084D2A8B69D9B8DC1CB8 /* Resources */ = {
+ EFF6A4BE78A57FD6031DC786 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- FB88FF81B0C5B03B39B04132 /* Resources */ = {
+ F2C3239F070A7F2406EB27CD /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
- FE9C6F712A02E1E4A104DE8B /* Resources */ = {
+ F3457DE9A754E10F9EE2726A /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10306,7 +10408,7 @@
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
- 0339E7E60B6994CA1A76F7B1 /* Swiftformat & Swiftlint */ = {
+ 0B05C7D018C0FE0BEDD50201 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10322,9 +10424,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/ami\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/hold\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 07BBAA85ADC8CB98B66CA4E3 /* Swiftformat & Swiftlint */ = {
+ 0BFA93678B6C42F427327808 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10340,9 +10442,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/properties\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 0A2EDC7CA06CC7A9259CE5B3 /* Swiftformat & Swiftlint */ = {
+ 0CC37C2A83BD9509F427DF73 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10358,9 +10460,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/facets\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/objects\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 0D71C96B12A6242991135286 /* Swiftformat & Swiftlint */ = {
+ 0CE441B47FB73920D64F6260 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10376,9 +10478,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/servantLocator\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/defaultServant\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 0E2AA6E154C4F83A720F5F63 /* Swiftformat & Swiftlint */ = {
+ 0E8C23EDBD80A4B22901B537 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10394,9 +10496,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/inheritance\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 0EB88587998AA842B1D99C6F /* Swiftformat & Swiftlint */ = {
+ 16970C400879C075CCF74BA1 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10412,9 +10514,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/defaultServant\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/servantLocator\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 107903FAF8F83D449A8F27E1 /* Swiftformat & Swiftlint */ = {
+ 2112EA07BB43FFC9EBCA61A4 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10430,9 +10532,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/udp\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 1D3E51A3FE730D238F908A98 /* Swiftformat & Swiftlint */ = {
+ 26831D0966DA8486BE7FD1D7 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10448,9 +10550,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/defaultServant\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/operations\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 1E90D340C99FE93BCBF421F2 /* Swiftformat & Swiftlint */ = {
+ 286DB19CC8F5465BAE6E86B7 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10466,9 +10568,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/timeout\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/acm\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 2081B9FF56D4C6748BD9287E /* Swiftformat & Swiftlint */ = {
+ 28CA6E0BE0B4DCC6B5673AB2 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10484,9 +10586,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/proxy\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/properties\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 215C22AA742559E96A0C3728 /* Swiftformat & Swiftlint */ = {
+ 2BB755A01EB9BBBC8F617578 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10502,9 +10604,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/interceptor\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/acm\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 2234AA6B1768ACF733DF13BD /* Swiftformat & Swiftlint */ = {
+ 2FEE0B757B67A8058878A540 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10520,9 +10622,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/inheritance\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/binding\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 23224A7251EAD93840CE4D26 /* Swiftformat & Swiftlint */ = {
+ 3264CE85903DE5D54750F0EF /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10538,9 +10640,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/timeout\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/optional\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 23F561D2FABFB311A6B9CB5A /* Swiftformat & Swiftlint */ = {
+ 35EC5B34CADE7ACD57BB54AE /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10556,9 +10658,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/operations\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/interceptor\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 2C4524B9E1860B0C45B2C55D /* Swiftformat & Swiftlint */ = {
+ 3711708C516764F5096BC1DA /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10574,9 +10676,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/services\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/info\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 2D95735580F73E28A4824A6E /* Swiftformat & Swiftlint */ = {
+ 3A39AE068E8FE2AB13ABD132 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10592,9 +10694,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/servantLocator\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/objects\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 2F0150FF5DBB7EB9A50DDC4B /* Swiftformat & Swiftlint */ = {
+ 3A448222314BCE9743A4C4A8 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10610,9 +10712,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/stream\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/location\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 2FD44BC8BFCE68F0B674D0EA /* Swiftformat & Swiftlint */ = {
+ 3E7185B7CBD3767DBD95F487 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10628,9 +10730,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/enums\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/adapterDeactivation\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 31203296664B31335C74B088 /* Swiftformat & Swiftlint */ = {
+ 441ABE8BD326D534EF37D2BD /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10646,9 +10748,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/location\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/binding\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 3571F797E1C8A2E25D58E9F0 /* Swiftformat & Swiftlint */ = {
+ 46C533BB60CE55765B9ED604 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10666,7 +10768,7 @@
shellPath = /bin/sh;
shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/src/Ice\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 3BAA44D0CE849E0C8A394181 /* Swiftformat & Swiftlint */ = {
+ 4DF3958ED9372C5A29A41769 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10682,9 +10784,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/proxy\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/timeout\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 3F380CFF1BA97CB4E0BCA1C4 /* Swiftformat & Swiftlint */ = {
+ 53EB7E8B1472700FED4BA189 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10700,9 +10802,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/properties\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/objects\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 3F99A5EF628E3834ACB9D2ED /* Swiftformat & Swiftlint */ = {
+ 56060A99446DFA62E9116ACB /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10718,9 +10820,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/IceSSL/configuration\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/objects\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 4267E725C2F69047663B4327 /* Swiftformat & Swiftlint */ = {
+ 5E403166825C341BD80381C3 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10736,9 +10838,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/defaultValue\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/inheritance\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 4B60243DED5A423D011C4846 /* Copy Frameworks */ = {
+ 60629D6A22E65EBC5890A8E7 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10746,19 +10848,17 @@
inputFileListPaths = (
);
inputPaths = (
- "$(SRCROOT)/../Carthage/Build/iOS/PromiseKit.framework",
);
- name = "Copy Frameworks";
+ name = "Swiftformat & Swiftlint";
outputFileListPaths = (
);
outputPaths = (
- "$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/PromiseKit.framework",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "/usr/local/bin/carthage copy-frameworks";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/objects\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 5120124EA1D571EF597B975A /* Swiftformat & Swiftlint */ = {
+ 617B34839C773ACD834B3EB8 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10774,9 +10874,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/invoke\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 516B5D26E0BA3BB6716AEA28 /* Swiftformat & Swiftlint */ = {
+ 63A9BE618A41845F769E2E2F /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10792,9 +10892,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/info\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/proxy\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 53002A6C352C4BBC814E0448 /* Swiftformat & Swiftlint */ = {
+ 65C0AC43A1BCAD157508D5B9 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10810,9 +10910,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/scope\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/servantLocator\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 54F1EF8E5DE7832AEB6C61C2 /* Swiftformat & Swiftlint */ = {
+ 694FBFDC2D27C79EB7387CB5 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10828,9 +10928,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/invoke\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 558023C3FFAA7B119A4A0AA1 /* Swiftformat & Swiftlint */ = {
+ 69AE0DCB9EDEB85AAC98C871 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10846,9 +10946,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/operations\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/facets\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 57B60F78CA96654D582BC698 /* Swiftformat & Swiftlint */ = {
+ 6C43421FB66339318C2ABEAE /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10864,9 +10964,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/properties\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/scope\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 59C90D170B93E54EB7C07ED7 /* Swiftformat & Swiftlint */ = {
+ 6E41D3A8A08A504618C4E669 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10882,9 +10982,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/defaultValue\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/operations\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 5A8794C476457903A3E4AC9A /* Swiftformat & Swiftlint */ = {
+ 6F3C668487F989F470880A77 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10900,9 +11000,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/udp\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 5AFA9322F48B21B2A861B2AD /* Swiftformat & Swiftlint */ = {
+ 712F3C07C5943C27F093F817 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10918,9 +11018,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/admin\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/TestDriver\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 5B3A7694D77C3ADE2CA75633 /* Swiftformat & Swiftlint */ = {
+ 78A53EBE72A00EF49C53B1B5 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10936,9 +11036,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/optional\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/ami\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 5C99192370A58855CF9C14B9 /* Swiftformat & Swiftlint */ = {
+ 7A54CEA2B19A2055CC1F47DD /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10954,9 +11054,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/operations\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 60196D4DC8074CF1A47B7DED /* Swiftformat & Swiftlint */ = {
+ 7CDCA8AD809197C063745A06 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10972,9 +11072,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/acm\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/defaultServant\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 61156C1EF10919FD3E50F44A /* Swiftformat & Swiftlint */ = {
+ 7ED2107B929B80513C30813F /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -10990,9 +11090,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/admin\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/TestCommon\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 647FFE88B6938BBBD37270F2 /* Swiftformat & Swiftlint */ = {
+ 809211C4AFF094D3841619CC /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11008,9 +11108,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/operations\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/stream\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 64DC660AB0881F6F611FCD91 /* Swiftformat & Swiftlint */ = {
+ 8396BB8652E451B914505CBC /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11028,7 +11128,7 @@
shellPath = /bin/sh;
shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/interceptor\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 6662BC35DCE850DF51F7DB41 /* Swiftformat & Swiftlint */ = {
+ 846E422CB48606E9E4DEBA34 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11044,9 +11144,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/inheritance\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 6AB5BCFBF8F2A2DE92D06F3E /* Swiftformat & Swiftlint */ = {
+ 872D7F0E4F675368FB3BCDBE /* Copy Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11054,17 +11154,19 @@
inputFileListPaths = (
);
inputPaths = (
+ "$(SRCROOT)/../Carthage/Build/iOS/PromiseKit.framework",
);
- name = "Swiftformat & Swiftlint";
+ name = "Copy Frameworks";
outputFileListPaths = (
);
outputPaths = (
+ "$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/PromiseKit.framework",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/objects\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "/usr/local/bin/carthage copy-frameworks";
};
- 6E997C54A52268196C6F6275 /* Swiftformat & Swiftlint */ = {
+ 8E66F057C81542F2FC68D33A /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11080,9 +11182,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/location\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/TestCommon\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 70D684CEFAC4553D4C95863F /* Swiftformat & Swiftlint */ = {
+ 8F44291388A023E1E1673496 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11098,9 +11200,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/services\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/facets\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 733FD68C4F287BEB870F242C /* Swiftformat & Swiftlint */ = {
+ 92F065E3E5E62F40F7FB551E /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11116,9 +11218,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/binding\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/defaultValue\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 7649C826136D00FD78C1A863 /* Swiftformat & Swiftlint */ = {
+ 94D5D3AC21C7DC83655CA07B /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11134,9 +11236,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/objects\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/adapterDeactivation\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 77B98A48916D5BF86A2B88A4 /* Swiftformat & Swiftlint */ = {
+ 95766AB08FD969B4E630CCA2 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11152,9 +11254,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/enums\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/optional\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 78E440A99B8445DA939FD4A6 /* Swiftformat & Swiftlint */ = {
+ 958EAD12FD66968A6F787031 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11170,9 +11272,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/TestDriver\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/admin\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 7D4A4D4EA68298C7FF064D13 /* Swiftformat & Swiftlint */ = {
+ 966E15C79D450685A5F8372A /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11188,9 +11290,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/objects\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/servantLocator\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 86687331A56DE43B169EC03A /* Swiftformat & Swiftlint */ = {
+ 9B94B42A0CF130D7AFE6E8BB /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11206,9 +11308,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/optional\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 86C27A8F06ED2096C50C7608 /* Swiftformat & Swiftlint */ = {
+ 9CCA56F04E11EA3438DDC740 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11224,9 +11326,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/TestDriver\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/optional\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 91C01076C7064C2293B3094D /* Swiftformat & Swiftlint */ = {
+ A542C912309230479B2AF9FD /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11242,9 +11344,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/adapterDeactivation\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/invoke\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 983066BD338971BCD9055935 /* Swiftformat & Swiftlint */ = {
+ ACCD22EACD54362ACA16B1DA /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11260,9 +11362,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/retry\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/defaultValue\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- 9DF59C2CE8F22B3CC161B52F /* Swiftformat & Swiftlint */ = {
+ AD33D2667184659D4CE2B88F /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11278,9 +11380,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/adapterDeactivation\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/proxy\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- A226E11A9F06DE160BF7BD9E /* Swiftformat & Swiftlint */ = {
+ B57390BB0B1E6850E4BE8452 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11296,9 +11398,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/optional\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/retry\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- A8277E856FE9170569081041 /* Swiftformat & Swiftlint */ = {
+ B87DF4C10B82AF830EB49404 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11314,9 +11416,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/IceSSL/configuration\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/ami\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- A927F2EACB9A4205A577F737 /* Swiftformat & Swiftlint */ = {
+ B8DDCAEE0D115923C2B37FFD /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11332,9 +11434,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/facets\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/src/Ice\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- AC8E340F874B8D005D771E00 /* Swiftformat & Swiftlint */ = {
+ BA1EAE199CAE89B3F1FB1C5F /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11350,9 +11452,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/optional\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/proxy\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- ADD238B38C09EBA60FBB9A96 /* Swiftformat & Swiftlint */ = {
+ C252282E558571AD302E3133 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11368,9 +11470,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/objects\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/operations\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- B0A02340394B042B140E17DA /* Swiftformat & Swiftlint */ = {
+ C3B8322B486F329671B332D0 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11386,9 +11488,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/binding\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/location\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- B18712F9F46F09FC6167BB8B /* Swiftformat & Swiftlint */ = {
+ C42BC5B75F10876BFA5A1E8E /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11404,9 +11506,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/hold\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/servantLocator\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- B4351A9E43F03DEC983B6D93 /* Swiftformat & Swiftlint */ = {
+ C5A436D24E0F0118492A3EB3 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11422,9 +11524,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Slice/escape\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/scope\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- B5F66FA0343BF136422FC924 /* Swiftformat & Swiftlint */ = {
+ C5D0EAA8FC10045964DA0816 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11440,9 +11542,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/ami\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- B8811143A56B29CAF4DEEEE8 /* Swiftformat & Swiftlint */ = {
+ C972820A2BB29C39DD953D05 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11458,9 +11560,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/scope\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/services\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- B9546737BE96F627A4400DB1 /* Swiftformat & Swiftlint */ = {
+ C98F45CAAA556B9EF28BB153 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11476,9 +11578,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/info\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/hold\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- C48AFF9D83BE223B894807C6 /* Swiftformat & Swiftlint */ = {
+ CD32127CBD3F93AB9BB29D19 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11494,9 +11596,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/objects\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- C69F687AE16A494CD1C80AC6 /* Swiftformat & Swiftlint */ = {
+ CDCD0CD33D77189C5A73F465 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11512,9 +11614,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/invoke\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/proxy\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- C89E672A9FA3350C738F562F /* Swiftformat & Swiftlint */ = {
+ CE878E94F747E855EC249E18 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11532,7 +11634,7 @@
shellPath = /bin/sh;
shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Slice/escape\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- C9164FB85EEE8953BD58127D /* Swiftformat & Swiftlint */ = {
+ D8FA32D321954E26FCE1C4FB /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11548,9 +11650,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/src/Ice\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/TestDriver\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- CCC778B132ED14AF17A9F30B /* Swiftformat & Swiftlint */ = {
+ D9B98B20CB52320F19B1CC25 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11566,9 +11668,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/TestCommon\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/udp\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- DCDE50FFE9DDF48480D8ABCC /* Swiftformat & Swiftlint */ = {
+ DA19C8960FDB6E8C163E3A88 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11584,9 +11686,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/proxy\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/info\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- E0AA25364BDABA5BEA9CEDD4 /* Swiftformat & Swiftlint */ = {
+ E5832316498C33EE0583EAC0 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11602,9 +11704,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/servantLocator\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/udp\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- E1F3D89226E653B045B7D1FA /* Swiftformat & Swiftlint */ = {
+ EAC9D30594BC3F926B028B97 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11620,9 +11722,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/stream\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/admin\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- E4A476A0493FE51B280E0E58 /* Swiftformat & Swiftlint */ = {
+ EB38E4A8E4B1BA39DE123A04 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11638,9 +11740,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/enums\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- E73EBAA01E240052214093C2 /* Swiftformat & Swiftlint */ = {
+ EDBC42F377DFAD24C67F028D /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11656,9 +11758,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/operations\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/timeout\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- E870763E70733F394E7CEEF6 /* Swiftformat & Swiftlint */ = {
+ F09D84261CD7EB713B9A1208 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11674,9 +11776,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/hold\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/IceSSL/configuration\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- E879A8A86B0FF43AE98E1B9C /* Swiftformat & Swiftlint */ = {
+ F4A2D49327D5EFDFEAC70CC2 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11692,9 +11794,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/objects\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/enums\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- F88053E458C758CF33570491 /* Swiftformat & Swiftlint */ = {
+ F6F0431FE022D9C621D20A40 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11710,9 +11812,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/retry\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/objects\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- FA948278EB323ECFC8117432 /* Swiftformat & Swiftlint */ = {
+ F83791BCED0C55BB9BFD506C /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11728,9 +11830,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/proxy\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- FAAC5B67CE77808D63D293F1 /* Swiftformat & Swiftlint */ = {
+ FA84EF77736151A6FE968FBE /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11746,9 +11848,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/TestCommon\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Slice/escape\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- FBF2ECDF680B6F305A801500 /* Swiftformat & Swiftlint */ = {
+ FAAB138ACC17EE25DD7F6068 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11764,9 +11866,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/services\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- FD289E5BA38A235126D2E05B /* Swiftformat & Swiftlint */ = {
+ FAC9BF514EFEC1A8EACF9E34 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11782,9 +11884,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/optional\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/stream\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- FD3373A7D561CAA5B0B224A3 /* Swiftformat & Swiftlint */ = {
+ FB01C6E7B60A150362C4CDA3 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11800,9 +11902,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/acm\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/retry\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- FE8E2C95B91114AC018A4D13 /* Swiftformat & Swiftlint */ = {
+ FE01F89BB220FE756EEBEF4B /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11818,9 +11920,9 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/IceSSL/configuration\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
- FF56F517124993A84C687638 /* Swiftformat & Swiftlint */ = {
+ FF8F6582496EB094E44D0DE3 /* Swiftformat & Swiftlint */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
@@ -11836,2282 +11938,2281 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/servantLocator\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
+ shellScript = "if which swiftlint >/dev/null; then\n swiftlint --path \"$SRCROOT/test/Ice/slicing/exceptions\" --config \"$SRCROOT/.swiftlint.yml\"\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
- 0384D8ACBEFF79978B54CCCD /* Sources */ = {
+ 00A04F40C0335D91BD6839E3 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- F24AEDA3DD91576958EA87C7 /* AllTests.swift in Sources */,
- EB104E796CBF4B6F01B8149E /* Client.swift in Sources */,
- C59A083B86BD87A1DC8410B6 /* Server.swift in Sources */,
- DEEC1326D9956709B679D811 /* Test.ice in Sources */,
- 3552F0A11B06BB389FAB5F7F /* TestI.swift in Sources */,
+ 3345435F60306F03597722C8 /* Client.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 04218661B9AADD48FF6045B4 /* Sources */ = {
+ 015604B60ECD5F85DCB22B1F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- BDBEF6AF72C96C362AE69209 /* AllTests.swift in Sources */,
- 5DB674C70C26A3FFC5DF6A3C /* Client.swift in Sources */,
- FE727B348201922B01BEA96B /* Collocated.swift in Sources */,
- 4B8D45D8F3190F81217707D0 /* Server.swift in Sources */,
- E281A0EBF5E0308FB653D0BB /* Test.ice in Sources */,
- 2261F9429A6220CC156A2BC5 /* TestI.swift in Sources */,
+ 288692E1621801E079402ED3 /* AllTests.swift in Sources */,
+ 47537E6DF19E1BE814C04A10 /* Client.swift in Sources */,
+ A6C6C222D9DDC71F67F7DF03 /* Collocated.swift in Sources */,
+ E2791B7902D6EA5DE3003AF3 /* Server.swift in Sources */,
+ 32A3DAB6900794246A19AB09 /* Test.ice in Sources */,
+ 3D174B0BA20441CC5CAAB1B9 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 05DB80F8EB3F033DB3E7C4BE /* Sources */ = {
+ 09F2946E82F044612DFC07C3 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 9CEA20183F09714D60FF0D61 /* AllTests.swift in Sources */,
- BF1D7E5A2C1E73FBB9D35A4A /* Client.swift in Sources */,
- 6A6B9A5D502DD82721F92BCA /* Collocated.swift in Sources */,
- ACDBE393BF81993E3E5ADC21 /* Server.swift in Sources */,
- 24030A95E040584EC0A3286A /* Test.ice in Sources */,
- B7C86A146160996EB67A255C /* TestI.swift in Sources */,
+ 871A1697B33991DEA2D9196E /* ServerAMD.swift in Sources */,
+ E168FBBEE172363E7FBB600B /* ServerPrivateAMD.ice in Sources */,
+ ECCC14F76BF94C5CA62E0370 /* TestAMD.ice in Sources */,
+ FAAA2FAE46249FDEF10751A2 /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 06AAE584FFD9B2B9E079C683 /* Sources */ = {
+ 0B0171600B105FCFD505CC69 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 4199FAF6AC70DF976098BE69 /* AllTests.swift in Sources */,
- 2C196C6DAA4E2343DD0EC788 /* BatchOneways.swift in Sources */,
- 5490F4B15F02242559504589 /* BatchOnewaysAMI.swift in Sources */,
- 6EB492711748AA4C7AA2ACD8 /* Client.swift in Sources */,
- F3C8DD263D8C3B3553256E6D /* Collocated.swift in Sources */,
- D6DDF699BF800B677F45AD3F /* Oneways.swift in Sources */,
- D8AB6BB790D0E4F91BAFAD96 /* OnewaysAMI.swift in Sources */,
- 7EF134618AC224C907B79423 /* Server.swift in Sources */,
- 01BAD06C13EB6A3DA5A6A408 /* Test.ice in Sources */,
- 3A310975DC01B31D101D5BB2 /* TestI.swift in Sources */,
- 5B4BDB53CA30C85BA4204300 /* Twoways.swift in Sources */,
- 133D28E23376FB0DACACF472 /* TwowaysAMI.swift in Sources */,
+ 1536D476E9ECD80E8C9B2D45 /* AllTests.swift in Sources */,
+ A256A9BFBF23811FF0FD291C /* Client.swift in Sources */,
+ F0004FE3A5EA17C4B5EAEB02 /* Collocated.swift in Sources */,
+ B4D25A008D2AF64940D42A94 /* Server.swift in Sources */,
+ DB01754A5B7F7353B544EF88 /* Test.ice in Sources */,
+ E15B6294BFE74579F3C85012 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 0708E77DEA2B840BBBAFA66E /* Sources */ = {
+ 0C3DD1F53CE2BA8F65051731 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 64DFB4D35B093C8983B188D4 /* Client.swift in Sources */,
- 5BA2BD0709731C570C12DA4C /* Test.ice in Sources */,
+ 3ED585F41599B04BCC835ACB /* AllTests.swift in Sources */,
+ 5027C663A9B52FEE73B1CFEA /* Client.swift in Sources */,
+ 88254C19085F944414517755 /* Collocated.swift in Sources */,
+ 41C373C15F31AF7D1DC1F3B7 /* Server.swift in Sources */,
+ B525214FE8841CD14C0411E7 /* Test.ice in Sources */,
+ 31003D5B91262A26F7C68FDF /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 0A4DBBA188AA470466DD8C60 /* Sources */ = {
+ 0CF37023CE75E983D2329FDD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 44337066342F809F0BC3C2A6 /* ServerAMD.swift in Sources */,
- 352B1B3CBCA41A3BE4409470 /* TestAMD.ice in Sources */,
- 41BBC2801A99DAD5AFD8D445 /* TestAMDI.swift in Sources */,
+ 7C7F9E48C0125E085C033E68 /* AllTests.swift in Sources */,
+ 2F1FFADAC530E6B05E3A2BB5 /* Client.swift in Sources */,
+ CCC928DC3FDF926A023C9B9E /* Server.swift in Sources */,
+ 46EF63DCCC12A2C03EA858AB /* Test.ice in Sources */,
+ 00C6DF4D44F3F9B6B1D62233 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 0A88B525A24BF93743058631 /* Sources */ = {
+ 0D66523ABFA4F5701071EFA8 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 08A0810B507EB60AD7D372AB /* Client.swift in Sources */,
+ 6C3AC5238A088B7C7039E0F0 /* ServerAMD.swift in Sources */,
+ A2C7AF31D179F480AB581FE6 /* TestAMD.ice in Sources */,
+ 7624A5FECBD92573B0B30044 /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 0F1D34998E02F7FBEFF5B95C /* Sources */ = {
+ 0DF6F3D26764F3A95ECA2A5F /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 464FED65C06030DFBFAF3147 /* AllTests.swift in Sources */,
- 701C97AEFAA664D7FEB07E15 /* Client.swift in Sources */,
- 51DEA9C58535A7AAB97C439C /* Server.swift in Sources */,
- E2756A76494B8B710204FE4A /* Test.ice in Sources */,
- 93FAB59C5922A149C8EBE309 /* TestI.swift in Sources */,
+ EB6DED91C735AFC73DDA38C7 /* Client.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 14F49FBF33FCFD185DEBC988 /* Sources */ = {
+ 101967D9CD033F096516A4E1 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 25A9FCFF4A194607DD0D5207 /* AllTests.swift in Sources */,
- E9B98AAC8B8C3A1F2B700E16 /* Client.swift in Sources */,
- 190C1041694BCFC0B548324C /* Collocated.swift in Sources */,
- D83E58516B8FC749B04F4B2A /* Forward.ice in Sources */,
- 1FECCCCBFEF6F43E2438CC2E /* Server.swift in Sources */,
- E76E4A6C937F9B2D3DC8EFE0 /* Test.ice in Sources */,
- 6AD07565CFE7442086AFDA70 /* TestI.swift in Sources */,
+ 4D4879CBEA5AF9B9476CA5FE /* AllTests.swift in Sources */,
+ E1DD0CB233ECF3FCF7D18A85 /* Client.swift in Sources */,
+ 692F8F9491DD7AB1E86E2CAF /* Collocated.swift in Sources */,
+ 19D9DB3F4100A04CD7D26B33 /* Server.swift in Sources */,
+ A3240D8F07E7E1B5C89912D6 /* Test.ice in Sources */,
+ 97C7E763630E745DF166E54C /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 157E4A6659A4EBA04C701F59 /* Sources */ = {
+ 14C712F1304966008DC75618 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- DB9D0EB83379961D16CB33A6 /* Client.swift in Sources */,
- 2676125CD036B3E6917AF03C /* Test.ice in Sources */,
+ 49591A9054CA376990DBCAAC /* AllTests.swift in Sources */,
+ 24B58FA276A6EAD5304858A9 /* Client.swift in Sources */,
+ 69ACC2C9F295171C4F082ACC /* Server.swift in Sources */,
+ 96B5610DD813820C5F66A0A9 /* Test.ice in Sources */,
+ 947755EFEBEC7C231A3563EB /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 17C514704A80B33B94E9D348 /* Sources */ = {
+ 189C87F2403BD89537105F14 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- B1B399E274A8290C9C4B4866 /* Metrics.ice in Sources */,
- 1AE5F4BC3AC894BCD73BB500 /* PermissionsVerifier.ice in Sources */,
- 5504EF77A28EB756821258CC /* PermissionsVerifierF.ice in Sources */,
- 8ECD9503A3FF35020FC70748 /* Router.ice in Sources */,
- B7039AD108613D0A78555D1E /* RouterF.ice in Sources */,
- CE8C3C167F79FCC1DC023B19 /* Session.ice in Sources */,
- EEE3DE6E685B3F76684AFC61 /* SSLInfo.ice in Sources */,
+ F7C07F04C191E06E851D8A56 /* AllTests.swift in Sources */,
+ D2B66A1011FC3B7962F02322 /* Client.swift in Sources */,
+ 3FC709B8C67A9E080336AFB3 /* Server.swift in Sources */,
+ 956DF86A252C35B3FF152265 /* Test.ice in Sources */,
+ 96C11D6C9945CCD0CE4B8B87 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 1E094B9FDC12FCD7EEAA09D5 /* Sources */ = {
+ 1B488B219AAD34222F0EEB53 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 1E758C89D87EFDF83C55BB1E /* ServantLocatorI.swift in Sources */,
- 30F0505A07777386690AD45E /* ServerAMD.swift in Sources */,
- D900D7CBAF11BF59921E9108 /* TestAMD.ice in Sources */,
- 9404CE665BB6F8F718E5D25D /* TestAMDI.swift in Sources */,
+ AABDF3C995C0D06F9F0A7ABC /* AllTests.swift in Sources */,
+ 6069C77DFDBCA90CCF7D3D53 /* Client.swift in Sources */,
+ 1FA141025CAACD91F043C5DF /* Collocated.swift in Sources */,
+ C542CB0AF2902952B55CFEA0 /* Server.swift in Sources */,
+ 07EF382A544E7C79FD5334E4 /* Test.ice in Sources */,
+ A20D1EFDEE466A4590BC2636 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 1E1297CAD4D98C68ADF1932F /* Sources */ = {
+ 1BD15802172AFAC546F1B3A4 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 88B6A1F202506947B5326057 /* IceStorm.ice in Sources */,
- 1A2EBDB39C70E13BEC1DB74B /* Metrics.ice in Sources */,
+ 0F4F7553B84783144388729E /* AllTests.swift in Sources */,
+ CFB9E2DC6A83B02338EBAE70 /* Client.swift in Sources */,
+ 36EC4B1C55B158A1E7F8B900 /* Server.swift in Sources */,
+ F9D785E1575E2236A2C69E22 /* Test.ice in Sources */,
+ 56D2111FDCE1C85672958229 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 1F59CD3431FD7596963CF977 /* Sources */ = {
+ 1DB0BD88EC56F2333289662D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- A56E6386FCEB0F807CA1CE3D /* AllTests.swift in Sources */,
- 6E7AF7A72DDE58DF1F60FA74 /* Client.swift in Sources */,
- 3E83D9DC0FCBD9E249CE56BC /* Server.swift in Sources */,
- 80109DA2658F8EF1B4846ABE /* Test.ice in Sources */,
- CB1C5FD37C87E42F3462B668 /* TestI.swift in Sources */,
+ 716FED1E88AE328327849679 /* AllTests.swift in Sources */,
+ 431F99BB4AB66783560D584D /* Client.swift in Sources */,
+ CDACC0DC4791C75E355EA026 /* Server.swift in Sources */,
+ 266638FEC5717776C313447C /* Test.ice in Sources */,
+ 21FB04D218E2EF2C2B80C277 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 2068BDE55746D3B80CC103B9 /* Sources */ = {
+ 1FA3B7EB7F1182C0D262BF52 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- ED2D080D659BF57BCB04E51B /* ServerAMD.swift in Sources */,
- 491C803F2AB0D1A85A184F90 /* TestAMD.ice in Sources */,
- 95FCDCDA168DF72971E9C87F /* TestAMDI.swift in Sources */,
+ 744ED666955C21AFEEACDF05 /* AllTests.swift in Sources */,
+ 3FFBEFD2093492A08F0A0543 /* BatchOneways.swift in Sources */,
+ F7686A6945C4DB75C56EE87A /* BatchOnewaysAMI.swift in Sources */,
+ 84A6A3703564A713960A8776 /* Client.swift in Sources */,
+ 7361EA2651186F6A3B7B87C8 /* Collocated.swift in Sources */,
+ CD2C028D8B14D1B59FCD9435 /* Oneways.swift in Sources */,
+ 35269C0124956DF7DB133293 /* OnewaysAMI.swift in Sources */,
+ 45276C7732C1A7207247771E /* Server.swift in Sources */,
+ 93A38E1EA4D82D75B267B4C4 /* Test.ice in Sources */,
+ 0052A7FC2287A58DAD1A01FE /* TestI.swift in Sources */,
+ 1238B9CBE127888DC92F1C2F /* Twoways.swift in Sources */,
+ CAE38603F7D5BC3564C37BA3 /* TwowaysAMI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 21511F756572E7D76441A984 /* Sources */ = {
+ 234C0F3D3545D517E8190429 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 54B296E5079624C658152962 /* AllTests.swift in Sources */,
- 6B8B80932A29A17396B9226D /* Client.swift in Sources */,
- A3860938A1EC0A2909BF0FBA /* Server.swift in Sources */,
- 64B51A06351A1DFB4F685AFD /* Test.ice in Sources */,
- BD58C026EFF1D30C2EBFDC19 /* TestI.swift in Sources */,
+ 88E2BE244314F8318A2583AF /* AllTests.swift in Sources */,
+ 5E614BAE5A70CDDFEAFEC778 /* Client.swift in Sources */,
+ 26841546EFBA6EF3D7910A12 /* Collocated.swift in Sources */,
+ FB3A247D20066A4C65407D50 /* Server.swift in Sources */,
+ 558F83C66FEAB990783544B8 /* Test.ice in Sources */,
+ 5DE10AB1B4254DA9B861D8C4 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 248DE8429DDAF64146E04006 /* Sources */ = {
+ 242E1CFBA016DA6A671C2DF8 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 8A1E8C425FCCE1C06DE459CE /* Client.swift in Sources */,
+ 9699C3B9510A97258E2D22D3 /* Metrics.ice in Sources */,
+ 8F2BEA66E0BB783F825AF971 /* PermissionsVerifier.ice in Sources */,
+ 335D81F6388A62D7B6E25985 /* PermissionsVerifierF.ice in Sources */,
+ DE309BAB911890E954918C0C /* Router.ice in Sources */,
+ 178EA04202CB7C2A32956348 /* RouterF.ice in Sources */,
+ 377B80D1446E136A1E3B08D2 /* Session.ice in Sources */,
+ B1CDEB904337875FEC931490 /* SSLInfo.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 2A608B7BE3599FCD5C604B8A /* Sources */ = {
+ 24B11D5B6AB91D21E6FCB142 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 294A47FFFC2CC877890E7C66 /* AllTests.swift in Sources */,
- E3B94CDCF14F45686D1A88E8 /* Client.swift in Sources */,
- 3E7DC0621BD5A3FB8222342D /* Collocated.swift in Sources */,
- 8891C23B457EA8F398F2483C /* Server.swift in Sources */,
- 03252F832C08D31B9F39C617 /* Test.ice in Sources */,
- 85B91B9E13D8C3FF2C915BBD /* TestI.swift in Sources */,
+ 57FC2C26BF01957D84D46965 /* TestCommon.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 2A67AF10D4DD89A6E2951FFA /* Sources */ = {
+ 277ACFFBE657808BF2E9E581 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 5620AE775D4FFC27AF9DFF49 /* Client.swift in Sources */,
+ D1AF8B31327D6EEA27157D32 /* AllTests.swift in Sources */,
+ B6F771811B994C844DBBD8BF /* Client.swift in Sources */,
+ AF50613CCD84992E72D44B7B /* Server.swift in Sources */,
+ 4A850820CC0348627B2C50B3 /* Test.ice in Sources */,
+ FD621C56B6109A0976F8A0C3 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 2CEF702B467113D5E613019F /* Sources */ = {
+ 29337C4A14A8C1D9F6FD6275 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 5CD59DB663223F10EF6A3DB8 /* ServerAMD.swift in Sources */,
- E56E5C1451E81A770225CE1E /* ServerPrivateAMD.ice in Sources */,
- 30C1DE4F74A0485FB0673C25 /* TestAMD.ice in Sources */,
- 61FAB11914AEAB70EAC97FF9 /* TestAMDI.swift in Sources */,
+ B4220E66198CED0F52D234A1 /* AllTests.swift in Sources */,
+ 0D2D9B65474A774807D22210 /* Client.swift in Sources */,
+ 821C5EDD275B32D5F56C0586 /* Server.swift in Sources */,
+ 0674A33D84062190187BA284 /* Test.ice in Sources */,
+ F52B80E38B6ECF12FB9A7A0A /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 2D113CB3D7818E8EE73CD77C /* Sources */ = {
+ 2F34DC5F5A380F109C8E8A69 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 61937CC7DFD13FDAD3690128 /* AllTests.swift in Sources */,
- F1C5DE5F445B9891F13FF589 /* Client.swift in Sources */,
- BBADE7E5D44600BD7C1CED39 /* Server.swift in Sources */,
- 6A28EC29C0D34D518A673CD0 /* Test.ice in Sources */,
- CFD4BCBCA67A4FB047651C72 /* TestI.swift in Sources */,
+ FA2D34D2970117BE5702DEED /* ServerAMD.swift in Sources */,
+ 9C067B0A21E3FC32BA344B8A /* ServerPrivateAMD.ice in Sources */,
+ FEA4FC326BFD6B4E302C0F91 /* TestAMD.ice in Sources */,
+ 962724BD36E3EF0BDAC72D52 /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 30292CEA05759E9468CAA493 /* Sources */ = {
+ 2FF7B7F06BAE081BF9F726AA /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 2448967A7B41568E77982F19 /* AllTests.swift in Sources */,
- BB71980527A2562C0B39243B /* Client.swift in Sources */,
- F01933372365430A85588D79 /* Collocated.swift in Sources */,
- 992386A54D1B669DAD92BBEF /* Server.swift in Sources */,
- AF5F88F19BB6046EBF26DD46 /* Test.ice in Sources */,
- F9B92FCA1C6799BD379DD7C4 /* TestI.swift in Sources */,
+ 2413D47D1C36FD6C2430364A /* ServerAMD.swift in Sources */,
+ D6604DDC098F25D6C0014781 /* ServerPrivateAMD.ice in Sources */,
+ 5A2D8C0A283D957ACE917C19 /* TestAMD.ice in Sources */,
+ D76FF125BA07AC37BD5C04DA /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 367DE12070AA2F3E654969AA /* Sources */ = {
+ 32D39D63AD118713DC009FC2 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 07D657393862A2857C09E437 /* AllTests.swift in Sources */,
- 51678477E469860916FB8D30 /* Client.swift in Sources */,
- 23F9058146C9C7BDCB2FD231 /* Collocated.swift in Sources */,
- CFDB4C9FDDD2D5668472A6F9 /* Server.swift in Sources */,
- ADE19EE47631D8F8839EF0D7 /* Test.ice in Sources */,
- 3264E5C71D1E412A8D205CF3 /* TestI.swift in Sources */,
+ 038944314A3B32E80402E610 /* Client.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 3699166C07DBD0238F22B990 /* Sources */ = {
+ 35903663DF9A9B2E78733F56 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- D04EB6C796FFE00C888C89E4 /* AllTests.swift in Sources */,
- 833F837CB16FBA3BB6EF63C4 /* Client.swift in Sources */,
- A5128EBF0B37ACD4DCC1AA8E /* Collocated.swift in Sources */,
- F52D11892DB3CF4B64C3E43C /* Server.swift in Sources */,
- 6BD30ACCF617D59322DF133A /* Test.ice in Sources */,
- F8C2F1191C9042EF597F21CA /* TestI.swift in Sources */,
+ D68ADB36B75A1569760DF274 /* IceDiscovery.ice in Sources */,
+ 052A50C77EEC60277C8990FC /* LocatorI.cpp in Sources */,
+ D439596E2EA3140D45175940 /* LookupI.cpp in Sources */,
+ 7E40295E78DD86F404F344CB /* PluginI.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 39205F18684EA6C09BFFA94C /* Sources */ = {
+ 35E306744F432B8F1202AB86 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 464B7DAFDBFFDE8BFEB2613F /* IceStorm.ice in Sources */,
- 8E37830E978896E7C5883A71 /* Metrics.ice in Sources */,
+ A7D993CDB18E637697CCA05A /* AllTests.swift in Sources */,
+ 3CF8A1B7328D7734EEC2DA28 /* Client.swift in Sources */,
+ F1700D19D87AFAC731EBC6C6 /* ClientPrivate.ice in Sources */,
+ 5BD19A02C1ED40DED18ABDA0 /* Server.swift in Sources */,
+ EFD6621ABBC831A1134A256A /* ServerPrivate.ice in Sources */,
+ 695091E9DE6DBAFAB13E031C /* Test.ice in Sources */,
+ B82220263CF3AE7A9F055687 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 3C891FC3C6FC5CE44CC5DD9B /* Sources */ = {
+ 3AD4CBE68208C0F387CB4FD4 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- E2C5CEC64B9AD70BE795E247 /* AcceptorI.cpp in Sources */,
- 6D2765DDBE9279B9821D99CE /* CertificateI.cpp in Sources */,
- 9375198C4737222DE78053FB /* ConnectionInfo.ice in Sources */,
- 68C4863E0969994A67AA8C3C /* ConnectionInfoF.ice in Sources */,
- EE111B498581C23AD9EB1D10 /* ConnectorI.cpp in Sources */,
- F345120CAD8F63EFBF67C540 /* EndpointI.cpp in Sources */,
- C2C0B8031D2BEB0FFBF44380 /* EndpointInfo.ice in Sources */,
- 771E4D880F29EFEFB1DED85A /* Instance.cpp in Sources */,
- 83C2205A9D39664DAFC27958 /* PluginI.cpp in Sources */,
- 37C04D5523D068A5BAD629A1 /* RFC2253.cpp in Sources */,
- A5F986219A48C42901767E81 /* SecureTransportCertificateI.cpp in Sources */,
- 319023261FAE09FC123433D7 /* SecureTransportEngine.cpp in Sources */,
- 7217FCB6DB4D5172F79E9A0C /* SecureTransportPluginI.cpp in Sources */,
- BF7916D9064A82ACDBD15053 /* SecureTransportTransceiverI.cpp in Sources */,
- 3640CA9EB071500F762A9010 /* SecureTransportUtil.cpp in Sources */,
- D9C9CC7E628C1813320D5234 /* SSLEngine.cpp in Sources */,
- 3C3C822B514B69ED6447AACF /* TrustManager.cpp in Sources */,
- 7DC2C6A815F0FBE9A372D3CC /* Util.cpp in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 3D801E0157278B1FE6B02661 /* Sources */ = {
+ 69EE03C3712C495DFEB1884E /* BlobjectFacade.mm in Sources */,
+ 860CD7F063D8E620EA0F581C /* Communicator.mm in Sources */,
+ C5AD2BDEBAF7011B64A8B720 /* Connection.mm in Sources */,
+ 0D54D2DC8F9693822A6885C5 /* Convert.mm in Sources */,
+ 2801B3D982989FCAA10D7128 /* Endpoint.mm in Sources */,
+ D2A2D8B8BFE3EF5EB4ADBC8D /* Exception.mm in Sources */,
+ 645430F3265333C1C051F248 /* IceUtil.mm in Sources */,
+ A73CBC839C9F49CCB13295AF /* ImplicitContext.mm in Sources */,
+ C9F3A16D97F5CE147781546F /* LocalObject.mm in Sources */,
+ ADFF27DD6B62F071DD7518E7 /* Logger.mm in Sources */,
+ CFC92928D70038290BA7FE2D /* ObjectAdapter.mm in Sources */,
+ 21EA6F7C78BFE78BEF1CD298 /* ObjectPrx.mm in Sources */,
+ 8796DCEA739485334EED3D8C /* Process.mm in Sources */,
+ 7AD2E0A31868B4F1E8C000A2 /* Properties.mm in Sources */,
+ 740AEBBEBFB9AA5518773374 /* PropertiesAdmin.mm in Sources */,
+ 112E4C8B8C51EBC428A901F3 /* TraceUtil.mm in Sources */,
+ 409A035608EFA1778FDC29E0 /* UnsupportedAdminFacet.mm in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 3D6A3D2E519E553F66F5E216 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 8A21B10A9CF811CF6632B347 /* ServerAMD.swift in Sources */,
- 7C31BC52D57C1D75E063015F /* TestAMD.ice in Sources */,
- 5060292DACF9A97B1540ACD9 /* TestAMDI.swift in Sources */,
+ C68AD2FE2098270EB37C11F2 /* AllTests.swift in Sources */,
+ 64E13248BAFA0305DE33B0C8 /* Client.swift in Sources */,
+ A95887D52AAE8D5E967A64FB /* Test.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 454BCC7D5BAE16A064B121D3 /* Sources */ = {
+ 4129C7F7C957EE5CE7B81D74 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 839127A9FC2C0B237EC83DEB /* Client.swift in Sources */,
+ 0B2EA5D1D01B455578B7C540 /* AllTests.swift in Sources */,
+ ED9FF78D578988136B105105 /* Client.swift in Sources */,
+ 8797ACBD899C118D6CCEE58B /* Collocated.swift in Sources */,
+ 58EA94ECCBEDA222FE43A552 /* Server.swift in Sources */,
+ 3A576FE4F4B58494E6AA5A66 /* Test.ice in Sources */,
+ 6015A5861DD2B6C37DB371EC /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 45BCAFEB77C89E1F9A88EB1C /* Sources */ = {
+ 41893407B02893F3D02F6046 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 15A3E7806CCB0EE962CB1312 /* AllTests.swift in Sources */,
- 49B6291578D9B5FD0C7466AC /* Client.swift in Sources */,
- 48A6ED83540A88B3C11A7DD7 /* Server.swift in Sources */,
- A65119A8143A7478D1CD3BA4 /* Test.ice in Sources */,
- B9F9A75D70D56CE52564B64B /* TestI.swift in Sources */,
+ 89C4C5C3AEC88522570B3673 /* ServerAMD.swift in Sources */,
+ 11DF7FE60D840E7A4A7D0D13 /* TestAMD.ice in Sources */,
+ D258F70BBE3D1369F30E34B4 /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 463FF161B7EBEA788B89EDAB /* Sources */ = {
+ 41F90455559279AF5DC6E92D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 6CA67099B72C8E4F66ED0812 /* AllTests.swift in Sources */,
- F358FB9784385FAABAE9392E /* Client.swift in Sources */,
- 05E476A174DBBF39EB61CAAB /* Collocated.swift in Sources */,
- 0E9D11EA433DA6A4EDF095D3 /* Server.swift in Sources */,
- A3DCA54B5E5C455A52E937D1 /* Test.ice in Sources */,
- 1B523DEB7DB56BD61876B491 /* TestI.swift in Sources */,
+ E0D6FEADAD3E3A1CA494E6EA /* Admin.ice in Sources */,
+ 330B7D05DFD17950516721C9 /* Descriptor.ice in Sources */,
+ 886A7A60C3D875BF2A90CC12 /* Exception.ice in Sources */,
+ 38D8147F3C3DD12317A6BD20 /* FileParser.ice in Sources */,
+ C1B6BEFDB34E330A29B6F5E1 /* PluginFacade.ice in Sources */,
+ FB1D90E937E1605046A05337 /* Registry.ice in Sources */,
+ 816EEF5F837EFAF6F22860E4 /* Session.ice in Sources */,
+ 2ACBB35BCC98E7848B0EBB36 /* UserAccountMapper.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 46BAAAAADBFB11606460F838 /* Sources */ = {
+ 431FDD30DC664FC2BD5EB211 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 2DE4008DC47DE57A8E972FF9 /* AllTests.swift in Sources */,
- 4DBC9457F4B55846C431F86D /* Client.swift in Sources */,
- 4E6861EE4CA93F8E9B05955F /* Server.swift in Sources */,
- 04ADDFB95B1FB44902A997D5 /* Test.ice in Sources */,
- 4B260CD736742306F7B3615A /* TestI.swift in Sources */,
+ BDDDE2A0376CD5BC8C915F83 /* AllTests.swift in Sources */,
+ 417E86879EAAF434C7947CB1 /* Client.swift in Sources */,
+ AEC02F54A1D4B7C370F97DE6 /* Collocated.swift in Sources */,
+ 545E576E3FDDD49E42810646 /* Server.swift in Sources */,
+ D64EDFD37FCBCB6D291E5799 /* Test.ice in Sources */,
+ 64EBCC63098C491F3AAF533C /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 47321BD1C778996CD912CE8B /* Sources */ = {
+ 44BA23A49B21F9AB866EE528 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 6CCBD9C24595F6D50FAC3847 /* AllTests.swift in Sources */,
- EE9BD617CB5D9759EF941930 /* Client.swift in Sources */,
- 38544EAD2EAB2907767CFB5F /* Server.swift in Sources */,
- 083D60D31B1B10C2BD6DAC9D /* Test.ice in Sources */,
- F6AE21914B8AF3E19CA5241C /* TestI.swift in Sources */,
+ D52BEB01AF6DA7056728F723 /* AppDelegate.swift in Sources */,
+ 62FDC1E741BAD8A71AAD158E /* Assets.xcassets in Sources */,
+ C250EE2010140AC517ABDC24 /* Controller.ice in Sources */,
+ 522BDF4004F3E93A911DF449 /* ControllerI.swift in Sources */,
+ D5777A4E849D2A65D345CA89 /* LaunchScreen.storyboard in Sources */,
+ 937E957B1C09AC92F9253F7C /* Main.storyboard in Sources */,
+ 1566D7C355B4DC05E4D7018A /* ViewController.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4A58D1FAD011427FAFDF10C4 /* Sources */ = {
+ 57D51CE91C2703400B2BA7FA /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 51F31953E153B52832B0CC20 /* AllTests.swift in Sources */,
- 57AA67273A59CFBDC85F6F05 /* Client.swift in Sources */,
- CAAE59AE0D57B6CC95F339FE /* ClientPrivate.ice in Sources */,
- 3041D3BDF8F3D7CC7F4E5F71 /* Server.swift in Sources */,
- FEE9818B2CD1DF0438959CA5 /* ServerPrivate.ice in Sources */,
- 31D1EDEF2E73AB1751150B25 /* Test.ice in Sources */,
- EA6904B98FEBD064A5FEE9AF /* TestI.swift in Sources */,
+ 33A8FC706DF667F54D259063 /* AllTests.swift in Sources */,
+ 1E68090DB9AF60B5177C4A1D /* Client.swift in Sources */,
+ 03EFBF5726F8D798C542322C /* Server.swift in Sources */,
+ DA2DCFF321CA11381EDBA0D3 /* Test.ice in Sources */,
+ A5B898C7B75604EE72FD4288 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 4E22EA2346E2ED9417193A23 /* Sources */ = {
+ 58E3ED111A937B98657B865E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- C17625269BE98BC38342767E /* AllTests.swift in Sources */,
- EC56D1BF32ACE12E07BC3734 /* Client.swift in Sources */,
- EADB8FA4111FA0BD76593633 /* Collocated.swift in Sources */,
- 5B7DBF38E1C7452A3221709E /* Forward.ice in Sources */,
- 566889F6F4FF7530D81B43EA /* Server.swift in Sources */,
- C3A3B693D82B7222F1C1D58F /* Test.ice in Sources */,
- 444A486D0864D60AEBBC7C6F /* TestI.swift in Sources */,
+ 1F8B632C574AC5DA1A7956D1 /* AllTests.swift in Sources */,
+ 8FFE205C24EF896369109535 /* Client.swift in Sources */,
+ 9137F156ACDA225028A272F2 /* Test.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 507EF2736D0BD4BA4200D7E9 /* Sources */ = {
+ 5FE7830A9CCAEE182C734E7D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 7605A56C2B9EE9C4C7435C4E /* Admin.ice in Sources */,
- 29C6F7FC36959219237EC1DB /* Descriptor.ice in Sources */,
- 343191AFCB69EA5B0BC21AB7 /* Exception.ice in Sources */,
- D48BF999B376F6706DAA6FAD /* FileParser.ice in Sources */,
- 9CF0C4AFDE4FD59345982317 /* PluginFacade.ice in Sources */,
- 3C06041CD8A8828758610431 /* Registry.ice in Sources */,
- 3A556B53ADFE1965A1710665 /* Session.ice in Sources */,
- 8E82B1AD6E3F892B120E00E0 /* UserAccountMapper.ice in Sources */,
+ 0FD5E23217140A9E62D00AA1 /* ServerAMD.swift in Sources */,
+ DE20CF9645CDAA777C0B2643 /* TestAMD.ice in Sources */,
+ FAC378865FCD6B75F6642949 /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 522DC0DAFBC85A696DEB9D4D /* Sources */ = {
+ 6042A77A974A73C2B5C273E6 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 60A463B15F3EFA6495CA7343 /* AllTests.swift in Sources */,
- B64B7A45E00D3915C944335A /* Client.swift in Sources */,
- 3BE9BDBF2C0B6C39B5360E4E /* Server.swift in Sources */,
- 73657CAC5EECC0DB18485783 /* Test.ice in Sources */,
- 330045FA2FB0D9A15EF46058 /* TestI.swift in Sources */,
+ C98DE50B6A9B683EC9219629 /* AllTests.swift in Sources */,
+ 6FA46AEF50692259F8D76E3D /* Client.swift in Sources */,
+ FC2854A5C306109E087C1A7C /* ClientPrivate.ice in Sources */,
+ 401E7AE45222CA5DE50DF88F /* Server.swift in Sources */,
+ B8099B28C242BCE799505D94 /* ServerPrivate.ice in Sources */,
+ 31103CD3D5F28AA1D7B3D8EE /* Test.ice in Sources */,
+ 5FAB85BBCAD337E3A4B0DA8E /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 56218FEA142DA538DCB5908B /* Sources */ = {
+ 617588F840E3EA2FA8DC21AE /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 9AC3CA301DF5CA4CFDDC2C66 /* Clash.ice in Sources */,
- 2A00EAFE6C32EA07ACEC1B3E /* Client.swift in Sources */,
- 44F3C5727CE7AD864AE22D24 /* Key.ice in Sources */,
+ A7AB53C49B71A4C290CBBD7E /* AllTests.swift in Sources */,
+ EACACBFDECAC5BE9A84726EC /* Client.swift in Sources */,
+ D7840B4D05E7C6FB01CE33E8 /* Server.swift in Sources */,
+ FFD5D15AB8A79B1CAA95AEAE /* Test.ice in Sources */,
+ 247A0FE8508471D6F280D8F3 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 570476500B5D3682FB446421 /* Sources */ = {
+ 636BAD0C78A616E0F22F7BE6 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 400FC3C61B885629541C86E2 /* AllTests.swift in Sources */,
- E574DAAC5D918F3237223F03 /* BatchOneways.swift in Sources */,
- 731A3B2EB4D0E0DBFC5402B0 /* BatchOnewaysAMI.swift in Sources */,
- 6D36B43597323169D423D4F9 /* Client.swift in Sources */,
- 42D13604C73B01FA4EAAB3C9 /* Collocated.swift in Sources */,
- 3EDC5423053CA60077044EB0 /* Oneways.swift in Sources */,
- 65A30E14B4D35C17346B2BC6 /* OnewaysAMI.swift in Sources */,
- 9D8688F9ED59D8928FBDA963 /* Server.swift in Sources */,
- 583EA09FAC3310C450E5CFD2 /* Test.ice in Sources */,
- 24F82D37DDEAE90F037D4DF4 /* TestI.swift in Sources */,
- BFA35421F243D7A3333D83C6 /* Twoways.swift in Sources */,
- 385C4D9B3B316FF599742382 /* TwowaysAMI.swift in Sources */,
+ B85A32FCB36A58E2A25E93AE /* AllTests.swift in Sources */,
+ F5A2258551CE58B00C820DC2 /* Client.swift in Sources */,
+ 8A982D4907ADA1B918838037 /* Test.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 5A97DB0BC418D8CF7B2FC003 /* Sources */ = {
+ 6EDAFB422FF1DEF6537C39A4 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- D0550B69D074F57B71548646 /* AllTests.swift in Sources */,
- 5C09B99CF1E0ADEDF2E4A4D5 /* Client.swift in Sources */,
- 24D4C119BCDDFC794FC14D91 /* Test.ice in Sources */,
+ E8707817F0471353236FD578 /* Admin.ice in Sources */,
+ 77E837AB50496D0B227DAC6B /* Descriptor.ice in Sources */,
+ 7713E360EFA9099B22576090 /* Exception.ice in Sources */,
+ E814333D19EDE266C1B93A9A /* FileParser.ice in Sources */,
+ 7828D5D16E267FD469A78735 /* PluginFacade.ice in Sources */,
+ 6E75309F493643C261A22581 /* Registry.ice in Sources */,
+ 1B06228D7CF65CC839420B50 /* Session.ice in Sources */,
+ 8ABD817A05237BABF7387CD4 /* UserAccountMapper.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 5B8547598FB76B407215C614 /* Sources */ = {
+ 6FF8B5B4850F7E71A0623C1E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 7538E7A83F9AEC954E427888 /* Admin.ice in Sources */,
- 19664746B652BF3D7D288C95 /* Descriptor.ice in Sources */,
- 187689D145A1D35540D046E9 /* Exception.ice in Sources */,
- 2A6C25EA8977F8EF82E7ABE0 /* FileParser.ice in Sources */,
- 6525CD5C9CB1C4E5ACFF83CD /* PluginFacade.ice in Sources */,
- 08561EEC1D308D4FE5EA548F /* Registry.ice in Sources */,
- C88B507FB37DE8174B5A3544 /* Session.ice in Sources */,
- 803D2402606DBE2A16195FF9 /* UserAccountMapper.ice in Sources */,
+ 0987F2CAE70ADBE205A9FABF /* Client.swift in Sources */,
+ A91EB33AF6613B67381522BA /* Test.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 5CD8D33EF0E5ECFCEF5FD36C /* Sources */ = {
+ 7B2ACB69AF713D31ADEEEA64 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 610B5709C463ABBDA283DAA9 /* Acceptor.cpp in Sources */,
- FCB0F8CDB3AFDCE52D74DF3C /* ACM.cpp in Sources */,
- AB5C0561EC268909D996F551 /* ArgVector.cpp in Sources */,
- CB6DBE394F54E049688377C1 /* Base64.cpp in Sources */,
- E8E6308EA8009F8A42A479F5 /* BatchRequestQueue.cpp in Sources */,
- A6BE1645FB7B0B6D7BD7E61E /* Buffer.cpp in Sources */,
- B38D34E19D19D9EF90BC307C /* BuiltinSequences.ice in Sources */,
- 548E1A225649E2B88CB10544 /* CollocatedRequestHandler.cpp in Sources */,
- 69EBAAFA8200B607D58C72DE /* Communicator.ice in Sources */,
- F3B0303DDD3F39C6E04CC3BF /* CommunicatorF.ice in Sources */,
- BAEBA65C9789791C41F4069F /* CommunicatorI.cpp in Sources */,
- E5035F7B1AD02859B5A035D9 /* Cond.cpp in Sources */,
- FE920D2802DB57EA1503673B /* Connection.ice in Sources */,
- AFD8806EBE95EBEBBB81AAED /* ConnectionF.ice in Sources */,
- 69B3930A3A66ECEBA052C732 /* ConnectionFactory.cpp in Sources */,
- 35857E533F462D4B80DE18A1 /* ConnectionI.cpp in Sources */,
- 3E70A6B2C1F4134EA4A0E2F6 /* ConnectionRequestHandler.cpp in Sources */,
- 6A0C0ED660D99E9B73205C45 /* Connector.cpp in Sources */,
- DF58269C924E8852BC65DCEA /* ConnectRequestHandler.cpp in Sources */,
- 32AEFDA3EDDC8DF993BDC2F5 /* ConsoleUtil.cpp in Sources */,
- 18478B3EF57D08C926D9FC95 /* CountDownLatch.cpp in Sources */,
- 0D12FEB5796F0C9678EE2C2B /* CtrlCHandler.cpp in Sources */,
- 67A1B7743580FD240A811A30 /* Current.ice in Sources */,
- 5BAC36B88DBC9C194C209D00 /* DefaultsAndOverrides.cpp in Sources */,
- C8E287D86987596C0DB86F61 /* DispatchInterceptor.cpp in Sources */,
- 814CFD2F34FBFDF2B2E64265 /* DynamicLibrary.cpp in Sources */,
- 43F2353CD2F33888D16C141B /* Endpoint.ice in Sources */,
- 254F3783D370046B3B1834E7 /* EndpointF.ice in Sources */,
- FA3B1C13A8A7CD9C4E60AA1B /* EndpointFactory.cpp in Sources */,
- F7977DAC115756B0259CF87D /* EndpointFactoryManager.cpp in Sources */,
- 311A422F9634CCEB4B5F2A75 /* EndpointI.cpp in Sources */,
- EC673618F12BDA8B19CC42EE /* EndpointTypes.ice in Sources */,
- 97EEAC73B0EAD3A2641C53FB /* EventHandler.cpp in Sources */,
- 724D828385D720284796F517 /* Exception.cpp in Sources */,
- 4172434198461E24704AEDDC /* FacetMap.ice in Sources */,
- FF8FC7D0063B8E687A2A600D /* FactoryTable.cpp in Sources */,
- 0120489ADBD0D3D098FE3777 /* FactoryTableInit.cpp in Sources */,
- F6DA474F98B0885BC5A104C7 /* FileUtil.cpp in Sources */,
- 5F2C485274B7684059BBE7A2 /* HttpParser.cpp in Sources */,
- 9A679A6ECCCB225C623D3069 /* IconvStringConverter.cpp in Sources */,
- FED1CE031E8322FA9A514A73 /* Identity.ice in Sources */,
- A9C5591D6C67D20EBED93CD5 /* ImplicitContext.ice in Sources */,
- 62C1248AD58EE64FE19B614D /* ImplicitContextF.ice in Sources */,
- 60D38157DB2B0341A60C6351 /* ImplicitContextI.cpp in Sources */,
- CD229799F5F56DE31166670D /* Incoming.cpp in Sources */,
- 386BB638F6D9B4DB84046B78 /* IncomingAsync.cpp in Sources */,
- 1E65C28158248C31B9D831A4 /* Initialize.cpp in Sources */,
- BFC5C3013C1A77B21EE48903 /* InputStream.cpp in Sources */,
- EB6B6FEBDFAB53146AEF636A /* InputUtil.cpp in Sources */,
- A281CC63F38D6F0F439ECA13 /* Instance.cpp in Sources */,
- 62E91FF77F62D8C8005C689D /* Instrumentation.ice in Sources */,
- 7F0F7528AC0CE30B40C48C14 /* InstrumentationF.ice in Sources */,
- 20390482D3195AD5032F4187 /* InstrumentationI.cpp in Sources */,
- 1D7F1B6842BF4C85E5BAD3A2 /* IPEndpointI.cpp in Sources */,
- 4C08105A7C0209CF918480E4 /* LocalException.ice in Sources */,
- 41DCC3C89594B666C0CF9522 /* LocalObject.cpp in Sources */,
- 998238BE7058B7C81D9FCA6C /* Locator.ice in Sources */,
- 268583FA7028BA48421BE0B4 /* LocatorF.ice in Sources */,
- 0F6CB443B170158CB0C2D1DB /* LocatorInfo.cpp in Sources */,
- D4D32F44683093FD16C22602 /* Logger.ice in Sources */,
- B0B96BC28B64E0E3827DF726 /* LoggerAdminI.cpp in Sources */,
- F7639E14759A4DEB1C9161D0 /* LoggerF.ice in Sources */,
- 92EF3B05EEA2585534B46599 /* LoggerI.cpp in Sources */,
- E090422FF34DCEFC23481950 /* LoggerUtil.cpp in Sources */,
- C6057D4F88785E98D527341E /* Metrics.ice in Sources */,
- DECA16CE472CEDA95CF20A3D /* MetricsAdminI.cpp in Sources */,
- 0AAADC97B9827FFBD47A3929 /* MetricsObserverI.cpp in Sources */,
- C138D56A19C2823942AAEE02 /* MutexProtocol.cpp in Sources */,
- 2F6C7E2092D8AB978BDF876E /* Network.cpp in Sources */,
- B7F71B128D1D84054816B354 /* NetworkProxy.cpp in Sources */,
- 436EF214B572B49B6820BC70 /* Notifications.mm in Sources */,
- 89E476CF96658C3F1153534B /* Object.cpp in Sources */,
- 4F099F3905DAD3C44048E26C /* ObjectAdapter.ice in Sources */,
- 719B0130CE73E10113A5458D /* ObjectAdapterF.ice in Sources */,
- EB49B495A6324E7472278AF0 /* ObjectAdapterFactory.cpp in Sources */,
- EEEDDB93A16CE19BCCB5EDD7 /* ObjectAdapterI.cpp in Sources */,
- 1A8B0920F2B72F074683E475 /* ObjectFactory.ice in Sources */,
- 5E9BB88F4FA07F1EEAE19AB9 /* ObserverHelper.cpp in Sources */,
- E4334EF66D7DC1D202D78B60 /* OpaqueEndpointI.cpp in Sources */,
- EAFDF097FEA59389761BB6E2 /* Options.cpp in Sources */,
- B6BB45E2A9CDE04D797985A1 /* OSLogLoggerI.cpp in Sources */,
- 8E66255116CBABB5AD0D23FF /* OutgoingAsync.cpp in Sources */,
- 79FD41D8A0E6738D16DCB6C5 /* OutputStream.cpp in Sources */,
- D75A88575CE951BB8C403448 /* OutputUtil.cpp in Sources */,
- 85EB7F2BCE3411BBB33D1EF7 /* Plugin.ice in Sources */,
- B65893D9D646379987D05DF9 /* PluginF.ice in Sources */,
- 33B40D6F673718E2F9F02EF4 /* PluginManagerI.cpp in Sources */,
- E6C338F3B697A92A7DFDF949 /* Process.ice in Sources */,
- 3AA1D71DD1215892EDB98FD5 /* ProcessF.ice in Sources */,
- 3F379B7AD708E3FC656B83B3 /* Properties.ice in Sources */,
- 302DDC00C790754C696869EA /* PropertiesAdmin.ice in Sources */,
- 9070D019E4D72FB4353DEE02 /* PropertiesAdminI.cpp in Sources */,
- 8965C9F45883C9F5DCD12B90 /* PropertiesF.ice in Sources */,
- DEEC2E47BA1EC8B32AAE07DD /* PropertiesI.cpp in Sources */,
- 4019CF488ED09148F537755C /* PropertyNames.cpp in Sources */,
- 641B8CFD07BEF0E93700B5FB /* Protocol.cpp in Sources */,
- 71DD9307AF20B5B211870E7A /* ProtocolInstance.cpp in Sources */,
- 2B17A70937361DA096A55624 /* ProtocolPluginFacade.cpp in Sources */,
- 712C2E5128E1CB683B941B16 /* Proxy.cpp in Sources */,
- C6DD6ABAED75BE35D2DEE871 /* ProxyFactory.cpp in Sources */,
- 7204DD0A01D871C36C424B01 /* Random.cpp in Sources */,
- B5B94B5082A0BBE9BF1A6597 /* RecMutex.cpp in Sources */,
- 77C26EBAEF42E3E52EB8F0FE /* Reference.cpp in Sources */,
- 76B756DA47BC1896288FDE46 /* ReferenceFactory.cpp in Sources */,
- AD9DDEFA6621AD566091FF09 /* RegisterPluginsInit.cpp in Sources */,
- BC7C4CD2FE5865909D0F216D /* RemoteLogger.ice in Sources */,
- DE53D2804164CCF2E8F7CFCF /* RequestHandler.cpp in Sources */,
- 1047F99BA469998DE5FAEC39 /* RequestHandlerFactory.cpp in Sources */,
- 3206E969CB3AD29FA1919C44 /* RetryQueue.cpp in Sources */,
- 77CABCCD16D76F4526A0AE0D /* Router.ice in Sources */,
- E23F6C6134FBCE1D1AA3B6E7 /* RouterF.ice in Sources */,
- 040CEF83AB1C5FB4AC66C191 /* RouterInfo.cpp in Sources */,
- AFA64AF1FD4EDA79BC52593D /* Selector.cpp in Sources */,
- 88BBADE5CADF2936A5C41194 /* ServantLocator.ice in Sources */,
- 88E0AD692B60C950CBB0C870 /* ServantLocatorF.ice in Sources */,
- 6FE9282F3F4933BA02371F0F /* ServantManager.cpp in Sources */,
- 2E8137785C86603FC13D5783 /* Service.cpp in Sources */,
- FC29B87F2CABE0D503308D40 /* SHA1.cpp in Sources */,
- D9E6D6D7283E5748BF19336E /* Shared.cpp in Sources */,
- C7E69973A15EB7B8A458EB2B /* SliceChecksumDict.ice in Sources */,
- 473062EA04E853444853045F /* SliceChecksums.cpp in Sources */,
- 62081BCD9F553D06A795A91C /* SlicedData.cpp in Sources */,
- D105CD7E8D18B6CEC463CB5B /* StreamAcceptor.cpp in Sources */,
- 89ABA2C8B9671AD91EADA8DF /* StreamConnector.cpp in Sources */,
- BFB130C5057A1747B229DE1F /* StreamEndpointI.cpp in Sources */,
- 3C7017593E03B38FE5686017 /* StreamSocket.cpp in Sources */,
- B98D2AF8E4CAF7135368A070 /* StreamTransceiver.cpp in Sources */,
- 210854216185F85D38D52A7E /* StringConverter.cpp in Sources */,
- D620FA8AAD089DF1FA8D339E /* StringConverterPlugin.cpp in Sources */,
- 7C7D091B19607600C225FBCB /* StringUtil.cpp in Sources */,
- 80F2C0D12B1F57310C1CC9BB /* SysLoggerI.cpp in Sources */,
- B1323C2B7E7607F18F93003A /* SystemdJournalI.cpp in Sources */,
- 05602C9E1C454250AB0D64BB /* Thread.cpp in Sources */,
- E575B5AF43287BB3D5111987 /* ThreadException.cpp in Sources */,
- CBD8766F0F7C228D36A0AA9D /* ThreadPool.cpp in Sources */,
- CCDF31E0CD49D0CEE99BC380 /* Time.cpp in Sources */,
- 44AFFBCDA7179E2BCE66B44D /* Timer.cpp in Sources */,
- 253BF05C1621EC8067ACCE7F /* TraceLevels.cpp in Sources */,
- BD70B3BB4BB302B91D9EEC36 /* TraceUtil.cpp in Sources */,
- 8453296DB4F064A240A848D2 /* Transceiver.cpp in Sources */,
- 75FB639744152270317EFEE5 /* UdpConnector.cpp in Sources */,
- 02E4EB061167574086A1422F /* UdpEndpointI.cpp in Sources */,
- 4A395A7D68C4AD5A4F890D38 /* UdpTransceiver.cpp in Sources */,
- 87D26FE9BA5C33473E55C3BF /* UtilException.cpp in Sources */,
- 38DB5A670EB0DC59952E915C /* UUID.cpp in Sources */,
- 1BE364A90F89383B8C811DF6 /* Value.cpp in Sources */,
- 4BADE1D2D3E9FC7CC5AB4FC3 /* ValueFactory.ice in Sources */,
- F4741D906536BB9A37BBB72E /* ValueFactoryManagerI.cpp in Sources */,
- 4DC0ABBD0F50CA3ECD176079 /* Version.ice in Sources */,
- BCBA4389A7779B5C362F5DBE /* WSAcceptor.cpp in Sources */,
- 5A69746C41905BB31FA6E3E2 /* WSConnector.cpp in Sources */,
- 038DF8CD7484D7B5CD06C570 /* WSEndpoint.cpp in Sources */,
- 5DC5DEE07D6DAD131A95BF4E /* WSTransceiver.cpp in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 5FEF8651F9FDA48FAD83B505 /* Sources */ = {
+ 37A36C8CBF30C71954A1160B /* AllTests.swift in Sources */,
+ FEF90A6CA3A64BD8BA563FE5 /* Client.swift in Sources */,
+ BE84EC36503B301116BD48ED /* Collocated.swift in Sources */,
+ 3CC588A1FDE5049A406DAE75 /* Server.swift in Sources */,
+ 7995D0B8E1BDB63E088D9977 /* Test.ice in Sources */,
+ CC19A411C6E77A9E48741509 /* TestI.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 7B860E5C1B40D1CCDD58113E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 9FE8D7062C96D3CFD60B0BB9 /* ServerAMD.swift in Sources */,
- C09040F88FB6AE1190F11DB7 /* TestAMD.ice in Sources */,
- 2DFDB3F74A5149DD421A37CD /* TestAMDI.swift in Sources */,
+ C67C533A10B35EAE9E94D209 /* AllTests.swift in Sources */,
+ 3A4527C8B7C6375A260EF1A9 /* Client.swift in Sources */,
+ 0D0859BF2012DF4FDA8DA37E /* Server.swift in Sources */,
+ AA737442EF0FBFEDAA241E2E /* Test.ice in Sources */,
+ F7B5205E8D00D584FDC25ADC /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 68739D1AF671C9485AAD0767 /* Sources */ = {
+ 7CC9578E94E7A84C9AB97A56 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 8432169407A6B95348CDC6DC /* ServerAMD.swift in Sources */,
- 37BA725D677A982D2215C079 /* ServerPrivateAMD.ice in Sources */,
- 4DB9A5E05790C87387EA8302 /* TestAMD.ice in Sources */,
- B1D22AD4A6EC261B5135AF98 /* TestAMDI.swift in Sources */,
+ 819B5901DB4E3CFDD2B9C343 /* AllTests.swift in Sources */,
+ 4BC4D1199B0C8388D58BDDE6 /* Client.swift in Sources */,
+ C3FDAF8DEA9C8FB3BC9EADE3 /* Server.swift in Sources */,
+ DAFA53DDC4630F0163B67DBC /* Test.ice in Sources */,
+ D5C5CAFEA2C619FF9D059FD7 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 69A584B596E0CAEFD2F3C45B /* Sources */ = {
+ 7CDA69CA3A3BE95C0018632E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 2DB67A3CDF5B98DCC2304E39 /* TestCommon.swift in Sources */,
+ 69661CC41236E6F96C7F9015 /* Client.swift in Sources */,
+ 9FE7917D74AD5C3C56AACF77 /* Test.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 6B31460B69910AC09D27FD50 /* Sources */ = {
+ 85FF82E93983D8D230302187 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 7CE893D567DA03442A189DB3 /* IceDiscovery.ice in Sources */,
- C9A2212328C491117DA4F85A /* LocatorI.cpp in Sources */,
- 1F6A7DF488F0748FDA0501CA /* LookupI.cpp in Sources */,
- DDAEEDA0D018C4F5FAFA7429 /* PluginI.cpp in Sources */,
+ 6E22C74FCC179F212EBB7BAD /* AllTests.swift in Sources */,
+ CF2481E2622EAB5EBA039FB6 /* Client.swift in Sources */,
+ D366CF637EEEE593851883B1 /* Server.swift in Sources */,
+ 69B651B94D3C619E3C4087FF /* Test.ice in Sources */,
+ BF249AE798BC40A1662A53DF /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 6BDC17A125A2AD6DB2FAB020 /* Sources */ = {
+ 860DAB4F0AC633E5E3071139 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- C98CD6AE4FAC4E07994D9CBB /* AllTests.swift in Sources */,
- 32134B081BE389660FE1F80F /* Client.swift in Sources */,
- D38191DE0663F833BDE727D5 /* ClientPrivate.ice in Sources */,
- 6AB5E2E35E1CA7DA58AA6B99 /* Server.swift in Sources */,
- 9216B08CF5D847C6ADD1EAB3 /* ServerPrivate.ice in Sources */,
- 83E16D85F807753AD8AD1DCF /* Test.ice in Sources */,
- 06E2339341AB1E54B393689C /* TestI.swift in Sources */,
+ DE76D131CD8FCF9DA0FDB483 /* AllTests.swift in Sources */,
+ 57E432DF8868851ED5B78B7C /* Client.swift in Sources */,
+ 58E60C9209FFC29425D08676 /* Server.swift in Sources */,
+ 3C5CDF8FC3DAC9566B48704D /* Test.ice in Sources */,
+ 9528E869895EBA8B055E257B /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 70C0C75954D3CFCEAFFF873A /* Sources */ = {
+ 8DF9AB1E37029E6A058288F5 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 731E9918A631E48DA9E24944 /* ServantLocatorI.swift in Sources */,
- 09C4A08E6CC1ED15FB853576 /* ServerAMD.swift in Sources */,
- FA208EA3682180585743E695 /* TestAMD.ice in Sources */,
- 5BB806FDEFE424A7CA657EC6 /* TestAMDI.swift in Sources */,
+ 6E91D8824FD9F9DDFCF76776 /* AllTests.swift in Sources */,
+ AF7E68476F5E7B0EC085B4CD /* Client.swift in Sources */,
+ 61FB947D7CA91CBC0E8D6F61 /* Server.swift in Sources */,
+ 6335A16223D5CD53587A572E /* Test.ice in Sources */,
+ B22DF1F67ADF28F4F2822DF1 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 770C994D5714FF675D511FEA /* Sources */ = {
+ 915E52CFBA4E926827F89842 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- F6062A0373CC4ACD9B178268 /* AllTests.swift in Sources */,
- 95691AFE7B103A0599B3E838 /* Client.swift in Sources */,
- 28F66F19F68B27C96EF6C83F /* Collocated.swift in Sources */,
- 510A580CA503E9A3DF0EA3D8 /* Server.swift in Sources */,
- 322D328FC5A97D4C3A505D73 /* Test.ice in Sources */,
- A81BB1ACE817320018701973 /* TestI.swift in Sources */,
+ 3E75595E04D60F4BC46F06D6 /* AllTests.swift in Sources */,
+ B8A0F863F1E3B503A2958589 /* Client.swift in Sources */,
+ 860AE631154169A0CCD0B587 /* Server.swift in Sources */,
+ B3FE0B72320C055E7B119FFF /* Test.ice in Sources */,
+ EC89C978C0736D515850D5AD /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 7AD23EE8AD93C284687DA83F /* Sources */ = {
+ 91ED151095F1FE81C8F2C3BE /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 600DD9B8C6C209C579FB35D7 /* AdminFacetFactory.swift in Sources */,
- 38CCBB713451FD10CBD1C0FE /* Blobject.swift in Sources */,
- 00C5A0AF8A667C5772085C6F /* BlobjectAsync.swift in Sources */,
- E6FC8BBD3922244591A25F9E /* BuiltinSequences.ice in Sources */,
- D116AB40E2D17FEB3E82ED3B /* ClassResolver.swift in Sources */,
- 7FEE79916B57CA87818C161F /* Communicator.ice in Sources */,
- 0B512C4A3FC6B36B1B39F4F1 /* CommunicatorF.ice in Sources */,
- 03E204E3B0B88D2C335FB40C /* CommunicatorI.swift in Sources */,
- A6253A99C1D07525B72700F9 /* Connection.ice in Sources */,
- 0409A3A313961A42AF4D6F90 /* ConnectionF.ice in Sources */,
- ABBA67992758752B990DFDD5 /* ConnectionI.swift in Sources */,
- 8A994E04EC899DBAF6A3A8C0 /* ConnectionInfo.ice in Sources */,
- 68F1A88AFD001F1F6ED07CB8 /* ConnectionInfoF.ice in Sources */,
- 8D7B476812F8307B3E899070 /* ConnectionInfoFactory.swift in Sources */,
- A54727F431BC298674263855 /* Current.ice in Sources */,
- 570AD12CC670C9104CD56EFA /* Endpoint.ice in Sources */,
- D388AFC0124FC2F2B07AE83D /* EndpointF.ice in Sources */,
- 6300D99A33A6DE986A9057BB /* EndpointI.swift in Sources */,
- A8F555AA283DCB17C7D3DA91 /* EndpointInfo.ice in Sources */,
- B690B90129B5D8B0FB8D374B /* EndpointInfoFactory.swift in Sources */,
- 71DE517C29AD16C6BC829B3C /* EndpointTypes.ice in Sources */,
- 2F55DAA8DCC42125090ABEAB /* Exception.swift in Sources */,
- 864DA378A7B1BC1AA1A0E132 /* FacetMap.ice in Sources */,
- E999B32ED120C6C0751400DF /* FormatType.swift in Sources */,
- BD1AE27E627B50C7630393D2 /* Identity.ice in Sources */,
- 0D2B3A1667F8D25E92449989 /* ImplicitContext.ice in Sources */,
- FD91191A250A4C4DCB7BACB5 /* ImplicitContextF.ice in Sources */,
- 118FDE391D35AAF8F09A34A0 /* ImplicitContextI.swift in Sources */,
- 4425991B4B08B2E777529ACC /* Incoming.swift in Sources */,
- A4C9A0E32A1125891A276902 /* InitializationData.swift in Sources */,
- 129FDDD989D45A6B5F12EA88 /* Initialize.swift in Sources */,
- C94D1D3CBCA94A45F30845D0 /* InputStream.swift in Sources */,
- A5A998167C67C67F8FFEB089 /* Instrumentation.ice in Sources */,
- BBB69BF71ADA4325D7A2E17F /* InstrumentationF.ice in Sources */,
- C5BBD5928425EB93F32A125B /* LocalException.ice in Sources */,
- CB2B7645B2BD43953CB82FE6 /* LocalExceptionDescription.swift in Sources */,
- 6D9836E62C8D5D17FBAFA759 /* LocalExceptionFactory.swift in Sources */,
- 9B74FFBE1BB93550923175B7 /* LocalObject.swift in Sources */,
- 37AA3E7FEABA4E9801A49FFF /* Locator.ice in Sources */,
- 1181F3FEF3577E15715240C9 /* LocatorF.ice in Sources */,
- D715C60C72FC16D746FA405C /* Logger.ice in Sources */,
- 9DB82121D979CA1600CAEB97 /* LoggerF.ice in Sources */,
- 63CC541D2727A8DDEE1A44E9 /* LoggerWrapper.swift in Sources */,
- 62B9D76E8372128E4618947B /* Metrics.ice in Sources */,
- DE3F0034C15EB92C5E58E767 /* Mutex.swift in Sources */,
- BECCF7A43E8D705BA4AD8E05 /* NativePropertiesAdmin.swift in Sources */,
- 721E54AA66517735C89B582C /* Object.swift in Sources */,
- 6540ABD403CE8E1C4A53FA97 /* ObjectAdapter.ice in Sources */,
- D535ACEB450486BE82E42EC6 /* ObjectAdapterF.ice in Sources */,
- 3B50BE4A6AE01764D7EB506C /* ObjectAdapterI.swift in Sources */,
- BD4E75E28E63171268AD5C24 /* ObjectFactory.ice in Sources */,
- 0F721B1227AF0B471077DF27 /* OptionalFormat.swift in Sources */,
- F19E70A47D8BD5074144A3C2 /* OutputStream.swift in Sources */,
- BCF9195D15CCCB56BACDBA33 /* Plugin.ice in Sources */,
- 6551ABF0F7B5DD767EEBA07A /* PluginF.ice in Sources */,
- AF85903DE913FC1F3A57E288 /* Process.ice in Sources */,
- 550DDDE4AE0AEFB8F7545939 /* ProcessF.ice in Sources */,
- 7AC7C8D9E9C1D20AFAF50D3F /* ProcessI.swift in Sources */,
- 982A8D27FFF3D9494D60A7E9 /* Properties.ice in Sources */,
- 1AB8067A778FA7D0BDE26CB5 /* PropertiesAdmin.ice in Sources */,
- 9BD183C2021C52983E3B41CC /* PropertiesAdminI.swift in Sources */,
- E5E63368F85E278F462588A6 /* PropertiesF.ice in Sources */,
- CB95E846142B06F22774953C /* PropertiesI.swift in Sources */,
- DF69D04577CAE98164496916 /* Proxy.swift in Sources */,
- 76CE3F0C1A83651E7366CED5 /* RemoteLogger.ice in Sources */,
- F0EE4477CC6A62C2E9812F79 /* Router.ice in Sources */,
- 386E3BF5DC5F8A31ED882653 /* RouterF.ice in Sources */,
- 8F4C2847C897A5FDCF09A47D /* ServantLocator.ice in Sources */,
- 592EB88892B9B8C13FE0A01C /* ServantLocatorF.ice in Sources */,
- C7B805B43BFCFA3326A6A999 /* ServantManager.swift in Sources */,
- 2ADFD84C7BDF8F0E42A9FDD5 /* SliceChecksumDict.ice in Sources */,
- 3BBDDB6320ABA175D11F4388 /* SlicedData.swift in Sources */,
- DC9D6D368431BB081FBEA9B8 /* SliceFlags.swift in Sources */,
- 1E0C412E06FA7F8D7BE47BFA /* SliceInfo.swift in Sources */,
- EA8DADCB0269E667A0FDC9F7 /* UnknownSlicedValue.swift in Sources */,
- B9AF25A22825EEAB028BF25E /* Util.swift in Sources */,
- 6B923A83FDEF036FDD5323C2 /* Value.swift in Sources */,
- 88F47A9DEDB3BF05F8C3705B /* ValueFactory.ice in Sources */,
- 8741298BBC0DD27F48D566F1 /* ValueFactoryManagerI.swift in Sources */,
- 6CB4883291B4AB577AFA7A26 /* Version.ice in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 7C6459EE51C40E41C64C545D /* Sources */ = {
+ F8D89387AC9D2EA08BDE367A /* AllTests.swift in Sources */,
+ 67FD3AFE65A3775381B67787 /* Client.swift in Sources */,
+ E3CBEFCF75902A6A28766915 /* Collocated.swift in Sources */,
+ D6AF663E8987B066AF8F28AA /* ServantLocatorI.swift in Sources */,
+ 189BEECFF18F7DEE7096AD6E /* Server.swift in Sources */,
+ B6C1D343C1F92AD7979204DE /* Test.ice in Sources */,
+ 49A54875952D120753378204 /* TestI.swift in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 95B37EF7EE6809FFB9BAFF3B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- F9053E912C450B2EE303B25E /* AllTests.swift in Sources */,
- E37D4C7DD4F1950BC964A954 /* Client.swift in Sources */,
- BF804E944831E9E56D371540 /* Server.swift in Sources */,
- 3D05FE265C49D4A7E8A74EC2 /* Test.ice in Sources */,
- 7BA6B9170F7E9CE3B9035F66 /* TestI.swift in Sources */,
+ 383EC18569712EF007712EE6 /* AllTests.swift in Sources */,
+ 807C1D0CAE00895DCBC94303 /* Client.swift in Sources */,
+ E53ADE4E5CAA2C40E7328A4F /* ClientPrivate.ice in Sources */,
+ 10C9A9FCC94666E19203A70E /* Server.swift in Sources */,
+ 544D672ABA2A43C93BF888BE /* ServerPrivate.ice in Sources */,
+ 9B622555EB1A277358B7643C /* Test.ice in Sources */,
+ 6F2B04B44AA47B97D877A59E /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 7CF66B71BD588C1DAB4DEB7C /* Sources */ = {
+ 96747F5114F453B5F89727C7 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- AE0D805B6D4744ED785EA903 /* AllTests.swift in Sources */,
- 35FFF484D4A52783BBA83327 /* Client.swift in Sources */,
- B7662AF38CD718B01DDDBE53 /* Collocated.swift in Sources */,
- 15E2A7503462AE5565FDD50B /* Server.swift in Sources */,
- FB4DF661DD9AB9580585241D /* Test.ice in Sources */,
- 24583FFA4EFAD90D988B8573 /* TestI.swift in Sources */,
+ 01DD8D15C583CC79DEC1CD78 /* AllTests.swift in Sources */,
+ DE8E728BDD5523AFCD1295C6 /* Client.swift in Sources */,
+ 238EB85FB8BF1D5252936ECD /* Collocated.swift in Sources */,
+ 3E043F863A87FA9D335A06D1 /* Forward.ice in Sources */,
+ 5584899926E92C7A6C169C39 /* Server.swift in Sources */,
+ 67C694D8E9C8A1C4F1B61863 /* Test.ice in Sources */,
+ EF7CC7272F0C74E79B881A4F /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 7F942DB3FF698A6DD6B4941E /* Sources */ = {
+ 9B99240856F2F2C7905651D5 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 872F8D162562E2AFD32AD4FB /* AcceptorI.cpp in Sources */,
- AB78F23EF2B0C21E3E634DB5 /* CertificateI.cpp in Sources */,
- FE198FE0B667A0E0EBE24E29 /* ConnectionInfo.ice in Sources */,
- 75F7594DA6C2D727A79E3789 /* ConnectionInfoF.ice in Sources */,
- 5C7DD532A6E24C7FD912D70A /* ConnectorI.cpp in Sources */,
- FF3D3A1940BC062E27835500 /* EndpointI.cpp in Sources */,
- 94FAA78E6C6108FE7B175D6A /* EndpointInfo.ice in Sources */,
- B419F712F081D02D35405631 /* Instance.cpp in Sources */,
- 66D403FBDDD1939363FC2044 /* PluginI.cpp in Sources */,
- 60CB68790E77131B0D4C5B5F /* RFC2253.cpp in Sources */,
- E28792AC5AC79A35BFBE0D54 /* SecureTransportCertificateI.cpp in Sources */,
- 16CD29A341CA984D87ABD30B /* SecureTransportEngine.cpp in Sources */,
- D318FBF6F0B09A51396E988B /* SecureTransportPluginI.cpp in Sources */,
- D0E87A816851AF7044DD6FC8 /* SecureTransportTransceiverI.cpp in Sources */,
- A4AE832A7D8ED88D3B30381D /* SecureTransportUtil.cpp in Sources */,
- 1F40A06CB984F22ED2BFCC53 /* SSLEngine.cpp in Sources */,
- 42D1E8BAEC4911642C7790EA /* TrustManager.cpp in Sources */,
- 8FAFA5BE62F62DB5DD279DF8 /* Util.cpp in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 83FFF380258A748B820E7AC3 /* Sources */ = {
+ 7B5D6B4FE1EECD5A8E7E0421 /* AcceptorI.cpp in Sources */,
+ 073A42600D298CA72408A09A /* CertificateI.cpp in Sources */,
+ 472CAE87D70DC8CF731AA436 /* ConnectionInfo.ice in Sources */,
+ 85CA51D8C1D8F17CBD749B4D /* ConnectionInfoF.ice in Sources */,
+ 3FFBA76EBD5ACB1DE1356987 /* ConnectorI.cpp in Sources */,
+ D7B36D14FB4C83326551398C /* EndpointI.cpp in Sources */,
+ 94F9A331059962EA153D589F /* EndpointInfo.ice in Sources */,
+ ECA0D31FE0CDE674CB4D3719 /* Instance.cpp in Sources */,
+ 8FEF0E2B30301C6E07917CAF /* PluginI.cpp in Sources */,
+ C39F9CA8B48DC521C860A615 /* RFC2253.cpp in Sources */,
+ 4B220BE14A8E74BE1342147E /* SecureTransportCertificateI.cpp in Sources */,
+ 319F12832890EFC28E6DFE8A /* SecureTransportEngine.cpp in Sources */,
+ 9AAD20AF35BAE97C6F8BFD85 /* SecureTransportPluginI.cpp in Sources */,
+ 7E00BD9146A69ADE1F0E0415 /* SecureTransportTransceiverI.cpp in Sources */,
+ 8DD2216D7B9D7E854B102074 /* SecureTransportUtil.cpp in Sources */,
+ AF175670C4EC73E224873BD8 /* SSLEngine.cpp in Sources */,
+ BCC77C6593EA5FEA960ECC81 /* TrustManager.cpp in Sources */,
+ 2F2C3FB2F72794F86AD04730 /* Util.cpp in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 9C8BD7B7C0C62004F63C11BC /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 3A959EDAFC8DFC583FE66488 /* TestCommon.swift in Sources */,
+ 462BEBC36C5D5A273DA7244E /* AllTests.swift in Sources */,
+ 3CDAE9E45570872CD198B1CC /* Client.swift in Sources */,
+ AF5DA7A7E1371CCAB886D58C /* Collocated.swift in Sources */,
+ 6F45C60B7E11A7A260F3B13F /* Server.swift in Sources */,
+ 854CAB7BC57F3E8872A0C65D /* Test.ice in Sources */,
+ FD621A7CA41AB3ABAEF04EE9 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 847BAE7A129A4ACC6B4DCF65 /* Sources */ = {
+ 9EEC88E87721C6EC55B19AE2 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 4EB06ED95E3134609A9AA8AA /* AllTests.swift in Sources */,
- EAA598B99245F4FFDCF9E5E3 /* Client.swift in Sources */,
- FE3EC594222D57BD3124E579 /* Server.swift in Sources */,
- A0109330F6E0EA98DE3ECC7E /* Test.ice in Sources */,
- 928328B6299ABE507C98FCEA /* TestI.swift in Sources */,
+ 3D8C49637C44ABC910A7D30D /* AllTests.swift in Sources */,
+ 9C049044243DE880ACC4EBF0 /* Client.swift in Sources */,
+ 99FE8C3F1553A1A68EFBCF71 /* Server.swift in Sources */,
+ E03EEF2A12752704BC336635 /* Test.ice in Sources */,
+ 77E8D94175AABF5E31CE8056 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 8905ECBD934374A6BF2650E5 /* Sources */ = {
+ 9F0E2F804F97B0428B8DAF47 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 82CC05B3566DEDE31E2B0B96 /* AllTests.swift in Sources */,
- 6E8B2E718BD9D980967B4159 /* Client.swift in Sources */,
- 83EF171F3C15F9EB1A8B221C /* Server.swift in Sources */,
- 87032F3435B57F076B22B06C /* Test.ice in Sources */,
- 981D4F091C6B3DE7242F4312 /* TestI.swift in Sources */,
+ B71B426F8E46DF7466EEEBC0 /* AllTests.swift in Sources */,
+ 9C45017938E10C0A5A63F403 /* Client.swift in Sources */,
+ EDEE3E122BAEE7972AAB844F /* Server.swift in Sources */,
+ 37BDB088EF64A3FF1BBA8625 /* Test.ice in Sources */,
+ 13D9F4C2F0BB957AC0C6431F /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 89B5A8EBC8F6E794AA2A9C07 /* Sources */ = {
+ 9F7DB6C28E797DCFCF28E346 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- C19FE4610B895E7E0034202F /* AllTests.swift in Sources */,
- 10BE80FD775AB46B9ACB3435 /* Client.swift in Sources */,
- B4CD80A816E90082C5412583 /* Collocated.swift in Sources */,
- 551A9FF7BA53150587D0B8A2 /* Server.swift in Sources */,
- 77D2D004EBB6489E3ED2DBA9 /* Test.ice in Sources */,
- 31D8F1AF06E381E38703F4B6 /* TestI.swift in Sources */,
+ 120F183EDF3E92678207C573 /* main.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 8AFCE1310A07F1FB31076426 /* Sources */ = {
+ A30D0FFCACCAC02E95AA5706 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- BCC6B863028FD77CCCE7007F /* ServerAMD.swift in Sources */,
- 6701C96474ADED3A25C8441C /* ServerPrivateAMD.ice in Sources */,
- 12A04227CD8FEE4CAE863FFC /* TestAMD.ice in Sources */,
- EE4C8789B679A7157A7B720F /* TestAMDI.swift in Sources */,
+ F77CFCD794604D2735C9080D /* AllTests.swift in Sources */,
+ 58BF7495066E6A6B0D59B377 /* Client.swift in Sources */,
+ 13AD369B33EA3C4BABF29BE4 /* Server.swift in Sources */,
+ 192DAF097EBAD930880F4818 /* Test.ice in Sources */,
+ 73F2F2F33A9CA4AEC60A386B /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 8C2225880064EB4F06B5DEDD /* Sources */ = {
+ A3E4BAC90727FB8A981408AB /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- C50ACFDDC4FF7871AF584AC9 /* AllTests.swift in Sources */,
- 8039A4DBC6B2B5DF2247E0FC /* Client.swift in Sources */,
- 54B2A4EA58EFA8A52D918048 /* Server.swift in Sources */,
- 4AB6E7053F431E2F038DDD8C /* Test.ice in Sources */,
- 63CF71F5705213471BB4F6F8 /* TestI.swift in Sources */,
+ C227E4EA1CD8B8C42674AA0A /* Clash.ice in Sources */,
+ C5564C7A99376298A7C619D1 /* Client.swift in Sources */,
+ 4590FD73B74C91B1CA91E584 /* Key.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 8CFC18503DD5BD37FC752CBA /* Sources */ = {
+ A474CAA01FA7D137A646980D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- BBA886440CD25D59038893F2 /* ServerAMD.swift in Sources */,
- 390DD43D84005F7885637A0B /* TestAMD.ice in Sources */,
- 402ABB1125F5580FFDC069BF /* TestAMDI.swift in Sources */,
+ 957945F2BD6B289CFD9DDB03 /* IceStorm.ice in Sources */,
+ 126D22F2C47053776876DE6D /* Metrics.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 8E4382404883125B59A7EA6E /* Sources */ = {
+ A58EB3CF089EDC3156B2B24B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 963B1E199F497D7BF606E036 /* AllTests.swift in Sources */,
- F7CD69EDF07A11F88745583F /* Client.swift in Sources */,
- 05029BD03DAF176150C7E92C /* Server.swift in Sources */,
- BF82B85EB4F2E3572A7C9056 /* Test.ice in Sources */,
- 811524042B94B8EA461D3629 /* TestI.swift in Sources */,
+ EA778E46503AAF3E97009826 /* AllTests.swift in Sources */,
+ 82383017C9960879FEBD594D /* Client.swift in Sources */,
+ 9D6A8FA1D3B3618E20CA041D /* Server.swift in Sources */,
+ E0BE71BE129796F15A3A4CA7 /* Test.ice in Sources */,
+ 59CDCD357375DE23CF650BE4 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 92D41DE1038D51D2691573BE /* Sources */ = {
+ AF4EE30053EFFF3091D960DF /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- EB602C79BBE7BA7DDCAA4C77 /* AllTests.swift in Sources */,
- DDE729E31E5EC7181E4AE376 /* Client.swift in Sources */,
- 8E9311C49765A5DDB222ECF2 /* Collocated.swift in Sources */,
- DECB5F8B640552131B9ED3D0 /* Server.swift in Sources */,
- 580B9B8E65370ED756529386 /* Test.ice in Sources */,
- 68298F9570C00E17B56DD3DE /* TestI.swift in Sources */,
+ 08D1A021848411B1D5D87CB3 /* AllTests.swift in Sources */,
+ D0FAD3697950CDB553049357 /* Client.swift in Sources */,
+ 1DA1FD7205069928152C5AEB /* Server.swift in Sources */,
+ 1A55877F0C35ECB8BB2F7850 /* Test.ice in Sources */,
+ 7ADACDB4B2826DC2495E157F /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 99335EDD647A66C9FBB47AC4 /* Sources */ = {
+ AF7819AED0D1D05AA25D92E4 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 3F8CFE4BA90EB6A53875E339 /* Client.swift in Sources */,
- 6A8F8524F8C8BFF04E778C02 /* Test.ice in Sources */,
+ B5AB5DD7DE3067822678BCE2 /* AllTests.swift in Sources */,
+ E211221FEEC85492562D0B91 /* BatchOneways.swift in Sources */,
+ C0B5BB41E281A99E37A36C2C /* BatchOnewaysAMI.swift in Sources */,
+ 01899344F4646F58F2234DC7 /* Client.swift in Sources */,
+ EED4EC5EBF37757AF120B803 /* Collocated.swift in Sources */,
+ 0E0BEB4AD9ED22A42E02CEE9 /* Oneways.swift in Sources */,
+ 1DBF204EBC2C1E936D91D620 /* OnewaysAMI.swift in Sources */,
+ 11E055A21F340C8D07FD409C /* Server.swift in Sources */,
+ AE9594E1DDD9C3353D7866A8 /* Test.ice in Sources */,
+ D083411A0B48613C5604C99A /* TestI.swift in Sources */,
+ 6EB5BCCEE55B0D9A89E6916A /* Twoways.swift in Sources */,
+ 3E5E37983351379ADE9E7191 /* TwowaysAMI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 9A01FFB341B9905C338B69D1 /* Sources */ = {
+ B0E938D7D1F3C435E08794D8 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 70CF299CF108872709974CB9 /* AllTests.swift in Sources */,
- 98B0F91E264ED3A4ED99D587 /* Client.swift in Sources */,
- 2DC74A778CE7D4FD6DF5664F /* Server.swift in Sources */,
- 553FD281CACC41EBFA7E0414 /* Test.ice in Sources */,
- CF026317644223AD3F02F9CE /* TestI.swift in Sources */,
+ CA8C70CFEA11982EE6664D55 /* ServerAMD.swift in Sources */,
+ 886164D25F1CF9E11B755BF8 /* TestAMD.ice in Sources */,
+ 8E00D422E8B506EA765E7550 /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 9A5EF9C47F89D24D062728BD /* Sources */ = {
+ B220C2F0646FC27F06A6699C /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- C3CB9A2D449C4C32C4A911F1 /* AppDelegate.swift in Sources */,
- 762B84AC8461ADD22D3BEEDA /* Assets.xcassets in Sources */,
- F39B1667E8FCCB016DCC7B97 /* Controller.ice in Sources */,
- 3818C0A772722ADE56982136 /* ControllerI.swift in Sources */,
- 6931640FC2BDA75AAB4CC52B /* LaunchScreen.storyboard in Sources */,
- 6F4E96D3D35D093CC6DD29C1 /* Main.storyboard in Sources */,
- 594E17E597375211F3E6C4E9 /* ViewController.swift in Sources */,
+ DA182BC73A8643B5B513F726 /* ServerAMD.swift in Sources */,
+ C944B50ED4E37728BB53CE16 /* TestAMD.ice in Sources */,
+ F0A9BDC17C556F54B3252A09 /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 9BF39DF54E75A89C89E29E47 /* Sources */ = {
+ B314BDF86BABC52A0FB4B295 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 30EB44AA21666F128A36749C /* AllTests.swift in Sources */,
- C45444D5841F413308691279 /* Client.swift in Sources */,
- 8667ECFFEA53DBC95F7BFAC4 /* Server.swift in Sources */,
- B4000A5EAB6E27547C5D8E34 /* Test.ice in Sources */,
- 5778EFD5DE0B53AC01009197 /* TestI.swift in Sources */,
+ 1879D91C0EC4E02723483022 /* AllTests.swift in Sources */,
+ 6ADED609C4BEB4C1A8B191E1 /* Client.swift in Sources */,
+ EEB791AD70ADD03385AD3F82 /* Collocated.swift in Sources */,
+ 1B0570B44183F6CB9389AA60 /* Forward.ice in Sources */,
+ 047780976676297E540529D6 /* Server.swift in Sources */,
+ 9AA2D40EAAB4E095BE6C1EA9 /* Test.ice in Sources */,
+ AF5E23E76053886A3FDC22F9 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- 9D155F8C2B0E9C4329881235 /* Sources */ = {
+ B3C32EE3776C0DFDBC742F63 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 3A0CF8939D9F572432B2453A /* BlobjectFacade.mm in Sources */,
- 7C4BA0EF9A290CBE73322B1C /* Communicator.mm in Sources */,
- 0563FD5166A0D33DA5F351B9 /* Connection.mm in Sources */,
- FB585612C37033156C4B9F1A /* Convert.mm in Sources */,
- 5B332D5EDAD824B60A19F78E /* Endpoint.mm in Sources */,
- 69FB3E8E8FE33D8FFCE3EC7D /* Exception.mm in Sources */,
- 494661AD16143FF0503ECC88 /* IceUtil.mm in Sources */,
- 5DD1C7C38668813460444440 /* ImplicitContext.mm in Sources */,
- 04ACE36995C8D84CC2499A1B /* LocalObject.mm in Sources */,
- B8F5DCA7C5BEDA2EE0103930 /* Logger.mm in Sources */,
- 8AD386A1BA988E999BA3724D /* ObjectAdapter.mm in Sources */,
- F7E332D1F474B34D742329B4 /* ObjectPrx.mm in Sources */,
- EE8799A69B2959B8CAEA5DBA /* Process.mm in Sources */,
- 729FE15A31066558852A83AA /* Properties.mm in Sources */,
- 9A0467DC813510537079200A /* PropertiesAdmin.mm in Sources */,
- 0B8694FA9A5E762BCFE37DEA /* TraceUtil.mm in Sources */,
- 46325AA2AB0497C0E7CBC71A /* UnsupportedAdminFacet.mm in Sources */,
+ 7D65ED1DAA17C147F57214D6 /* AllTests.swift in Sources */,
+ EAB9F6B82D1D9B7A6633885E /* Client.swift in Sources */,
+ 4205A0D10E5D60758249E823 /* Server.swift in Sources */,
+ 1F749D532795FDBA5BFEE0CF /* Test.ice in Sources */,
+ 3E281F05FB3317FE1CE34BF6 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- A86E14DF253A5DF96A4D75B5 /* Sources */ = {
+ B50B918AFB2190961274A117 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- C9A73C2F3C7F65F6983DC2DF /* AllTests.swift in Sources */,
- 094962416E856DC118DC9CB9 /* Client.swift in Sources */,
- 2900ECAF60565D3ADAF830CC /* Server.swift in Sources */,
- 859762D8F01EA096500EBA1E /* Test.ice in Sources */,
- 5BEDF987D4ED0D974FB436A1 /* TestI.swift in Sources */,
+ 2FE6B761F66C7B1B09DF0012 /* IceDiscovery.ice in Sources */,
+ BF4715259FEA1EED812A8758 /* LocatorI.cpp in Sources */,
+ B794B7D4F03787483DFEE631 /* LookupI.cpp in Sources */,
+ 168365A760944B1F56251326 /* PluginI.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- A8C76968DCC60C718BE7EA54 /* Sources */ = {
+ B5279E3ED016C786663AF492 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 77C957C2DF414CB1B90CC745 /* AdminFacetFactory.swift in Sources */,
- 29A28184C0F75AC57E882681 /* Blobject.swift in Sources */,
- 6B5347B5084CE13DF766BBE9 /* BlobjectAsync.swift in Sources */,
- 8DA67CE61EC2521F273035C8 /* BuiltinSequences.ice in Sources */,
- 4786C59A98F0A9CA9FA30BC7 /* ClassResolver.swift in Sources */,
- 099D3E2EA64617F3C89C70F8 /* Communicator.ice in Sources */,
- C01FD66D96C027D2E6E495B7 /* CommunicatorF.ice in Sources */,
- 24CE6A5E48BAA1A34B8A651A /* CommunicatorI.swift in Sources */,
- 89F915D5FC8DD60A40814426 /* Connection.ice in Sources */,
- 63E728E78CD0B9CB234E3698 /* ConnectionF.ice in Sources */,
- 05588123334BA3D12EBCF886 /* ConnectionI.swift in Sources */,
- 1E0FED36DA0F593829BB981E /* ConnectionInfo.ice in Sources */,
- 64255BA206BDBEC5EE7BBE53 /* ConnectionInfo.ice in Sources */,
- 9F569FCDB2B250AFCAE321E2 /* ConnectionInfoF.ice in Sources */,
- 77ADD5BC943261E117AFD8AC /* ConnectionInfoFactory.swift in Sources */,
- AFD7A65C926EEBF100A0C982 /* Current.ice in Sources */,
- 1F92F1289840A5046DA13457 /* Endpoint.ice in Sources */,
- 1BE8FF63C32F2206D38DDBD4 /* EndpointF.ice in Sources */,
- 9D4761E17CECA1C1A394D18C /* EndpointI.swift in Sources */,
- D4717EC0944737C43AC62E39 /* EndpointInfo.ice in Sources */,
- DEA7817CD980C665FE0C131B /* EndpointInfo.ice in Sources */,
- 0429332E8DAFC6A90C320838 /* EndpointInfoFactory.swift in Sources */,
- 239A9D722BC04C85E672B595 /* EndpointTypes.ice in Sources */,
- F99BC42E39479067FEAC972E /* Exception.swift in Sources */,
- F650F467CF12DCDA89408132 /* FacetMap.ice in Sources */,
- 00AEDE024F314B781DC98445 /* FormatType.swift in Sources */,
- D10FD0221D92E16570AD663F /* Identity.ice in Sources */,
- 5BFD1130F1375E83B0971BCB /* ImplicitContext.ice in Sources */,
- D3E9703B7CA0C48F9175036F /* ImplicitContextF.ice in Sources */,
- 593B2FE306BDCBE8FE03EAE3 /* ImplicitContextI.swift in Sources */,
- 3A412DB07E18C0A26FBF8D8E /* Incoming.swift in Sources */,
- 4016EB1332F196C393A7BE98 /* InitializationData.swift in Sources */,
- A3BE3F1ABE0396063FF5584F /* Initialize.swift in Sources */,
- 589C54161664723DF1868CC1 /* InputStream.swift in Sources */,
- 0EBDC1D3EDA102C4A1A6A542 /* Instrumentation.ice in Sources */,
- 9AD5A1DDD96326402D938EDD /* InstrumentationF.ice in Sources */,
- 8AA8F52FCA75ED26D482FE87 /* LocalException.ice in Sources */,
- A7373F94BF056BF204BD716B /* LocalExceptionDescription.swift in Sources */,
- F49BB0568A24B36826F4FB46 /* LocalExceptionFactory.swift in Sources */,
- 9141955D160DF69F3CCE02A9 /* LocalObject.swift in Sources */,
- 27AB1993D310A2E120067744 /* Locator.ice in Sources */,
- 3077347FA5717EA507E3ACC2 /* LocatorF.ice in Sources */,
- 16C6702F93ADA7BFE45414BE /* Logger.ice in Sources */,
- ECA617C2D2C267B77FEAE5D4 /* LoggerF.ice in Sources */,
- 8A6CDDEB639F85FBCED15B8C /* LoggerWrapper.swift in Sources */,
- D20DD2EF6D0048617A54C54F /* Metrics.ice in Sources */,
- 935B2FE8038A045CF2520EB3 /* Mutex.swift in Sources */,
- AA5A4567B2B64F2DA135A0F8 /* NativePropertiesAdmin.swift in Sources */,
- FF03F6D7887F661CD8B59C67 /* Object.swift in Sources */,
- 18C49B24F84F90DFF1B073CD /* ObjectAdapter.ice in Sources */,
- 655718E02352FD1D5D606474 /* ObjectAdapterF.ice in Sources */,
- 76CC9AB042A96179C77C2BC2 /* ObjectAdapterI.swift in Sources */,
- DA1EAC833B8DB4EE82541657 /* ObjectFactory.ice in Sources */,
- F23533D56E2C7065947AE116 /* OptionalFormat.swift in Sources */,
- CECF9C9C5F56BFBA94F56E52 /* OutputStream.swift in Sources */,
- DB7CD38FD26CBDBBDE74423D /* Plugin.ice in Sources */,
- 98B7F7C100F56ADD4C9C474B /* PluginF.ice in Sources */,
- 3CB470259808FF2BAA07354D /* Process.ice in Sources */,
- 3DDB2CFA2BD7359E6107B58C /* ProcessF.ice in Sources */,
- 2584E393AED6AA56EC29E2A9 /* ProcessI.swift in Sources */,
- 1225D938193A1ABE5512618F /* Properties.ice in Sources */,
- E30A88B30776CF94E715F8C5 /* PropertiesAdmin.ice in Sources */,
- 0ACB571EBDFEEED622A41D81 /* PropertiesAdminI.swift in Sources */,
- B4D2F6960F818209557CB8F7 /* PropertiesF.ice in Sources */,
- F8FC6FA4A9C82818E9B49C1B /* PropertiesI.swift in Sources */,
- 77DEE8FB1E2DDC0703809438 /* Proxy.swift in Sources */,
- 0BAB33B4AD68AB2B344A61A0 /* RemoteLogger.ice in Sources */,
- C26392F29D2B368F6CB86461 /* Router.ice in Sources */,
- F76E7377ADD7F4D2C96D10FD /* RouterF.ice in Sources */,
- B3983AA7D21AA6025F8B694A /* ServantLocator.ice in Sources */,
- 6F58FC210AC7A575FBC66FE5 /* ServantLocatorF.ice in Sources */,
- 98A747B07EB0C80D2C4FCDE6 /* ServantManager.swift in Sources */,
- 59F6A05998D523341AE33290 /* SliceChecksumDict.ice in Sources */,
- B6E69A038383A012F2D831F7 /* SlicedData.swift in Sources */,
- B42C20050BB8E6F8D0EFBF8D /* SliceFlags.swift in Sources */,
- E6D65DF194DFF8B77A3FCFFE /* SliceInfo.swift in Sources */,
- 44D785D79D91D02A66E3D8C1 /* UnknownSlicedValue.swift in Sources */,
- 985FD86F7C86870A15348404 /* Util.swift in Sources */,
- 1CA2843FD34A93155C5B2593 /* Value.swift in Sources */,
- 700153A0C07B639ADC3E4029 /* ValueFactory.ice in Sources */,
- F69AD5EBB813869751386B39 /* ValueFactoryManagerI.swift in Sources */,
- 58581AD46BFC9257484E1D70 /* Version.ice in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- A98C9D111ACACB08A84D8D14 /* Sources */ = {
+ 1C9B6FFF3A0E5C0C4D04AA6F /* Acceptor.cpp in Sources */,
+ F1E199888F032E9ACFBE0FA3 /* ACM.cpp in Sources */,
+ 4C1166055E717EDD0B25A1B9 /* ArgVector.cpp in Sources */,
+ B3EA7D7028C0A7B71503C2F7 /* Base64.cpp in Sources */,
+ 5FDBC78E7BE24A4F67E66139 /* BatchRequestQueue.cpp in Sources */,
+ 5DF7203433135764B9B0253C /* Buffer.cpp in Sources */,
+ D1911B807A7CFC1BFE8A4E09 /* BuiltinSequences.ice in Sources */,
+ F51D14BA8910E0B27F4F3154 /* CollocatedRequestHandler.cpp in Sources */,
+ BE519DFB82D12013434C86B1 /* Communicator.ice in Sources */,
+ 98FF548C233445D874C20ACA /* CommunicatorF.ice in Sources */,
+ 6950CB690D5A3DE42B23D1FC /* CommunicatorI.cpp in Sources */,
+ C8073BA14EDED7411863F07E /* Cond.cpp in Sources */,
+ 89D0E57AE2640962123DF688 /* Connection.ice in Sources */,
+ 565421FF932C8778B5E1C18A /* ConnectionF.ice in Sources */,
+ 69527319EB47F2D7726D3894 /* ConnectionFactory.cpp in Sources */,
+ 09A6DB3CA1D4998E81767B4C /* ConnectionI.cpp in Sources */,
+ 0890ED160C0D3026763A2355 /* ConnectionRequestHandler.cpp in Sources */,
+ 9E28E765AE8D7246F1FFC92D /* Connector.cpp in Sources */,
+ 63552136F42214F8A746E214 /* ConnectRequestHandler.cpp in Sources */,
+ BDE438D9E5EA27D6DD89FF8F /* ConsoleUtil.cpp in Sources */,
+ 71B7109F38529DE57F3241A7 /* CountDownLatch.cpp in Sources */,
+ CB9F99BA71D6C9223F6FED8F /* CtrlCHandler.cpp in Sources */,
+ 38F4F5FA9E9AEA91295EC236 /* Current.ice in Sources */,
+ 2172A33FB2EE474C72289DE2 /* DefaultsAndOverrides.cpp in Sources */,
+ 16FB836FB7D26F50C289AC4E /* DispatchInterceptor.cpp in Sources */,
+ 3B2EDB18065B534D64B9FD83 /* DynamicLibrary.cpp in Sources */,
+ 2B319CAE56557C30F9A71445 /* Endpoint.ice in Sources */,
+ 88C63EB300C205DF24E698E8 /* EndpointF.ice in Sources */,
+ 823000CF1B59EEE49E6B5D54 /* EndpointFactory.cpp in Sources */,
+ 82296F1FE8D6CC7C74DFC561 /* EndpointFactoryManager.cpp in Sources */,
+ AD6C84CF19E3F33FD22B0506 /* EndpointI.cpp in Sources */,
+ AF4BA5E3E8EDDD91A018AE94 /* EndpointTypes.ice in Sources */,
+ 0FF523A0A8D47DE50995C823 /* EventHandler.cpp in Sources */,
+ 3D47ED70E00060BB52E0EE57 /* Exception.cpp in Sources */,
+ 770A97F3C04925FC05E5C765 /* FacetMap.ice in Sources */,
+ FA9AF0AAEA933B7462970599 /* FactoryTable.cpp in Sources */,
+ 804890FB56854D440D0B54FC /* FactoryTableInit.cpp in Sources */,
+ DF76CF92AA8B60AC00045861 /* FileUtil.cpp in Sources */,
+ B44AAA2014C2FB20D2345B23 /* HttpParser.cpp in Sources */,
+ E0785A9B0E1430A9E2806421 /* IconvStringConverter.cpp in Sources */,
+ 3C2706761393FFFD93E99CDC /* Identity.ice in Sources */,
+ 93ED19C780F2C37463384441 /* ImplicitContext.ice in Sources */,
+ BDFF98111EAD61B02CC03EF8 /* ImplicitContextF.ice in Sources */,
+ 165F122F8CCBBFB070454A0D /* ImplicitContextI.cpp in Sources */,
+ A5890D61C17B0F63DE55793C /* Incoming.cpp in Sources */,
+ DDD55E2D1A0E3047DCA126C6 /* IncomingAsync.cpp in Sources */,
+ 2ED7E7D994B597F9022E84D9 /* Initialize.cpp in Sources */,
+ 508F3B86F0B341FC6C813968 /* InputStream.cpp in Sources */,
+ ADA355E2815C338C8807E236 /* InputUtil.cpp in Sources */,
+ 03358468F3BC2C6EDB27B2F7 /* Instance.cpp in Sources */,
+ 6B2CFF1A57377123314F89BE /* Instrumentation.ice in Sources */,
+ BB6843C3919555913D7A58F9 /* InstrumentationF.ice in Sources */,
+ 29247BB7881D985D39A125FA /* InstrumentationI.cpp in Sources */,
+ F52827E6A73AC80962F3875B /* IPEndpointI.cpp in Sources */,
+ C33DE7AE653FFC851E1EF52B /* LocalException.ice in Sources */,
+ E6E89B96408C38B1DF562C94 /* LocalObject.cpp in Sources */,
+ 1A41D35FA3617871A0DF2BFF /* Locator.ice in Sources */,
+ 0DCA998B1A65960ECCE2FC80 /* LocatorF.ice in Sources */,
+ B6A97ED0471A889B9517BBD1 /* LocatorInfo.cpp in Sources */,
+ 13BBCD8CDC8D96AFACA2958E /* Logger.ice in Sources */,
+ DFFCC0889DCA47C2A37D9C6D /* LoggerAdminI.cpp in Sources */,
+ 2571883915701182CE340343 /* LoggerF.ice in Sources */,
+ 9B2DE15DCD2AA56C519CA6CF /* LoggerI.cpp in Sources */,
+ E2E4B4C035C399FAA5A8C470 /* LoggerUtil.cpp in Sources */,
+ 421BCB6F921B147F2C829BE2 /* Metrics.ice in Sources */,
+ 6B879EDB6E92228FBE4E50AF /* MetricsAdminI.cpp in Sources */,
+ F54665DB156D7EE653D1BA0E /* MetricsObserverI.cpp in Sources */,
+ CA38FB9A018F64A03E1F42E8 /* MutexProtocol.cpp in Sources */,
+ 903BED45E35CB747537258C8 /* Network.cpp in Sources */,
+ 2629B8C3AB91BAA05CCAD213 /* NetworkProxy.cpp in Sources */,
+ F3F8C54A11DC6FB2D75884A2 /* Object.cpp in Sources */,
+ 0238B9AC56CD3F6417BAA8DA /* ObjectAdapter.ice in Sources */,
+ A908A5A419C14D0956BD5D04 /* ObjectAdapterF.ice in Sources */,
+ 096C41E42B376BBED6211240 /* ObjectAdapterFactory.cpp in Sources */,
+ CDC421A400282B820368A184 /* ObjectAdapterI.cpp in Sources */,
+ 771027545324F259855AD4FB /* ObjectFactory.ice in Sources */,
+ 5D8C5089FB505B4246D0F263 /* ObserverHelper.cpp in Sources */,
+ D3372006C05909B73DEA3DCA /* OpaqueEndpointI.cpp in Sources */,
+ 187120867AFC33575D777B39 /* Options.cpp in Sources */,
+ 67C5C7B317C4917F47BD553D /* OSLogLoggerI.cpp in Sources */,
+ E13E5076C02DDF009A4693BC /* OutgoingAsync.cpp in Sources */,
+ EC05121AD929F336919CEE85 /* OutputStream.cpp in Sources */,
+ B9E23D2DBC93D081A6EF1997 /* OutputUtil.cpp in Sources */,
+ 2D2C890AE7FA67F8FB83AF03 /* Plugin.ice in Sources */,
+ 1A303AAEBFDF6E7D369B4761 /* PluginF.ice in Sources */,
+ 55064CDA0B422F365CEB6AC5 /* PluginManagerI.cpp in Sources */,
+ 101EA3838C47E788DE625F45 /* Process.ice in Sources */,
+ 74B9BF506F65D81C97AA258C /* ProcessF.ice in Sources */,
+ F3C000C0FF5F33B082B28B12 /* Properties.ice in Sources */,
+ B8FA95CE392AFB128287D7AB /* PropertiesAdmin.ice in Sources */,
+ C9A1F394E46C11263881F39A /* PropertiesAdminI.cpp in Sources */,
+ 5593C94105AA782F4BE5F821 /* PropertiesF.ice in Sources */,
+ F29167781CCA04A46163F792 /* PropertiesI.cpp in Sources */,
+ 860BC393C23A21E5F81EEF6C /* PropertyNames.cpp in Sources */,
+ FFE7479D32D0178051084B3F /* Protocol.cpp in Sources */,
+ 5BB9E7269F4EE49E65E9BE3C /* ProtocolInstance.cpp in Sources */,
+ 316D7E669E4929F1A6DCBD0D /* ProtocolPluginFacade.cpp in Sources */,
+ 220A863886D6746EAF9E441A /* Proxy.cpp in Sources */,
+ 640A4294B8D4BAE77A6D9AC6 /* ProxyFactory.cpp in Sources */,
+ 389F29D03B6A01161E158FE8 /* Random.cpp in Sources */,
+ 1F1B0FF4D09DCFC2AE410908 /* RecMutex.cpp in Sources */,
+ 5861405D8F53CF01EA2DCDF3 /* Reference.cpp in Sources */,
+ 7B7B51E8976DE0B191C37C24 /* ReferenceFactory.cpp in Sources */,
+ 1616E2027E0F2738D4206A3D /* RegisterPluginsInit.cpp in Sources */,
+ F19B14B3DA9FCC1BAB93FA0A /* RemoteLogger.ice in Sources */,
+ 503C9110692E2CF296B51180 /* RequestHandler.cpp in Sources */,
+ AA4C84296943B99A84FD4749 /* RequestHandlerFactory.cpp in Sources */,
+ 986BAE0A7CF7E26336DA9C0B /* RetryQueue.cpp in Sources */,
+ 05A8F1B2714E2E6C5DC69DDF /* Router.ice in Sources */,
+ E10BA5AA8081F4851CE6E298 /* RouterF.ice in Sources */,
+ D461510F4A24534591F9AFED /* RouterInfo.cpp in Sources */,
+ 8144046869C12C6E9BCB5BC3 /* Selector.cpp in Sources */,
+ 070D342E9DB67673A9248DAF /* ServantLocator.ice in Sources */,
+ 1D3021B3DC0C66A21DF31157 /* ServantLocatorF.ice in Sources */,
+ 704DB6DA69DFD8B33289F6B8 /* ServantManager.cpp in Sources */,
+ 5D965A97A2EAAA609263185F /* Service.cpp in Sources */,
+ 7042388A0D63FE6DCDA9F654 /* SHA1.cpp in Sources */,
+ 023484FAB909A9605F3269E7 /* Shared.cpp in Sources */,
+ FA026E17099CDC282180A0C5 /* SliceChecksumDict.ice in Sources */,
+ 902E1BB2B659564E9A23152C /* SliceChecksums.cpp in Sources */,
+ DABE421785EC682E72B955E2 /* SlicedData.cpp in Sources */,
+ D643A1F482314700C36462E8 /* StreamSocket.cpp in Sources */,
+ E75CE1821F422A6D62359914 /* StringConverter.cpp in Sources */,
+ CEB841CB4AF26BEBE30B3B11 /* StringConverterPlugin.cpp in Sources */,
+ 23ADF18992C50947E9E69EF2 /* StringUtil.cpp in Sources */,
+ 8067185E30DBC472250AB10C /* SysLoggerI.cpp in Sources */,
+ 4CF22E9936CB169BBFDE6596 /* SystemdJournalI.cpp in Sources */,
+ 3D95B02E435D5F76E1149C44 /* TcpAcceptor.cpp in Sources */,
+ C355A1A5DF5D3D02B91B07E0 /* TcpConnector.cpp in Sources */,
+ 609C4032A9AD08841C628C29 /* TcpEndpointI.cpp in Sources */,
+ 3718CAA707CA628C70B8EFEB /* TcpTransceiver.cpp in Sources */,
+ 8993F97AC021C6645ACF9ADD /* Thread.cpp in Sources */,
+ 45B56899E82F39C4022312D5 /* ThreadException.cpp in Sources */,
+ A6CF04800374CDF921A63E99 /* ThreadPool.cpp in Sources */,
+ 47A154C782BCCBB68CF9CEBD /* Time.cpp in Sources */,
+ 63B3BB8395EED9B2D7B4610F /* Timer.cpp in Sources */,
+ 946F99DAAF40FBBE0BD3203C /* TraceLevels.cpp in Sources */,
+ 017C951002F78B1B0CFD69BD /* TraceUtil.cpp in Sources */,
+ 4933D2EF26795AF628618608 /* Transceiver.cpp in Sources */,
+ 98813F0F8E241B70E39750B5 /* UdpConnector.cpp in Sources */,
+ F439F52221CD82CA8D7C70F2 /* UdpEndpointI.cpp in Sources */,
+ 71905FFF7C869688158877E2 /* UdpTransceiver.cpp in Sources */,
+ B4B9079D0A8764F5DB92FD02 /* UtilException.cpp in Sources */,
+ 2C2A9C0D4B02CE48CC149668 /* UUID.cpp in Sources */,
+ BF46554B8DB0514B21AB2D33 /* Value.cpp in Sources */,
+ CD25DC9D89113E0276F6CE85 /* ValueFactory.ice in Sources */,
+ 7FF6F31A60A303A77944FEC8 /* ValueFactoryManagerI.cpp in Sources */,
+ 32B08BEFCDF46D75695CB4E2 /* Version.ice in Sources */,
+ D3DE72E445EB9E37E27EA61D /* WSAcceptor.cpp in Sources */,
+ 8297502A78B247BBE4DBA6A9 /* WSConnector.cpp in Sources */,
+ 90778C6C17F29D68671DF2BA /* WSEndpoint.cpp in Sources */,
+ 2C83456FEC7A220FCF6B8E11 /* WSTransceiver.cpp in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ B5D4569FA4F71C1A9546DB95 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 71D353CEC21B4A0BDE489094 /* AllTests.swift in Sources */,
- 9AD0A80EC2A1EDD05755860F /* Client.swift in Sources */,
- 649CADFDC5348427A88BCDF8 /* Server.swift in Sources */,
- 03ADDE4339DE9FAFAFC29708 /* Test.ice in Sources */,
- 4D526313E5310D5A76B57D5F /* TestI.swift in Sources */,
+ 5297F07DB929DF2E417F5676 /* AllTests.swift in Sources */,
+ 2FED9BFFE890ED8FE1563F6A /* Client.swift in Sources */,
+ 313F3C082D022D74F3B99CB8 /* Server.swift in Sources */,
+ 619BB4E8AC4B11BEA5F11A5F /* Test.ice in Sources */,
+ 6F3B2043FD79B1B0ACBD7834 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- AB2FA8C6744BB9F39A5C18EA /* Sources */ = {
+ BAFB50C9DFE412AB3EF441D0 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- A418F7544F8C3061C299B5A2 /* main.swift in Sources */,
+ 919956B1E525529FC2FB089B /* AllTests.swift in Sources */,
+ 35AB639A9A29002352D8FEE5 /* Client.swift in Sources */,
+ BDBC378ADB9B7C2071D3F4EA /* Server.swift in Sources */,
+ 250D4E8FEC60883143450CAE /* Test.ice in Sources */,
+ AF13CBD23CBC567D5822D002 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- AC46A26F5334F6646A03B23E /* Sources */ = {
+ BB9950031371D1D1D466E76A /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 7EFB790E7F5F0AA192819A6A /* AllTests.swift in Sources */,
- A6CD51C42649A6CE9C059B23 /* Client.swift in Sources */,
- 6485D40D94E3AA304DB4C753 /* ClientPrivate.ice in Sources */,
- 0AD4B5BA4887EE267133FAE9 /* Server.swift in Sources */,
- 022E39BD4FD8D06110F1AA62 /* ServerPrivate.ice in Sources */,
- C6159AF0DD0450F2149944EC /* Test.ice in Sources */,
- 2C463E19F9795BAD307C60AE /* TestI.swift in Sources */,
+ AB3587773B2E131DE1E0C7CE /* Client.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- AD5261CE1E9E1BC5A23E7634 /* Sources */ = {
+ BC6A385454C884C9DD3FB732 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 6BC0B3554B47D03BB8002871 /* ServerAMD.swift in Sources */,
- 8732BBA19CC4134C81D3C62C /* TestAMD.ice in Sources */,
- 71F9907830CFC8D24DF1BF72 /* TestAMDI.swift in Sources */,
+ AE3DC046D8E707CBDBA681BC /* BlobjectFacade.mm in Sources */,
+ 1329A0FC5734C2BA4086D6F2 /* Communicator.mm in Sources */,
+ 86DE5816B435604AEEC35A4B /* Connection.mm in Sources */,
+ 430BB5B2B57432253473DDE2 /* Convert.mm in Sources */,
+ FCBB5AE5657445BB261C20E5 /* Endpoint.mm in Sources */,
+ 1CF90C59523B11D998C5712C /* Exception.mm in Sources */,
+ 7604B46282CCD74DB218CF63 /* IceUtil.mm in Sources */,
+ 33E42C92CAB167494FDC7269 /* ImplicitContext.mm in Sources */,
+ 599179486C45F86DFD46A969 /* LocalObject.mm in Sources */,
+ 9B2AB31B981D0EA2024F8172 /* Logger.mm in Sources */,
+ E9D6EC5FF09050D67BCE5E51 /* ObjectAdapter.mm in Sources */,
+ CC671B75F9E0FEB728D7D33E /* ObjectPrx.mm in Sources */,
+ 33A2120A0586F8D6DB9A8AFA /* Process.mm in Sources */,
+ A6ADD0E88DBB2157BDDAB5A1 /* Properties.mm in Sources */,
+ 8F2CF4A9A8BA0CA9D96295F5 /* PropertiesAdmin.mm in Sources */,
+ DA6D720FF57695E227F5B127 /* TraceUtil.mm in Sources */,
+ 14AFC11142F7631F0B3D04FF /* UnsupportedAdminFacet.mm in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- B11B6A32D3D7F90F9ACB2ADE /* Sources */ = {
+ C1DFCE6502BF464BCD1D1DEA /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 9A5C17625D8265169E146210 /* ServerAMD.swift in Sources */,
- 0FE20D528094695D951F75AC /* TestAMD.ice in Sources */,
- 2008E62C32AE82345C3DDD66 /* TestAMDI.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- B15803FC33584BFED92B04A4 /* Sources */ = {
+ BAD87632AD2332A61A45401F /* AcceptorI.cpp in Sources */,
+ 52BECA150D2B6CBD782233BA /* CertificateI.cpp in Sources */,
+ B028354FC24507A7FB08F417 /* ConnectionInfo.ice in Sources */,
+ AB04BD7A6FBC631C97A92A92 /* ConnectionInfoF.ice in Sources */,
+ B779549BD2DF2E2344D3B993 /* ConnectorI.cpp in Sources */,
+ EC43416FD154B347E6922F4C /* EndpointI.cpp in Sources */,
+ CC77A356669ADB7605E65993 /* EndpointInfo.ice in Sources */,
+ 401D0AA11CC25352AFD57D4D /* Instance.cpp in Sources */,
+ E6374B9BF2F801B632C5CF0B /* PluginI.cpp in Sources */,
+ BEF80FF20DCC6428B1943AD6 /* RFC2253.cpp in Sources */,
+ 3E1B1BC3CB1C7493B96A0505 /* SecureTransportCertificateI.cpp in Sources */,
+ FCE18E76C9B1FD9260D499B8 /* SecureTransportEngine.cpp in Sources */,
+ F02055154B3224F830A34047 /* SecureTransportPluginI.cpp in Sources */,
+ BAB02878F86FB6C71806677E /* SecureTransportTransceiverI.cpp in Sources */,
+ 43D061B244CC749B6D9A6CD5 /* SecureTransportUtil.cpp in Sources */,
+ 2CD900B94CEDDCACC9129D8F /* SSLEngine.cpp in Sources */,
+ AFBF583B2EF21389BD9C4E4F /* TrustManager.cpp in Sources */,
+ C3F37A13A2C432166D696B7F /* Util.cpp in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ C2045A1C1B682CFA025DBEAC /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- FB116CEF620C09116E93658C /* IceDiscovery.ice in Sources */,
- 07CC5B26F406B3A9C79F7CAA /* LocatorI.cpp in Sources */,
- 1F69F4843B839154DA977CD6 /* LookupI.cpp in Sources */,
- 3147646229C4E278F79B0C5C /* PluginI.cpp in Sources */,
+ 895023325AC8A3144052626A /* Client.swift in Sources */,
+ 7FD15399C522C496AC5E32CD /* Test.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- B1D2E64811D23EC256AB073D /* Sources */ = {
+ C33C92B5FCB51BCA8A0B6EA2 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 416F308ECDC1498181DAD7A1 /* BlobjectFacade.mm in Sources */,
- C7B19060BBB2C08045512ADB /* Communicator.mm in Sources */,
- F7014D34489DD7D3CFEC1871 /* Connection.mm in Sources */,
- 4AD234CB51D2BF61B44D28C5 /* Convert.mm in Sources */,
- 8094FD5FCDEF265D590A8307 /* Endpoint.mm in Sources */,
- BF54E96162C81D5AFF42732F /* Exception.mm in Sources */,
- 79DCB796CB9CE890A50F5DEB /* IceUtil.mm in Sources */,
- B3548BEFA41BC65A60F64D9C /* ImplicitContext.mm in Sources */,
- 86B5210F07AE6DF54353831F /* LocalObject.mm in Sources */,
- FB21850EA66A8519EAC00855 /* Logger.mm in Sources */,
- D014BD0DC195C59B464713C0 /* ObjectAdapter.mm in Sources */,
- C3F56376FE4608A8F0C51932 /* ObjectPrx.mm in Sources */,
- 040E185DB065C5FD84A41E3C /* Process.mm in Sources */,
- 7732E22078DE9590E68C3C20 /* Properties.mm in Sources */,
- 38F37C0378CB525C004AB09A /* PropertiesAdmin.mm in Sources */,
- 4D8747A6BDBDFBEA49EC5AFA /* TraceUtil.mm in Sources */,
- D1CDCA031DC2E8D0021C6FBD /* UnsupportedAdminFacet.mm in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- B463761F3B18FD0D540703B9 /* Sources */ = {
+ CC7C5BF84AE4C6A60FEF16C2 /* AdminFacetFactory.swift in Sources */,
+ F1CFDEBF3D0B7CF088907520 /* Blobject.swift in Sources */,
+ D25EAAF4F9A0A1BC80945AE4 /* BlobjectAsync.swift in Sources */,
+ EE8962FDD182347783CA06D8 /* BuiltinSequences.ice in Sources */,
+ 5CFE7F452C8D8DE95B7CC331 /* ClassResolver.swift in Sources */,
+ CE53ACFB196315412C2D41BC /* Communicator.ice in Sources */,
+ 72ADFE352D0DD1618F353E5A /* CommunicatorF.ice in Sources */,
+ 8A728A77495BC7E2CD180BD6 /* CommunicatorI.swift in Sources */,
+ 12EA3048D49EEAB24CC424AE /* Connection.ice in Sources */,
+ 35F65BF1DE1BBBDD3523291C /* ConnectionF.ice in Sources */,
+ 75DC9AE71EA61365D26B5CA6 /* ConnectionI.swift in Sources */,
+ E05FFAEAD2F1BDDD4C0B44EB /* ConnectionInfo.ice in Sources */,
+ 2DBBAF4E6D2844B1FB2144B2 /* ConnectionInfoF.ice in Sources */,
+ A696FC25D355264FCF1FADF1 /* ConnectionInfoFactory.swift in Sources */,
+ C9DE2ABC4902381C6DD71F52 /* Current.ice in Sources */,
+ BD5B7A698C87FC6CC8204D3B /* Endpoint.ice in Sources */,
+ 7564E02EE6494E646EB7F9C9 /* EndpointF.ice in Sources */,
+ BFA96FF2CD1647189D40ADE3 /* EndpointI.swift in Sources */,
+ 5B4A558C52B3EFB7C1AD2FD0 /* EndpointInfo.ice in Sources */,
+ C56F6DB4A7AF4A6D174FDF30 /* EndpointInfoFactory.swift in Sources */,
+ 515BF5DBDEDF1A6043DE4BC6 /* EndpointTypes.ice in Sources */,
+ 3B29963942AF2904174B8494 /* Exception.swift in Sources */,
+ CA16918EC8999E482280A4AA /* FacetMap.ice in Sources */,
+ E5676F638AAF6A689024CDBE /* FormatType.swift in Sources */,
+ 1CC3A6C479CE3235E19B737F /* Identity.ice in Sources */,
+ 7C807497E39359A2E9A2E730 /* ImplicitContext.ice in Sources */,
+ C057150889A010DA1113F0F2 /* ImplicitContextF.ice in Sources */,
+ B0346C293A6D998119744892 /* ImplicitContextI.swift in Sources */,
+ F2125A8FAF0E33014DDADD1E /* Incoming.swift in Sources */,
+ 37A6F70E603EAFFCD1EC2CD5 /* InitializationData.swift in Sources */,
+ 65410C4F1F1110B99F1BDCD5 /* Initialize.swift in Sources */,
+ DD773E8FC21F51A4690A48E8 /* InputStream.swift in Sources */,
+ 4A0A055C6AEFC5FFB5121587 /* Instrumentation.ice in Sources */,
+ 06E9E8282FE6F586C3561866 /* InstrumentationF.ice in Sources */,
+ EBDDD340704A5C37F5B700B4 /* LocalException.ice in Sources */,
+ DD3846FD043B7C5648F5950A /* LocalExceptionDescription.swift in Sources */,
+ BC1D0F1B65F7F51E470336B7 /* LocalExceptionFactory.swift in Sources */,
+ 43E3C4E5F63CD1ACD37C8BA9 /* LocalObject.swift in Sources */,
+ FD70D126E698450254568F62 /* Locator.ice in Sources */,
+ 8CC9482ECADEE6EDD92F0D47 /* LocatorF.ice in Sources */,
+ AEC1E3F0592180B4EE02FDFD /* Logger.ice in Sources */,
+ A828B6C570A5C8D3DBDFB636 /* LoggerF.ice in Sources */,
+ 0829FFF84374E04A5F0631F8 /* LoggerWrapper.swift in Sources */,
+ F514E5F8335364DDF0E649D0 /* Metrics.ice in Sources */,
+ 6941AD242D9F08FB1B119CCC /* Mutex.swift in Sources */,
+ AABA4D462E4E45B453F8B141 /* NativePropertiesAdmin.swift in Sources */,
+ 6D47F4887F1129D6E8F73821 /* Object.swift in Sources */,
+ C818C95F19458427D92260BE /* ObjectAdapter.ice in Sources */,
+ 213B76789680E95517C1CFAB /* ObjectAdapterF.ice in Sources */,
+ 172D6D467B5101C2F97FA3BA /* ObjectAdapterI.swift in Sources */,
+ EFE4861314121694522BED60 /* ObjectFactory.ice in Sources */,
+ 1BD004F5F5D2E4D43F755F24 /* OptionalFormat.swift in Sources */,
+ 83ADE2EF029A457A440D043B /* OutputStream.swift in Sources */,
+ 009F0B106AA76AE01A051ADE /* Plugin.ice in Sources */,
+ 82C6A3FB169AACDACF4F7B87 /* PluginF.ice in Sources */,
+ 39E0647B24D4EAA22820F00A /* Process.ice in Sources */,
+ 27A3E82168F622D62F8581E4 /* ProcessF.ice in Sources */,
+ 014C98C2B879DC7AF15D03D3 /* ProcessI.swift in Sources */,
+ 0791D1238E0AE79C9F10B84E /* Properties.ice in Sources */,
+ 16148B77202EAE18DBE4938F /* PropertiesAdmin.ice in Sources */,
+ A18C33D5C6C0314E7341933E /* PropertiesAdminI.swift in Sources */,
+ 75D2708A325F45B6F6B4ACDA /* PropertiesF.ice in Sources */,
+ 201CDA9BD4BD00023762084A /* PropertiesI.swift in Sources */,
+ 62F98F78E832E0A539746E13 /* Proxy.swift in Sources */,
+ BD2711830612EC063FD17615 /* RemoteLogger.ice in Sources */,
+ 9A0FF5036E8B2EB2013B91E8 /* Router.ice in Sources */,
+ C5860232CEDB6BFC8C019D18 /* RouterF.ice in Sources */,
+ 3CC13D43A7B2E44BAE751500 /* ServantLocator.ice in Sources */,
+ B3437BA13D399428737F1B65 /* ServantLocatorF.ice in Sources */,
+ 4CF2C72A53852238F87D4908 /* ServantManager.swift in Sources */,
+ 2FDD95D76E0A825FD90787B5 /* SliceChecksumDict.ice in Sources */,
+ 90D27EB960C1DFF768C002E0 /* SlicedData.swift in Sources */,
+ 39B5700E0EEECD0915EDDE7F /* SliceFlags.swift in Sources */,
+ 8A18CD852FA002B4E62CC507 /* SliceInfo.swift in Sources */,
+ B4E0F74CA14310D4CDD50A80 /* UnknownSlicedValue.swift in Sources */,
+ 19DCE56D3DA0DB085635E0E5 /* Util.swift in Sources */,
+ 6302E7A27AF4DA667B966172 /* Value.swift in Sources */,
+ 7513860F5F55F0AAC4F8869E /* ValueFactory.ice in Sources */,
+ 1E3B3C83A358CB63C4BE03F5 /* ValueFactoryManagerI.swift in Sources */,
+ B1AA65B6C09980D8E0B3A109 /* Version.ice in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ C3691D1DBC8CE0D7BA7BFB8B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 0CE48A28E4A1C709526351C5 /* AllTests.swift in Sources */,
- 55F23CB97D53738787940D52 /* Client.swift in Sources */,
- 4C3824C2F820CBF01F606420 /* Server.swift in Sources */,
- 6558B916E9007EAB38EAC202 /* Test.ice in Sources */,
- 2CC05427029FC5C94810545C /* TestI.swift in Sources */,
+ 1A65BEB1F9E93A971AC7DA75 /* ServerAMD.swift in Sources */,
+ 8C80DB0C064572E763CE81B4 /* TestAMD.ice in Sources */,
+ BD9BEB3C9170FB8F6602A3E5 /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BC0F4BDC51D5F1894171BF41 /* Sources */ = {
+ C5AB6C8350F24C52563C91A6 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 08A586EE6A3C5F99771378AB /* AllTests.swift in Sources */,
- 761EC015470DBC155131FC21 /* Client.swift in Sources */,
- 6ED30242B77E6169037B5EE6 /* Server.swift in Sources */,
- ED174DA0C5726C7F0AAB0DFF /* Test.ice in Sources */,
- 7923C416400F47B059780FB0 /* TestI.swift in Sources */,
+ AABA5D76A6A478B28D2A5D5E /* AllTests.swift in Sources */,
+ 2BFFCDEFFA4791217556462D /* Client.swift in Sources */,
+ E1FC800043DFA9F22C8E7002 /* Collocated.swift in Sources */,
+ B1BD46CA891616FD5458373A /* Server.swift in Sources */,
+ C5AD00C0143EF5F56C5808D8 /* Test.ice in Sources */,
+ D793885DA55892463ABB63EE /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BC65AED5F5A2C495FF3BD500 /* Sources */ = {
+ C63CA19E78F7AACF6499F16E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 83639B8515CF762B2C17BE05 /* Metrics.ice in Sources */,
- 6503552BC1503EDCB9CE9D2E /* PermissionsVerifier.ice in Sources */,
- 785D4A0DB5DE2E26B05F036A /* PermissionsVerifierF.ice in Sources */,
- 1B9E66DB9FB34291A2B94E75 /* Router.ice in Sources */,
- 00F422904A625A9F4FF94969 /* RouterF.ice in Sources */,
- FF05349A44CD7A81175C0518 /* Session.ice in Sources */,
- F06439AB574755C2A4FF4058 /* SSLInfo.ice in Sources */,
+ 226237BEFE016871484CA0BD /* ServantLocatorI.swift in Sources */,
+ 90DE214D889583307D941AD4 /* ServerAMD.swift in Sources */,
+ CB12CC650E52314C5306692A /* TestAMD.ice in Sources */,
+ EB2180AF882F02BE0063DC81 /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- BE032C9A2318BDCFB3266B04 /* Sources */ = {
+ C6C094FEDD11DE44D8BE4803 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- CBA632BEB6E73F0272DA0C95 /* AllTests.swift in Sources */,
- 640AFD74ED41D88BB148E04B /* Client.swift in Sources */,
- EC1C9BE54993CFEB39A57CF9 /* Collocated.swift in Sources */,
- 214DFBE3E8110E6FBFE456EB /* ServantLocatorI.swift in Sources */,
- 44CA0C666ED4D0C49AB8EED5 /* Server.swift in Sources */,
- 0070621DDA54D90071353B1A /* Test.ice in Sources */,
- C14B9FE2080964AF572C02DF /* TestI.swift in Sources */,
+ 3FA85C13DBB8D5D9FDA23EF8 /* AllTests.swift in Sources */,
+ 80C1E88C5B1540EA539D608C /* Client.swift in Sources */,
+ B98A87E709E4175C97115F12 /* Test.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- C07D2A9A378B181FACED955F /* Sources */ = {
+ C8736F5BFA8FA3A2405C66BC /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 23DE1CF914C10ABD29F17D23 /* IceLocatorDiscovery.ice in Sources */,
- 603AED11305ACD0E28F7B8F5 /* PluginI.cpp in Sources */,
+ 7F5E97B904B61593783C370D /* ServerAMD.swift in Sources */,
+ 700DE4CC1164FFB624928C2A /* TestAMD.ice in Sources */,
+ 577767CC2958909C8F6EDF49 /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- C376B0C44485617839C0036D /* Sources */ = {
+ C9648CAAEF1F19C47BC1C742 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 1CFE06CC24E4A963F2E6ADB4 /* ServerAMD.swift in Sources */,
- E120A04A5ABF3212182F137C /* ServerPrivateAMD.ice in Sources */,
- CEB476DEDC668A0C69419980 /* TestAMD.ice in Sources */,
- 8F30C85D0C80E51F4320E765 /* TestAMDI.swift in Sources */,
+ 481E4FF2EB7A8AC7817AB819 /* AllTests.swift in Sources */,
+ 4EFE48ADB15DC73DAE9D8A25 /* Client.swift in Sources */,
+ 545A45EF7922FF276B8B86B0 /* Server.swift in Sources */,
+ 2FCF5F07732A56A488FC30C7 /* Test.ice in Sources */,
+ 1F4E66C2A2AAA1E9AA7895CD /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- C4C7D367623F7F7358FF9B14 /* Sources */ = {
+ CE313DF8750DC39407987183 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- BE5E2762741B5ADFBA5CA0D7 /* AllTests.swift in Sources */,
- 4AD4842C6DA97559622CC71F /* Client.swift in Sources */,
- 3ED1E469F552077BA338B66E /* Test.ice in Sources */,
+ B55CD04B6B0D9F880554A947 /* ConnectionInfo.ice in Sources */,
+ 2C97FA07CEC0D2EC676E0BFC /* Connector.mm in Sources */,
+ 682AED950722718B3064DD66 /* EndpointI.mm in Sources */,
+ 4DDFD0F3F804C3EED4D7FD1B /* EndpointInfo.ice in Sources */,
+ 67EC1651434C90B177CC2FCA /* Transceiver.mm in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- C543947986D12980B2BBA885 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 29CCE37FA2FA4DB16389035A /* Acceptor.cpp in Sources */,
- EDBA0A78CA9FFC5D9930AC76 /* ACM.cpp in Sources */,
- B78EEA6AEC06C881823D58EA /* ArgVector.cpp in Sources */,
- 6B26878EB45EB14EBCF96988 /* Base64.cpp in Sources */,
- AF1C01631C288B9A063BC455 /* BatchRequestQueue.cpp in Sources */,
- B6BA7E95D08CF0BCFD65BE8A /* Buffer.cpp in Sources */,
- 3F67DEE924A9B1A86310455F /* BuiltinSequences.ice in Sources */,
- 1A65CEC1C37315AAF56E5C83 /* CollocatedRequestHandler.cpp in Sources */,
- EE5D72218EDDC8AAF4478781 /* Communicator.ice in Sources */,
- C80ED3FA4FC251BEA3EF7FF2 /* CommunicatorF.ice in Sources */,
- EBB695899486F8E2BBCDFE48 /* CommunicatorI.cpp in Sources */,
- 7F70DA48F204FC66F1053437 /* Cond.cpp in Sources */,
- 170691E111BB6C70FD49B552 /* Connection.ice in Sources */,
- 3B65B1809B29065930169C83 /* ConnectionF.ice in Sources */,
- C3E9684A00DD334E0E703D67 /* ConnectionFactory.cpp in Sources */,
- 77244686C7A4170C5AB0DCA6 /* ConnectionI.cpp in Sources */,
- EBB6B7448C3098593684E393 /* ConnectionRequestHandler.cpp in Sources */,
- 9A186DDF9ECC5A18A39628CD /* Connector.cpp in Sources */,
- 54EFAD7E12E193F30EB15500 /* ConnectRequestHandler.cpp in Sources */,
- 097CA20550662FDDFA36595B /* ConsoleUtil.cpp in Sources */,
- 8E742E8FABF8E67CF0892A3A /* CountDownLatch.cpp in Sources */,
- EF5DA5FD92EA08CDF62F2C26 /* CtrlCHandler.cpp in Sources */,
- B4A404571B785388223D488F /* Current.ice in Sources */,
- 39226317391BA3B3B017FF50 /* DefaultsAndOverrides.cpp in Sources */,
- AF914883661479EE2005C201 /* DispatchInterceptor.cpp in Sources */,
- 788166A177E99EBA476B2FAF /* DynamicLibrary.cpp in Sources */,
- 85BB1690D87F444AE5F98D22 /* Endpoint.ice in Sources */,
- C1494E22B31C8E9A40A68A43 /* EndpointF.ice in Sources */,
- 98AABE262A4428383B116F3E /* EndpointFactory.cpp in Sources */,
- EC1E025B12AC8E2F2E92E585 /* EndpointFactoryManager.cpp in Sources */,
- 88535F107BDD5E0E4367B555 /* EndpointI.cpp in Sources */,
- 4A6AC9DE22EC8B3E12666B11 /* EndpointTypes.ice in Sources */,
- ACC856EAE367A0225C8E21C4 /* EventHandler.cpp in Sources */,
- 99AA4B20D773C243AC47B972 /* Exception.cpp in Sources */,
- AC1D1B6CD1D8AA221498CCB1 /* FacetMap.ice in Sources */,
- EFF157CEA5E3904414400BCB /* FactoryTable.cpp in Sources */,
- CDA7DDA6CD73C87D9938E24C /* FactoryTableInit.cpp in Sources */,
- E19B80F044522E52A9B80A64 /* FileUtil.cpp in Sources */,
- 750A26A721C8B84056389E48 /* HttpParser.cpp in Sources */,
- F32C8570C1CB5E50DB2A6C47 /* IconvStringConverter.cpp in Sources */,
- 642B55420A967F22E3DDBF0C /* Identity.ice in Sources */,
- 6EEA4EED28C5D43552DA6492 /* ImplicitContext.ice in Sources */,
- 33167221DB8AF7ADA0217F6F /* ImplicitContextF.ice in Sources */,
- 5F6493B8C8C2EB567D390A40 /* ImplicitContextI.cpp in Sources */,
- 276E84589152303191500328 /* Incoming.cpp in Sources */,
- 7D677CCFD16F3333251C0067 /* IncomingAsync.cpp in Sources */,
- D7986ABA9A3E8A67E8735DD2 /* Initialize.cpp in Sources */,
- 6952C30C540827877DF4B06D /* InputStream.cpp in Sources */,
- B2E55554F4A196D93E63209C /* InputUtil.cpp in Sources */,
- 002B4B51CE7F23C20EB992F3 /* Instance.cpp in Sources */,
- 7C5AF2BF3DFC5FB66C11F223 /* Instrumentation.ice in Sources */,
- 27B90EFADD014F6C52EF6666 /* InstrumentationF.ice in Sources */,
- EC9AA66008FA5BF882AD5C63 /* InstrumentationI.cpp in Sources */,
- 9E8F100CEE002672F4D21E84 /* IPEndpointI.cpp in Sources */,
- 1C05D8AAAC0FA742B4567E58 /* LocalException.ice in Sources */,
- 130480896A56271D2BDDAEBC /* LocalObject.cpp in Sources */,
- D9B56600DEE8EA6B24CEAA98 /* Locator.ice in Sources */,
- 12EC5805B2C9C9040226FDA0 /* LocatorF.ice in Sources */,
- D7B3E46711A5315C5C38CCAD /* LocatorInfo.cpp in Sources */,
- 6490A06B380484887D1E7E99 /* Logger.ice in Sources */,
- 31A8D950C4B1CC2D58E6D062 /* LoggerAdminI.cpp in Sources */,
- AC6C8F5A6B384888CD6A623E /* LoggerF.ice in Sources */,
- F854570046097CA90BE055CF /* LoggerI.cpp in Sources */,
- 642E773D8D7FF82CA52A4BB5 /* LoggerUtil.cpp in Sources */,
- DCE190EB388C831C965DDBF8 /* Metrics.ice in Sources */,
- 17927C9F2C24CD0434DDBC15 /* MetricsAdminI.cpp in Sources */,
- 9743399E90C250F9E92AE631 /* MetricsObserverI.cpp in Sources */,
- F9844B205C3BAB092D5A1D2E /* MutexProtocol.cpp in Sources */,
- 091088D7936D389D5F01A6A7 /* Network.cpp in Sources */,
- DBC02A184546EACC41500B4F /* NetworkProxy.cpp in Sources */,
- 2D8B0AAC5FAE65B24C1200A6 /* Object.cpp in Sources */,
- 586F67E83B4AC45C60895F02 /* ObjectAdapter.ice in Sources */,
- 9A6C60AD4A383DFE6EFBB063 /* ObjectAdapterF.ice in Sources */,
- C53A7B0F9353E22328C21366 /* ObjectAdapterFactory.cpp in Sources */,
- 2D8ABB3AF423D02536D8EDCE /* ObjectAdapterI.cpp in Sources */,
- 69B79A0433006704B21A6C83 /* ObjectFactory.ice in Sources */,
- 5EC4C33DCDC87657720B9C87 /* ObserverHelper.cpp in Sources */,
- 59CA677DF995495D4B1A4D76 /* OpaqueEndpointI.cpp in Sources */,
- 9D47C81EA4C359302C07BD29 /* Options.cpp in Sources */,
- D776AB0DC73B366E7DF921DC /* OSLogLoggerI.cpp in Sources */,
- D35C59C86C6CABEDC43373E9 /* OutgoingAsync.cpp in Sources */,
- 62B3ECB6FA5947A660DAAA4A /* OutputStream.cpp in Sources */,
- BEA9F2022CAB05445EDAE981 /* OutputUtil.cpp in Sources */,
- 5A8B8184CBC86B47A7202BC8 /* Plugin.ice in Sources */,
- 609F394F7709CB431106626C /* PluginF.ice in Sources */,
- D929699A91BADA4771EC48F9 /* PluginManagerI.cpp in Sources */,
- A2663F13085DC6EE69965B2E /* Process.ice in Sources */,
- BA63B9DCE996CEF6A166AD05 /* ProcessF.ice in Sources */,
- 596DEA01085B21ED05A9CC45 /* Properties.ice in Sources */,
- 89195EC516C16B5740621FE0 /* PropertiesAdmin.ice in Sources */,
- B4F0A88C37A32E081226F08F /* PropertiesAdminI.cpp in Sources */,
- 9F406EA5B6FBDE9700D3224B /* PropertiesF.ice in Sources */,
- 8D15B9941004F1A577E56CEE /* PropertiesI.cpp in Sources */,
- 78109C3486535A002582E4D8 /* PropertyNames.cpp in Sources */,
- 22CB82F9FC29A40A1A5062BD /* Protocol.cpp in Sources */,
- 2ADF6DEA5C6AA882731872CE /* ProtocolInstance.cpp in Sources */,
- 891C91DF3632196214D0B7A5 /* ProtocolPluginFacade.cpp in Sources */,
- 6EF2EB32DBA9B09522E6B1C0 /* Proxy.cpp in Sources */,
- 2934EDEBC40A2BC0C764D831 /* ProxyFactory.cpp in Sources */,
- 2A6F11B7BB7745D9D239CDFC /* Random.cpp in Sources */,
- 34A4DFC2D94D87419C9E5AFE /* RecMutex.cpp in Sources */,
- F669CA7D10227A4E18153756 /* Reference.cpp in Sources */,
- 35BCAF06C7BA9B1302309927 /* ReferenceFactory.cpp in Sources */,
- 283ADF69092FE038DF57DB38 /* RegisterPluginsInit.cpp in Sources */,
- E8675C61D367FC60D4742BBA /* RemoteLogger.ice in Sources */,
- 488514E943CDEECB4588875A /* RequestHandler.cpp in Sources */,
- ADEF3E98E381F4712262A991 /* RequestHandlerFactory.cpp in Sources */,
- BA6735E014000B3B32E4F6E6 /* RetryQueue.cpp in Sources */,
- ABE22B535412338252E46332 /* Router.ice in Sources */,
- DC5401FB1C4B91A592551D31 /* RouterF.ice in Sources */,
- 4B2EB506B67F56C31A3CA134 /* RouterInfo.cpp in Sources */,
- FD7DBE0DA477ED70E86E802D /* Selector.cpp in Sources */,
- 894717415CE8670F958BE142 /* ServantLocator.ice in Sources */,
- 29864D3CDA4DF760EBBE3859 /* ServantLocatorF.ice in Sources */,
- 86AF70F6D8DB4435A2F7A712 /* ServantManager.cpp in Sources */,
- FCF3EBF61848FAB21DDA34DD /* Service.cpp in Sources */,
- 3B3F1C777C64087BE211E7A7 /* SHA1.cpp in Sources */,
- 8A94F78C7761A3839CAD1E28 /* Shared.cpp in Sources */,
- 9799C395B67768E7AB9ECA68 /* SliceChecksumDict.ice in Sources */,
- BEA9B7722DFA7C95E9AB7693 /* SliceChecksums.cpp in Sources */,
- A99CB209DC7D9ED75029DC54 /* SlicedData.cpp in Sources */,
- EB83649A83BB4F8D74F3C16E /* StreamSocket.cpp in Sources */,
- BD2C744B8777A8E116599FE4 /* StringConverter.cpp in Sources */,
- 83211946775D1E21DA20BE77 /* StringConverterPlugin.cpp in Sources */,
- 1AE9127B568423D32D44346D /* StringUtil.cpp in Sources */,
- 50F81838E6DC21149DE0DF93 /* SysLoggerI.cpp in Sources */,
- 615FC455E6733A54DD2ED2F8 /* SystemdJournalI.cpp in Sources */,
- E3708D23EC452CEAC55EDA56 /* TcpAcceptor.cpp in Sources */,
- A4ADC2F3DEA003CEA38D801D /* TcpConnector.cpp in Sources */,
- CB2928680D93E44E3B33E1E6 /* TcpEndpointI.cpp in Sources */,
- 4C8E583897BCD2E30FA05A62 /* TcpTransceiver.cpp in Sources */,
- DFF6633F927D3A20F6917961 /* Thread.cpp in Sources */,
- 58077432CE35511159DC691D /* ThreadException.cpp in Sources */,
- 13368126ABF2435E00241C3D /* ThreadPool.cpp in Sources */,
- 8D3F9714B8C5C2DBADFC47DC /* Time.cpp in Sources */,
- 0A1E9C080FC5BCE647B99CEF /* Timer.cpp in Sources */,
- AD8740829AA2EFD92599603E /* TraceLevels.cpp in Sources */,
- CDBAB764092FE81CE49C4B5F /* TraceUtil.cpp in Sources */,
- 8AF0355E332538FCA5552A77 /* Transceiver.cpp in Sources */,
- 4C1D6BEEB72D8985E0E2D469 /* UdpConnector.cpp in Sources */,
- 06E3CCC4965BC5D8977239DD /* UdpEndpointI.cpp in Sources */,
- A1A620E9DB84462184315B22 /* UdpTransceiver.cpp in Sources */,
- B8B644B9D0B01CF8E9F841B7 /* UtilException.cpp in Sources */,
- 9FCA19443E13F4279D9F7208 /* UUID.cpp in Sources */,
- 23FC3693AD4E447DC17B7975 /* Value.cpp in Sources */,
- 763E3AF02CCB2E6F66942804 /* ValueFactory.ice in Sources */,
- B9FAEF1DDAF948A7EDD38037 /* ValueFactoryManagerI.cpp in Sources */,
- 8D69AAB435F0F766FDBF30C2 /* Version.ice in Sources */,
- 3F24AD36C3CC55805543A803 /* WSAcceptor.cpp in Sources */,
- 021174749D707C869B7A369F /* WSConnector.cpp in Sources */,
- 4020AC1CA075B39038D78E9A /* WSEndpoint.cpp in Sources */,
- 4DABC6C69281C19B49C0C26D /* WSTransceiver.cpp in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C8FEA612160E1EDA60C828A5 /* Sources */ = {
+ D059A491F4B523B8B7291FD9 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- DD474968DD7B96D46E8D94A3 /* AllTests.swift in Sources */,
- 15B8237C5B5B0022B1DE85D1 /* Client.swift in Sources */,
- 868DF4AD48DE8CE6024E04C2 /* Server.swift in Sources */,
- 5AF444445AECB876FA7C88A6 /* Test.ice in Sources */,
- 5BC0A25B00B652E3798D6BC3 /* TestI.swift in Sources */,
+ 635F9AC84CAB10D873B9E0D0 /* AllTests.swift in Sources */,
+ 1891FD6E50CD144CF05F5DBB /* Client.swift in Sources */,
+ 5DCB2C763AFF10B3BBA269A3 /* ClientPrivate.ice in Sources */,
+ 96402716757CA9126D8EDA6D /* Server.swift in Sources */,
+ 473E807E02F4A5CFB624F20B /* ServerPrivate.ice in Sources */,
+ 2ACEE3D27ABD032F527136F9 /* Test.ice in Sources */,
+ 3C7C32A40A6138018A174792 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- CD1DD3C806C65D266912F4C8 /* Sources */ = {
+ D0C296C719DB94BD6AF47575 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- EE27DB624E677D4ED83C5F7E /* IceLocatorDiscovery.ice in Sources */,
- 57F539B946F0DFC72A65B4BD /* PluginI.cpp in Sources */,
+ 02F270A116A6B2CB9981710D /* IceLocatorDiscovery.ice in Sources */,
+ D701AACEEFFC1FB706465546 /* PluginI.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- CFCD67B388613BF6A57486F2 /* Sources */ = {
+ D1FE0E9DAF4CD03B9D1BBD72 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- B61E39FEE7B4AB8A92EDCA2F /* AllTests.swift in Sources */,
- CEBD1FEFD121958796BC2B5C /* Client.swift in Sources */,
- 6095A2C65D9C1FEBEE0E3371 /* Collocated.swift in Sources */,
- CE1ADB64AFE1A2E42A51F709 /* Server.swift in Sources */,
- 5AA8B193C298FBD8A466552A /* Test.ice in Sources */,
- 2465182F3E5F2011BEF005A1 /* TestI.swift in Sources */,
+ 05DA30DC9883E4C4A7C0E2C0 /* AllTests.swift in Sources */,
+ FC5005DEFBC68A014AA21FC1 /* Client.swift in Sources */,
+ 2446B152981C663702DB88A2 /* Collocated.swift in Sources */,
+ 6A7E0EA07FB18510CDEFE0BC /* Server.swift in Sources */,
+ 8EC344A3B9294C3C6A8E8DA5 /* Test.ice in Sources */,
+ 158163675A76988285082E87 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- D2DE0FAB9048DE1241A19B3D /* Sources */ = {
+ DF3E0A9757026E51E93E57CD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 0CAA00030C5BD8F79E51DD0D /* AllTests.swift in Sources */,
- 5F44424CEA4CBB33E27BB2F1 /* Client.swift in Sources */,
- 39DE1C8393E7435766F59ED0 /* Collocated.swift in Sources */,
- 5FD87DF90241E6CC9FD36D5C /* ServantLocatorI.swift in Sources */,
- 270B7042608ADBF44242D91F /* Server.swift in Sources */,
- 95E16A6701D5A70C77D9635D /* Test.ice in Sources */,
- 8AD5D0E5AD8EC604ED3671E6 /* TestI.swift in Sources */,
+ 2008B83A4AAF7538F44EE304 /* Clash.ice in Sources */,
+ 3D014A8FE5588A6ECCCC790A /* Client.swift in Sources */,
+ 0F3A0E227168A0546C34ADD2 /* Key.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- D3556551D8047618F01C6EFC /* Sources */ = {
+ DF52695754AFC111F5C6AA65 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 1F9472ABEA6EE0216BFC7776 /* AllTests.swift in Sources */,
- C86D38ED757D8A03EC07C642 /* Client.swift in Sources */,
- 31E4A35D5D72F6550932496D /* Collocated.swift in Sources */,
- F63E5F3EDF21C4942081A626 /* Server.swift in Sources */,
- F484AEE19341857AD40FDC65 /* Test.ice in Sources */,
- B117263F59BA4765F0D5E70A /* TestI.swift in Sources */,
+ A8AFB99B128FDC6047F07919 /* AllTests.swift in Sources */,
+ 8D458FCEC59B6D372E7ADEF1 /* Client.swift in Sources */,
+ 57A137216C2E09F887CC7F92 /* Collocated.swift in Sources */,
+ 8B8CDF32D4FEC5ABC530B372 /* Server.swift in Sources */,
+ D3400C55090C95422AB634F9 /* Test.ice in Sources */,
+ DF66B201FEDE9466A13B5F21 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- DFDCC2C4C597F8CB6CA25EF3 /* Sources */ = {
+ E5A173120D4551AA1A379621 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 750B36F9818F802F75F5064E /* ConnectionInfo.ice in Sources */,
- 0A0B9D26FF1F4C0534F99FE8 /* Connector.mm in Sources */,
- 67371FE4C62F1A29EA73635F /* EndpointI.mm in Sources */,
- 681379F69647D2A420E40DC8 /* EndpointInfo.ice in Sources */,
- E113540BCDF491FD34E4A986 /* Transceiver.mm in Sources */,
+ 5B7D4B4902F49FF5BE7983DC /* Client.swift in Sources */,
+ 9FF16A57C13FC80987E5B652 /* Test.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- E25567BDB6A8DA21B9EF9008 /* Sources */ = {
+ E602F87A1621E53F99DC6159 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 07D23F325FD34745EECD49F2 /* AllTests.swift in Sources */,
- 7F6C7BF618900293EE746C1F /* Client.swift in Sources */,
- B4655B8BE90D1C15843140E2 /* ClientPrivate.ice in Sources */,
- 69F51AC2B241264F5CF40A9A /* Server.swift in Sources */,
- 36A9A6DE46DFF03F4AEE930D /* ServerPrivate.ice in Sources */,
- 46947EC2E9AE88C7E3790BBF /* Test.ice in Sources */,
- DCB2A416F5345DFFCCBAAF1E /* TestI.swift in Sources */,
+ CB00F208510BF5C08899D417 /* IceStorm.ice in Sources */,
+ C8EA01532AC8B636314F051D /* Metrics.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- E329ED17E61E16808B33EF9E /* Sources */ = {
+ E65EF8B13225DD224891277E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 8DE9E417AD6EB7537B91EC97 /* AllTests.swift in Sources */,
- 696FD382D56F1887DC2E5CE5 /* Client.swift in Sources */,
- BC01ACA1BFCE4D7A5065E63B /* Server.swift in Sources */,
- 5AF175E819610CD0C1166F34 /* Test.ice in Sources */,
- 61F05A86627116302E09E9DE /* TestI.swift in Sources */,
+ EF98EB066563709DE0797727 /* ServerAMD.swift in Sources */,
+ D6B74E0FDD8EDCAD51F2E52D /* TestAMD.ice in Sources */,
+ 705B5C36A641AD3091706603 /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- E7A519FDC6DDE5D3B00D72DB /* Sources */ = {
+ E6F271C1E2A69B1F3317690E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 148774CCF7C941B058C2C443 /* AllTests.swift in Sources */,
- 26EB5E3E2F52261CB4B3A649 /* Client.swift in Sources */,
- DA121A3EC02D415237E9FFF8 /* Server.swift in Sources */,
- 0A4AA5D48CEA9FEB0FA346E2 /* Test.ice in Sources */,
- 22203943354A017FA28C42EA /* TestI.swift in Sources */,
+ 70867C5450375E0BE1850AC8 /* ServerAMD.swift in Sources */,
+ 4C8EECFE8B765886925B232B /* ServerPrivateAMD.ice in Sources */,
+ 6096784C94D4DFAE9BC82441 /* TestAMD.ice in Sources */,
+ 4C0AD01AE868084BE23AE429 /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- EEC4A0F509FFBD740CD6C901 /* Sources */ = {
+ E7742EF6F28C2ADFC171C04C /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 23B8ED6B8358489EC7D29881 /* AllTests.swift in Sources */,
- A0EEFB807B34A8ECE4682A6A /* Client.swift in Sources */,
- 92DFD3619F4AAA66A13EAD07 /* Test.ice in Sources */,
+ C1CBA0D63DAB5D65A47F7C75 /* AllTests.swift in Sources */,
+ 7324400D4F1546E4BE78ADF0 /* Client.swift in Sources */,
+ 56EE4E9733FE43FFE8F27532 /* Collocated.swift in Sources */,
+ 4EC6C67A39E5FB8429FFF279 /* Server.swift in Sources */,
+ 2C14E5923DBDB61691367EFC /* Test.ice in Sources */,
+ E8C827D3F824673D5144E7CD /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- EFB2DAD168F33E1D58F96E5F /* Sources */ = {
+ EB27FA1A1721942EAE540FF8 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 47A3869D2C04F8C00F8C4D3F /* AllTests.swift in Sources */,
- F39FE4FD3585375833A7C747 /* Client.swift in Sources */,
- 1955F65D66BFF62B4EAF42D6 /* Collocated.swift in Sources */,
- D8C06F9F0B5D4C1402BB1F54 /* Server.swift in Sources */,
- DB87CF4B6595E9DD507D0DF4 /* Test.ice in Sources */,
- 3E368C8CD09EC556262C6534 /* TestI.swift in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F3C88FD4709DC66F219FA771 /* Sources */ = {
+ FC9BF065D9DC314746CACF17 /* AdminFacetFactory.swift in Sources */,
+ 7A3C2DF1754949E527A2C1F3 /* Blobject.swift in Sources */,
+ C27DF71B31642BAC4D569538 /* BlobjectAsync.swift in Sources */,
+ 06F2C3559E2F9F766D8BA05E /* BuiltinSequences.ice in Sources */,
+ E84BC44DF0BEA23E9FA52B34 /* ClassResolver.swift in Sources */,
+ 98E688D280B8C581245D6878 /* Communicator.ice in Sources */,
+ 07170C0A556B0FD9E814C41E /* CommunicatorF.ice in Sources */,
+ 6A470D697D1509775528E78D /* CommunicatorI.swift in Sources */,
+ 714D6187BA070DEE2A9F1A71 /* Connection.ice in Sources */,
+ E53784D0F117226C310AF71F /* ConnectionF.ice in Sources */,
+ 36EF6FF7F167ED91C9D223E5 /* ConnectionI.swift in Sources */,
+ 7A9A94471F465147DDE788FA /* ConnectionInfo.ice in Sources */,
+ F90A8BF5A1A98969C79601EC /* ConnectionInfo.ice in Sources */,
+ 992770A76014224790280714 /* ConnectionInfoF.ice in Sources */,
+ 871E57606F7704B4F1934CE5 /* ConnectionInfoFactory.swift in Sources */,
+ 30DF301A69678F517FDB74AE /* Current.ice in Sources */,
+ D881B983EBE2EF2082D9963A /* Endpoint.ice in Sources */,
+ 645383E9D3959A24076847A9 /* EndpointF.ice in Sources */,
+ 7A0620C42DC70A16056AA38A /* EndpointI.swift in Sources */,
+ 2776F23CF8380600744A84DC /* EndpointInfo.ice in Sources */,
+ 2610D127AA77C3F53681AF7D /* EndpointInfo.ice in Sources */,
+ 02EA3398D24681F9729B18C8 /* EndpointInfoFactory.swift in Sources */,
+ AB8AFAEB347921B93D467000 /* EndpointTypes.ice in Sources */,
+ 1F6701C5EEDEE16786E4CF6B /* Exception.swift in Sources */,
+ 1502BE2438226C1A154C0E28 /* FacetMap.ice in Sources */,
+ A3187DA4A161BF9FA44C1C11 /* FormatType.swift in Sources */,
+ D4FB0A90902608C52ED78D5E /* Identity.ice in Sources */,
+ 941A65E50AA772218BAAA79F /* ImplicitContext.ice in Sources */,
+ 9636A15DE28B609FD95609A3 /* ImplicitContextF.ice in Sources */,
+ 287921C512740903FA5E6E58 /* ImplicitContextI.swift in Sources */,
+ FAC0B32F275D57B8F89DC053 /* Incoming.swift in Sources */,
+ 5DD8AF23C78B257C82F0A747 /* InitializationData.swift in Sources */,
+ F3E097F41C91FB7F0C6D9DA0 /* Initialize.swift in Sources */,
+ AA1E40CE1223B0C0B12B41DF /* InputStream.swift in Sources */,
+ F6C541378763E159844F260C /* Instrumentation.ice in Sources */,
+ A163C5D4F853EBBC69BD50EA /* InstrumentationF.ice in Sources */,
+ A105BE0B87C4BE879170AD53 /* LocalException.ice in Sources */,
+ 2BFDE648166E3018ADB52231 /* LocalExceptionDescription.swift in Sources */,
+ BCF9379875BB3DE5B34736D5 /* LocalExceptionFactory.swift in Sources */,
+ 3E6DBB463F337CEC2A459771 /* LocalObject.swift in Sources */,
+ 4EFFB2A6C07DDDD71FC61D62 /* Locator.ice in Sources */,
+ 94AE9DD35483CF6E9F9D9D8E /* LocatorF.ice in Sources */,
+ 911786EDCB8CEF1CEA3DDF44 /* Logger.ice in Sources */,
+ 032FC90345DC28837F915955 /* LoggerF.ice in Sources */,
+ 10F1DECA0169C3C52F2AD4E0 /* LoggerWrapper.swift in Sources */,
+ C1ACBB05A33FD75D2B3D9716 /* Metrics.ice in Sources */,
+ 1037823E33E84C2173D1DCF0 /* Mutex.swift in Sources */,
+ D12F8D34FEFC174FC7375C11 /* NativePropertiesAdmin.swift in Sources */,
+ A844AA5D8CAB8850C725330C /* Object.swift in Sources */,
+ E20FD3B4CE8C8A3600BB7D03 /* ObjectAdapter.ice in Sources */,
+ A725392D944D30664F720B5E /* ObjectAdapterF.ice in Sources */,
+ 77098DD2B819DC12C04C8537 /* ObjectAdapterI.swift in Sources */,
+ 0974BBB1144A88772F5A612D /* ObjectFactory.ice in Sources */,
+ CD40D4F219D2D53990DE1CFA /* OptionalFormat.swift in Sources */,
+ A29A521AE5E59D702C1280B3 /* OutputStream.swift in Sources */,
+ 8C77455E001F37BD45AD98EE /* Plugin.ice in Sources */,
+ 80C42EE7E3B7572F9DBCEE5F /* PluginF.ice in Sources */,
+ AD9056AD62287E1EF513D286 /* Process.ice in Sources */,
+ 1216034E80002FCC684F44E6 /* ProcessF.ice in Sources */,
+ 3B63E934EC19B165DA50F0F7 /* ProcessI.swift in Sources */,
+ E1924BC5C1C718135DBDDFB2 /* Properties.ice in Sources */,
+ 09E11241C8E5CD42EBE7A152 /* PropertiesAdmin.ice in Sources */,
+ FF208584BD04F50300AF4030 /* PropertiesAdminI.swift in Sources */,
+ 8D05172680DF6C9F03A21856 /* PropertiesF.ice in Sources */,
+ D617490B4CA5C7A1920382B8 /* PropertiesI.swift in Sources */,
+ FB66E9984020217B0F679E35 /* Proxy.swift in Sources */,
+ 6BCB57E5C77E56DC6E5BBE00 /* RemoteLogger.ice in Sources */,
+ 5C255F6BAB42162020A64DD2 /* Router.ice in Sources */,
+ 50FC11A579E823A6CE7D34DD /* RouterF.ice in Sources */,
+ 9288123451FE48CDD5B8A16A /* ServantLocator.ice in Sources */,
+ 5A9F355C9A7982F4699B7221 /* ServantLocatorF.ice in Sources */,
+ E79E897842121850A5AD1E50 /* ServantManager.swift in Sources */,
+ 844DE08FE4B28A8FB37C760A /* SliceChecksumDict.ice in Sources */,
+ 22CEF1922E8EE385E1E3AE0B /* SlicedData.swift in Sources */,
+ 5EF420F64CC50E2E86014ED1 /* SliceFlags.swift in Sources */,
+ 806C749DC081459438AE7721 /* SliceInfo.swift in Sources */,
+ 9DDF913FC286874A735B8942 /* UnknownSlicedValue.swift in Sources */,
+ EF3698926D95FDB5A8442A10 /* Util.swift in Sources */,
+ FBD579475D7163CD4190719D /* Value.swift in Sources */,
+ F2190EBC6AB8FBB17894B7D9 /* ValueFactory.ice in Sources */,
+ EE6F3E58A003CB97329D68D5 /* ValueFactoryManagerI.swift in Sources */,
+ BBC78A039FAC9C0C35451EC6 /* Version.ice in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ EBCB845104B7CA5323964461 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 0E11037FB96714061852E600 /* ServerAMD.swift in Sources */,
- 3BDDFD833776B03A14CCE602 /* TestAMD.ice in Sources */,
- 7F4B5B56DB560EBDCD27282A /* TestAMDI.swift in Sources */,
+ 523D1BAB376E4C0BD93D34CC /* Metrics.ice in Sources */,
+ 30AA75DB96928983A4C6344A /* PermissionsVerifier.ice in Sources */,
+ A4AAED45962C3AAFCE6B54D4 /* PermissionsVerifierF.ice in Sources */,
+ F17B04225A873E61024EDE27 /* Router.ice in Sources */,
+ 83542F5C0006AA10DEECA43F /* RouterF.ice in Sources */,
+ 5892727EA0F6A3D90AA3C882 /* Session.ice in Sources */,
+ 451FF3B351625B57BC9F8039 /* SSLInfo.ice in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- F4F5E00AE40FBF87ECD5668C /* Sources */ = {
+ EF6747FEDF50E51B13DF5A1D /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 64C41FE8704FC794736200FA /* Client.swift in Sources */,
- F162671414581E9578CB6D45 /* Test.ice in Sources */,
+ 777835659B5C416AF639C591 /* ServantLocatorI.swift in Sources */,
+ 8F766BFE82FA086DF9C859ED /* ServerAMD.swift in Sources */,
+ 8366C667CA0C68F21BBE67BC /* TestAMD.ice in Sources */,
+ 3277980CF43D33E8550CB3DB /* TestAMDI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- F627D711854849F8F48774AD /* Sources */ = {
+ F2FBC50096605178F3FD3435 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 66885675BDD0DD7E2AFB0A35 /* AllTests.swift in Sources */,
- 477DCD400D37825D09A30852 /* Client.swift in Sources */,
- BCC60B099668C4418CDE0ADE /* Server.swift in Sources */,
- 0BF43289F618A298D2FF025E /* Test.ice in Sources */,
- 4B068D9C705A3CF34E061C8C /* TestI.swift in Sources */,
+ 2ABF47C45E4F184A47F91A33 /* AllTests.swift in Sources */,
+ 07DCBD2D2DADA1D2BA7FC383 /* Client.swift in Sources */,
+ D533F808817E381B695972F0 /* Server.swift in Sources */,
+ FB5B1A64FD312DEA34986D18 /* Test.ice in Sources */,
+ B29A11F20BA78103F806FEF6 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- F6BB4EDC12CAA94895EC56B3 /* Sources */ = {
+ F3342E6328D2D09E35712DFD /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- CAD458157BD8D0FD0F587035 /* AllTests.swift in Sources */,
- E410CAEE031A0C509C4357A2 /* Client.swift in Sources */,
- CF2E1019AC786892DF2E6B43 /* Server.swift in Sources */,
- E75E5F17B8FF1F515802CFBC /* Test.ice in Sources */,
- D8A3BA49E17476D54E345278 /* TestI.swift in Sources */,
+ E06730FB92A90CCA20128EAC /* Acceptor.cpp in Sources */,
+ F8220A007E0B10B219EBEFE9 /* ACM.cpp in Sources */,
+ B9D8C644CA5BA60BA7A2007C /* ArgVector.cpp in Sources */,
+ 224CE10B7375720A397AFFA6 /* Base64.cpp in Sources */,
+ 6703AE1F77A122AF1B8257B9 /* BatchRequestQueue.cpp in Sources */,
+ 5FC739B91C70E26217646A4B /* Buffer.cpp in Sources */,
+ 2079F44768905B2516F88678 /* BuiltinSequences.ice in Sources */,
+ 6B1A449E80D6B2D2B9640CF4 /* CollocatedRequestHandler.cpp in Sources */,
+ 805B9A953E4F2201A6CB825E /* Communicator.ice in Sources */,
+ 1615F09106E49AD365FB6961 /* CommunicatorF.ice in Sources */,
+ B14514B83DF5D02984460AA0 /* CommunicatorI.cpp in Sources */,
+ C464501E5FACA6C37BF84D81 /* Cond.cpp in Sources */,
+ ACCFF27B08762E95A4E4D879 /* Connection.ice in Sources */,
+ E76ABB89975B656DA801F41F /* ConnectionF.ice in Sources */,
+ 110822EA0F8EA3A9034AFB58 /* ConnectionFactory.cpp in Sources */,
+ AF9C513C9FA9E2699E6B4EED /* ConnectionI.cpp in Sources */,
+ C01C5BD1A2B3EAE3F9AF4075 /* ConnectionRequestHandler.cpp in Sources */,
+ B496C4C22E97CECDA86FC02E /* Connector.cpp in Sources */,
+ 181C0356014BFA65BDA9D94D /* ConnectRequestHandler.cpp in Sources */,
+ D313E962286990F66F67D308 /* ConsoleUtil.cpp in Sources */,
+ 572FD81423B868EBFAE651DA /* CountDownLatch.cpp in Sources */,
+ 81C30B4678CD456B481230DB /* CtrlCHandler.cpp in Sources */,
+ 478ED57BB1F0E31BED8CBE73 /* Current.ice in Sources */,
+ 64BDA7BC90C075CE05957097 /* DefaultsAndOverrides.cpp in Sources */,
+ 150FC0B15EF25B6A5395B24E /* DispatchInterceptor.cpp in Sources */,
+ 0063875B95544D34CA39EADE /* DynamicLibrary.cpp in Sources */,
+ ACEB0DDFC7B868D6C6650EFE /* Endpoint.ice in Sources */,
+ 6B45093D0D10BDD84E6AC2FC /* EndpointF.ice in Sources */,
+ 21AC5354B56F5F4A32E38107 /* EndpointFactory.cpp in Sources */,
+ 6F2BBF7BF9F27497FB343E40 /* EndpointFactoryManager.cpp in Sources */,
+ DF9528A6E53DE6673AF7FE74 /* EndpointI.cpp in Sources */,
+ 73584B84812112DB0F418340 /* EndpointTypes.ice in Sources */,
+ C9AED5B1EF9F042A65C85223 /* EventHandler.cpp in Sources */,
+ 58ED68C120A1F9A84778074C /* Exception.cpp in Sources */,
+ 09282785AEDEAE4D6A992DA6 /* FacetMap.ice in Sources */,
+ 336B49E146B7E08965973D3E /* FactoryTable.cpp in Sources */,
+ 9CB5CA3D0E8A820D1FBD810E /* FactoryTableInit.cpp in Sources */,
+ 20FE2B376236805F9AE3845E /* FileUtil.cpp in Sources */,
+ 19FB9070E69E02C53817A063 /* HttpParser.cpp in Sources */,
+ 14EA2809DA2364A3D4353D0A /* IconvStringConverter.cpp in Sources */,
+ B4BAAA3192D28E429436B1D1 /* Identity.ice in Sources */,
+ 888466870B3D5D25EFD49A07 /* ImplicitContext.ice in Sources */,
+ CEF9D46DB70633CBAF117ABA /* ImplicitContextF.ice in Sources */,
+ 618CEEB4D830A366DA56EE0D /* ImplicitContextI.cpp in Sources */,
+ 9D60F8BFD4D37E893F9C8EF3 /* Incoming.cpp in Sources */,
+ 3C076139390102CAC5C13C7C /* IncomingAsync.cpp in Sources */,
+ 533B466876A8DB5A25832564 /* Initialize.cpp in Sources */,
+ A97C0CC3E6A346914BBB2C87 /* InputStream.cpp in Sources */,
+ DF8FAE5017E18ECCCCD624F8 /* InputUtil.cpp in Sources */,
+ F9CCEA8BB585C6CDF67F1FB5 /* Instance.cpp in Sources */,
+ 7FF47F6D5449052C2A0D2625 /* Instrumentation.ice in Sources */,
+ 8DB3BA0C6692E415D91B3455 /* InstrumentationF.ice in Sources */,
+ 07EF1AD47F66EF6D88D65C48 /* InstrumentationI.cpp in Sources */,
+ 686DEAE2BD5E750D16EBB57F /* IPEndpointI.cpp in Sources */,
+ B10186E69338BFB57DE11D25 /* LocalException.ice in Sources */,
+ 01C38604E33417E477252577 /* LocalObject.cpp in Sources */,
+ EEBF0A972E95A326FBF4828D /* Locator.ice in Sources */,
+ B23B03B7CB15DC19338282F0 /* LocatorF.ice in Sources */,
+ 502F2C1998C22A5A96CFA8F3 /* LocatorInfo.cpp in Sources */,
+ AE4F27C29FEEA71CF302A0B9 /* Logger.ice in Sources */,
+ 1C6C8DF382039CF0872A0130 /* LoggerAdminI.cpp in Sources */,
+ 21047287F26526423472F521 /* LoggerF.ice in Sources */,
+ 523F7214623251CF407D0091 /* LoggerI.cpp in Sources */,
+ 263DE1FEB7195047FAC3B2FC /* LoggerUtil.cpp in Sources */,
+ CC70E56022BCB3B50C356920 /* Metrics.ice in Sources */,
+ 496AFC3BE43499C2F4DA4239 /* MetricsAdminI.cpp in Sources */,
+ 5CCFF97AEE6F1EC7B5F22C78 /* MetricsObserverI.cpp in Sources */,
+ 81A3A2E3386B643258AFE2E8 /* MutexProtocol.cpp in Sources */,
+ 2489129947B2BE614647C3C8 /* Network.cpp in Sources */,
+ 5A4944AEB28A1BECE9F86E82 /* NetworkProxy.cpp in Sources */,
+ A8C982C1AF59C7091C852C88 /* Notifications.mm in Sources */,
+ 81AE2D8AE606245FB5723F60 /* Object.cpp in Sources */,
+ 6CD649AB333F62B20F794A43 /* ObjectAdapter.ice in Sources */,
+ 673D68E5F5CC9442B5FAB566 /* ObjectAdapterF.ice in Sources */,
+ 764F24CE142AA2BC3B29E947 /* ObjectAdapterFactory.cpp in Sources */,
+ 06F9EE6F197A5766217142CA /* ObjectAdapterI.cpp in Sources */,
+ D200331EB9F36CD9F08A690B /* ObjectFactory.ice in Sources */,
+ C85377B9FD7BB2CF49F6248B /* ObserverHelper.cpp in Sources */,
+ 85BB29E82DAA4D4B7EF2AF0B /* OpaqueEndpointI.cpp in Sources */,
+ 5DD5AE98D1D447F1C8C2B1AE /* Options.cpp in Sources */,
+ BE52E46C45ABCBD378E4BB36 /* OSLogLoggerI.cpp in Sources */,
+ 32B75CEB4EC7A87C89C75C3D /* OutgoingAsync.cpp in Sources */,
+ 95C4A576E384D54C6DC119D4 /* OutputStream.cpp in Sources */,
+ C30B0F6C1A8F9432F1FA3C52 /* OutputUtil.cpp in Sources */,
+ A04853275CDA3D35CFA76A98 /* Plugin.ice in Sources */,
+ 03EC7F52C92364300FF1AF2C /* PluginF.ice in Sources */,
+ 764892301898E814A68171AD /* PluginManagerI.cpp in Sources */,
+ FE3F344B8BBD3E1A9D6605F1 /* Process.ice in Sources */,
+ 82910A79F1F8A522A8FA8A19 /* ProcessF.ice in Sources */,
+ 1DA5E66C5081305CC6917F68 /* Properties.ice in Sources */,
+ 0F09B818D5284B782469A192 /* PropertiesAdmin.ice in Sources */,
+ 4B88982CA7E44F27F5EC61F9 /* PropertiesAdminI.cpp in Sources */,
+ 4C43B4B4075CE4989FA06B8C /* PropertiesF.ice in Sources */,
+ 093B31BB8A0A3ADC951DFECD /* PropertiesI.cpp in Sources */,
+ 2F172D1013C9D7B768407AFC /* PropertyNames.cpp in Sources */,
+ 5699A746B6B5F90FFC6D1C24 /* Protocol.cpp in Sources */,
+ 5AD22F610A94E2C29919B924 /* ProtocolInstance.cpp in Sources */,
+ 18FFD37FADCFADE3F7F62B74 /* ProtocolPluginFacade.cpp in Sources */,
+ 572C47BF142EDE0CE5670A45 /* Proxy.cpp in Sources */,
+ DF753AAB223A6806C39938B9 /* ProxyFactory.cpp in Sources */,
+ B31AB41CF1740FFC619738FF /* Random.cpp in Sources */,
+ 1656419535F157F270B4BE85 /* RecMutex.cpp in Sources */,
+ 7D1149AA62BCBAE0D1C1370B /* Reference.cpp in Sources */,
+ 7E6FB51C3D06235CCA840BB5 /* ReferenceFactory.cpp in Sources */,
+ 56F67146E6AEDE97D079157C /* RegisterPluginsInit.cpp in Sources */,
+ 4524EA88D0F3C1B36032DD2F /* RemoteLogger.ice in Sources */,
+ 25B660592DE9E9E44C12C139 /* RequestHandler.cpp in Sources */,
+ 86590AB56B7086634F54B5DD /* RequestHandlerFactory.cpp in Sources */,
+ F2B4F0827C86A244FDEF519D /* RetryQueue.cpp in Sources */,
+ CF8AA6672109C9C7446E2F2D /* Router.ice in Sources */,
+ EA255F0D4367F47126158AC9 /* RouterF.ice in Sources */,
+ 5A15EE11DCB5697E8252D0A5 /* RouterInfo.cpp in Sources */,
+ FE7C0A200011D66DD9384621 /* Selector.cpp in Sources */,
+ 976FAD84FDB97B073B1660C6 /* ServantLocator.ice in Sources */,
+ 95D0676EB99CE7F09A820593 /* ServantLocatorF.ice in Sources */,
+ D68D8C53BF36541A76E94D43 /* ServantManager.cpp in Sources */,
+ 2991CC0127921A6738E5F6C1 /* Service.cpp in Sources */,
+ D22A66BE3743E0AAAAB7C581 /* SHA1.cpp in Sources */,
+ CD11B5459E9E30DB90A56F7A /* Shared.cpp in Sources */,
+ 503BF71A9FB17136AD834A30 /* SliceChecksumDict.ice in Sources */,
+ 82D152396ABCFB797FC8088F /* SliceChecksums.cpp in Sources */,
+ 652209819ABB9C4CD7978770 /* SlicedData.cpp in Sources */,
+ BBFE75E0B1B9B5E2433EDF61 /* StreamAcceptor.cpp in Sources */,
+ 521AA491E0F12631E6B313F9 /* StreamConnector.cpp in Sources */,
+ B5A1649F0D13BEF339548163 /* StreamEndpointI.cpp in Sources */,
+ B808B856DD7B95D33FA6BDC7 /* StreamSocket.cpp in Sources */,
+ 72C9771640D35CF79699CC62 /* StreamTransceiver.cpp in Sources */,
+ DF458B5CCE88F81CFB0CECE4 /* StringConverter.cpp in Sources */,
+ E2CEC570667D4E8AFD2D1299 /* StringConverterPlugin.cpp in Sources */,
+ 8DC067815BCE3A683D98511D /* StringUtil.cpp in Sources */,
+ 6B43B2CE330DBBD7BC1C5C35 /* SysLoggerI.cpp in Sources */,
+ 5DC9CA59605F555D444E4F2F /* SystemdJournalI.cpp in Sources */,
+ FF07A50767D711C5B9536CB4 /* Thread.cpp in Sources */,
+ 811442364B2A03F799BC4DB5 /* ThreadException.cpp in Sources */,
+ 30BBB66F4C0534B8C722AE17 /* ThreadPool.cpp in Sources */,
+ 6A543B9EADBA1048D8A806C0 /* Time.cpp in Sources */,
+ 9F590D437A6841F2A9A0F3A9 /* Timer.cpp in Sources */,
+ 3928640F7D6366DCF2AB45D0 /* TraceLevels.cpp in Sources */,
+ 016A0FAA1D94DDA3ABD2E9F9 /* TraceUtil.cpp in Sources */,
+ 8474A2C5AB5774475C3AD559 /* Transceiver.cpp in Sources */,
+ 12CBDC8CF9A49BA94E449271 /* UdpConnector.cpp in Sources */,
+ C8E4567AE74D9C69B88AC698 /* UdpEndpointI.cpp in Sources */,
+ 24BF02F34583DAF4D96DD2EC /* UdpTransceiver.cpp in Sources */,
+ 99F1E94DBE7B220C11D5CF89 /* UtilException.cpp in Sources */,
+ 948A5BBFD9D2722BB9A49607 /* UUID.cpp in Sources */,
+ 72918FB9A2FDBEC193A473CE /* Value.cpp in Sources */,
+ D29A85FCB6750D6E1FB76743 /* ValueFactory.ice in Sources */,
+ 6CF4F10B5262B98BBD6694BE /* ValueFactoryManagerI.cpp in Sources */,
+ 1AFCFD280B7FF87D80C28922 /* Version.ice in Sources */,
+ 24D454A7AB1692CEC5C7334A /* WSAcceptor.cpp in Sources */,
+ E6FE1829290FDB6968EC853F /* WSConnector.cpp in Sources */,
+ 6CF0A18AF72912B5222E2062 /* WSEndpoint.cpp in Sources */,
+ 99342699EED66971EADE13A1 /* WSTransceiver.cpp in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ F475329F03E0092B1E040E6E /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ DFBEA4DB455A84E5B857AC6D /* AllTests.swift in Sources */,
+ 2C985A786A17CF8F933C1B70 /* Client.swift in Sources */,
+ CE97E9896A3DC4FD4D7FAF9A /* Collocated.swift in Sources */,
+ 5DAAEABF78959FAB6E9E0C6E /* ServantLocatorI.swift in Sources */,
+ F66FBB26CF83BDB7C9CADD2C /* Server.swift in Sources */,
+ CB3D7A26768F331866AD61A7 /* Test.ice in Sources */,
+ E16959B1E8BF9EC5BEAE6D0E /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- FD16BD168CA71263F5389B9A /* Sources */ = {
+ F5502C2F220BF21652304C44 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- E1A22835311DF863B08C7255 /* AllTests.swift in Sources */,
- 51C3F21559D4591FDD1282B6 /* Client.swift in Sources */,
- D17CDD00E1A746AC62BE4FFD /* Server.swift in Sources */,
- 37AE7C25BB00410631BE0436 /* Test.ice in Sources */,
- CA16B252E9C26987375F2A48 /* TestI.swift in Sources */,
+ A34C3E25AD9AF126C8E2B034 /* AllTests.swift in Sources */,
+ FE03B2C4D64B4A4DB51391A2 /* Client.swift in Sources */,
+ 41B01019CED4B0227723642C /* Server.swift in Sources */,
+ 107DFD2B0E468C7FFA492014 /* Test.ice in Sources */,
+ D18AB854340E0369E76FD371 /* TestI.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- FDCCB0606A000E5432AC4497 /* Sources */ = {
+ F94100741F0171876B47D60E /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 8A7DFFC830CD552359F494C5 /* Clash.ice in Sources */,
- 0C84F4F63B8F2FFC65B61772 /* Client.swift in Sources */,
- A155BA887F907B71955E9DD9 /* Key.ice in Sources */,
+ A763CD02F94711DFB96D1CD6 /* IceLocatorDiscovery.ice in Sources */,
+ D4BD9762B768680B6688544A /* PluginI.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
- FE83A71A48865F74B52C978C /* Sources */ = {
+ FB28D286084E4C928A549716 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- D5C2445DDD7EB3509C066C48 /* AllTests.swift in Sources */,
- 6586CB75891F51DE8077BEE1 /* Client.swift in Sources */,
- 60F504D997DC2A646A59E8AC /* Test.ice in Sources */,
+ 97D676CFBC59FFF8BBE04E2A /* TestCommon.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
- 035A5A528BF25A119CADE4BB /* PBXTargetDependency */ = {
+ 00FCBE39C5613632A1613641 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Glacier2 macOS";
- target = 0D1E892424EEBFE0181DF694 /* Glacier2 macOS */;
- targetProxy = 51B749D7B183D29F02E083A8 /* PBXContainerItemProxy */;
+ target = B6E7B96E62DB9ACA0E5D579D /* Glacier2 macOS */;
+ targetProxy = 957FAF7B9691A77E0A3061C3 /* PBXContainerItemProxy */;
};
- 055609914FB0CFDF4BABC6C0 /* PBXTargetDependency */ = {
+ 02628382C6F9A43E384AFA9B /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceExceptions macOS";
- target = FE86CB123B13ECCFF37B1D0B /* IceExceptions macOS */;
- targetProxy = CAD74DA69D1D3CC1089E6772 /* PBXContainerItemProxy */;
+ name = "IceServantLocatorAMD macOS";
+ target = 51B83832597A166C70372361 /* IceServantLocatorAMD macOS */;
+ targetProxy = D6EA85E44DDFBC509EDE59C1 /* PBXContainerItemProxy */;
};
- 05F2142121A27FFF1491D461 /* PBXTargetDependency */ = {
+ 03E9E32A37CF3910CEA84CAE /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceProxy iOS";
- target = 7D8B11B9BA9DF9540757E9E2 /* IceProxy iOS */;
- targetProxy = 9C540446F436435C0FA4E994 /* PBXContainerItemProxy */;
+ name = "SliceEscape macOS";
+ target = 66D7646E717E859CA23ACF56 /* SliceEscape macOS */;
+ targetProxy = 914490C40B3F31F8EE874C25 /* PBXContainerItemProxy */;
};
- 0812F80B66346FB090B8A325 /* PBXTargetDependency */ = {
+ 0A6C086BA674D216566BBD90 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceDefaultServant macOS";
- target = BE9F28CD4A7397D091DE85B6 /* IceDefaultServant macOS */;
- targetProxy = 4123FB9562BBC3041DF8C41D /* PBXContainerItemProxy */;
+ name = "IceTimeout iOS";
+ target = AE89C19755A8AF0192B7C09E /* IceTimeout iOS */;
+ targetProxy = 0622433D61EC63CD0AEEAD60 /* PBXContainerItemProxy */;
};
- 091D5BD9C2297D9BDB6C229D /* PBXTargetDependency */ = {
+ 0AA38837FD6ED4369FA5118D /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceAmi iOS";
- target = EA33EAE1209A64C18B26C6DC /* IceAmi iOS */;
- targetProxy = 770851319EDBD6DDC6CCC088 /* PBXContainerItemProxy */;
+ name = "IceBinding iOS";
+ target = AFF5C170D720B29E4A6ABD57 /* IceBinding iOS */;
+ targetProxy = 454D64584C823AF9EDD745ED /* PBXContainerItemProxy */;
};
- 0B11D7F975773AC9256E38BC /* PBXTargetDependency */ = {
+ 0B080B2F039FF892615D48E5 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceInterceptor macOS";
- target = A767A66A0553040C3E4C8FE8 /* IceInterceptor macOS */;
- targetProxy = 01CDB5E43B90041D364880E6 /* PBXContainerItemProxy */;
+ name = "IceAdapterDeactivation iOS";
+ target = 5295813C4C98826FBA6D4CA4 /* IceAdapterDeactivation iOS */;
+ targetProxy = 859A7DBB34B120487EEC0D27 /* PBXContainerItemProxy */;
};
- 10ACDDC5DBF41BB3B0351BF4 /* PBXTargetDependency */ = {
+ 0BA0B4EF528685A4EC63A369 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceHold macOS";
- target = F69E07D158565776D5926FF9 /* IceHold macOS */;
- targetProxy = 93E9332EE3E5DDC24923DB52 /* PBXContainerItemProxy */;
+ name = "IceInfo macOS";
+ target = CC1E58215C72A515E5C4E968 /* IceInfo macOS */;
+ targetProxy = BDFFE4E8B33D61F6EE8AE552 /* PBXContainerItemProxy */;
};
- 11DC1A2C024035F6E5872BB4 /* PBXTargetDependency */ = {
+ 0BC6F31149E565AD458EAC76 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceServices iOS";
- target = F72DCF0A21A0C8E25DFC8FFE /* IceServices iOS */;
- targetProxy = 13619B9FD83B8A4B7709BF00 /* PBXContainerItemProxy */;
+ name = "IceAdapterDeactivation macOS";
+ target = B51020A18D6BB52E85D2C0A0 /* IceAdapterDeactivation macOS */;
+ targetProxy = 07923243FB1F42324EE1DF8D /* PBXContainerItemProxy */;
};
- 148BAD1CBCB6CE8363C1F4B4 /* PBXTargetDependency */ = {
+ 0CD148DF6EDBB4FE95CEBC00 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceFacets iOS";
- target = 6CEDEA9B995306DFD9C2E473 /* IceFacets iOS */;
- targetProxy = 3898C4D10D60447C8B1F5F55 /* PBXContainerItemProxy */;
+ name = "Ice macOS";
+ target = 70073F296AA7A50B2A86451A /* Ice macOS */;
+ targetProxy = 13F5480E3629A73FDC070A56 /* PBXContainerItemProxy */;
};
- 1589C2EFEEF0AE99D56F2B94 /* PBXTargetDependency */ = {
+ 0F74DC276D7A82CC4A91EDB1 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceExceptionsAMD iOS";
- target = 1021ADEEE20D0179A7D1EAE5 /* IceExceptionsAMD iOS */;
- targetProxy = B8B9BA6D6881EF78D3508E64 /* PBXContainerItemProxy */;
+ name = "IceHold macOS";
+ target = B0DD51FFCF661AD3AAF3C70D /* IceHold macOS */;
+ targetProxy = D5C7828B65751F01E9864FE3 /* PBXContainerItemProxy */;
};
- 15DEA84F636C3196240D1D75 /* PBXTargetDependency */ = {
+ 14D7191875E525D14A209782 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceOptionalAMD iOS";
- target = A0C4BC07716CFC719E71B864 /* IceOptionalAMD iOS */;
- targetProxy = 60E400E716B1862956C11904 /* PBXContainerItemProxy */;
+ name = "IceInterceptor macOS";
+ target = 215AFD7E3854FE327298A93E /* IceInterceptor macOS */;
+ targetProxy = 008FD62653844744B4AA841B /* PBXContainerItemProxy */;
};
- 16C26BE2CE56212EEED11ACE /* PBXTargetDependency */ = {
+ 15E26023EBB505BC9A38F649 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceAcm macOS";
- target = EFCCDA054A8107675B170FC1 /* IceAcm macOS */;
- targetProxy = 2DA7721FD712B484BC70A7AA /* PBXContainerItemProxy */;
+ name = "IceUdp macOS";
+ target = BC6991488D8CC573AA1BDC8F /* IceUdp macOS */;
+ targetProxy = 47A7FAF73D3C2E160CD743C7 /* PBXContainerItemProxy */;
};
- 189904A2E342D68C1D124203 /* PBXTargetDependency */ = {
+ 1A913009C93BA88B2DEC0B9F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceExceptions iOS";
- target = 404E0C7A0B6D245EF6B20FBE /* IceExceptions iOS */;
- targetProxy = D9A3B8A9F48B76F51DEADE81 /* PBXContainerItemProxy */;
+ name = "IceHold iOS";
+ target = C45CC74DC170C850261716E7 /* IceHold iOS */;
+ targetProxy = E63D2789C8FA62E33DDD176C /* PBXContainerItemProxy */;
};
- 1C057B65D05B833913568F3F /* PBXTargetDependency */ = {
+ 1DDEF00AF380BF4FAC522334 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceInheritance macOS";
- target = 34B4FD44212BC22DE43DF98B /* IceInheritance macOS */;
- targetProxy = 8CCF5CCC3782672A590A3B9A /* PBXContainerItemProxy */;
+ name = "IceServices macOS";
+ target = E765EC8C4FC688664074FCAB /* IceServices macOS */;
+ targetProxy = 5DA0E07575D8DC0F638CD1DA /* PBXContainerItemProxy */;
};
- 1CC9B98C3CCDD8EDF8975A31 /* PBXTargetDependency */ = {
+ 1E51B764B101F073BCBE93D0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceTimeout macOS";
- target = 969E38571FC7BE0D1FA5C0F2 /* IceTimeout macOS */;
- targetProxy = 01D2F1D7ED32D5733E008B31 /* PBXContainerItemProxy */;
+ name = "IceBinding macOS";
+ target = DB28B503557795AB1CA8DF41 /* IceBinding macOS */;
+ targetProxy = 175B787A239980152AF0AA3D /* PBXContainerItemProxy */;
};
- 1EAC23DD056481B4BDA66C12 /* PBXTargetDependency */ = {
+ 22EF2A0BFA587A83DEE31451 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceInvoke iOS";
- target = E07DFEAC4405C142A89C313C /* IceInvoke iOS */;
- targetProxy = 892B372D29CD810B9674F8F0 /* PBXContainerItemProxy */;
+ name = "IceOperations macOS";
+ target = 1E406447B88C3D90364D4D1F /* IceOperations macOS */;
+ targetProxy = 5D69129449E3C495B2939FD5 /* PBXContainerItemProxy */;
};
- 1F4E92C34B478CC0329094EF /* PBXTargetDependency */ = {
+ 2312AE874A20F16AB6212023 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceSlicingExceptionsAMD iOS";
- target = 4D4688E27490C1B57417BEC2 /* IceSlicingExceptionsAMD iOS */;
- targetProxy = F5BBFB810AD8D2E71E102996 /* PBXContainerItemProxy */;
+ name = "IceDefaultServant macOS";
+ target = DA7E46E820F346FEEB71D302 /* IceDefaultServant macOS */;
+ targetProxy = 3AF1EC58A0C779BED09B0A14 /* PBXContainerItemProxy */;
};
- 1F93CDC9CDCB5ADB95204E00 /* PBXTargetDependency */ = {
+ 23D393982F33A5365EB0B176 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceAdmin iOS";
- target = D65ED0BD35F3EC0FC6466BCB /* IceAdmin iOS */;
- targetProxy = AC23E6FABB451752237548DC /* PBXContainerItemProxy */;
+ name = "IceLocation macOS";
+ target = 7E58C9E85060E10DB9449968 /* IceLocation macOS */;
+ targetProxy = 1F2AF50FB9FB6F8E539FB012 /* PBXContainerItemProxy */;
};
- 236092AB13089F308509F936 /* PBXTargetDependency */ = {
+ 24C558E328434AB3561A09AC /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceEnums iOS";
- target = E6C971120A8271A079AADB39 /* IceEnums iOS */;
- targetProxy = C678B00450EC3FBEF34E487B /* PBXContainerItemProxy */;
+ name = "IceProxyAMD macOS";
+ target = E072028161A34E7533BE2CCE /* IceProxyAMD macOS */;
+ targetProxy = 158F1BE7CA0DBAA9BF8C8F82 /* PBXContainerItemProxy */;
};
- 27B2CD07039AA0D7159A8F79 /* PBXTargetDependency */ = {
+ 2775BA8CB3DD67B2B4221BB3 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceStream iOS";
- target = 2045B45980FB68801EA7DC30 /* IceStream iOS */;
- targetProxy = A279EFE60F7D2A8036AE833D /* PBXContainerItemProxy */;
+ name = "IceServantLocatorAMD iOS";
+ target = E994CBBED485628BB1F1F56D /* IceServantLocatorAMD iOS */;
+ targetProxy = 2F1032CC0C3EB3EEDC7410EF /* PBXContainerItemProxy */;
};
- 2A03A6871946141EF367455E /* PBXTargetDependency */ = {
+ 2D2D35C1EBF722477B8B482C /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "Ice C++11 macOS";
- target = 16B8E7C8A49D358168590178 /* Ice C++11 macOS */;
- targetProxy = 6658C8E9BC51CEBC33C03574 /* PBXContainerItemProxy */;
+ name = "IceSlicingExceptions iOS";
+ target = EE95BFEA8BAE4CCD7D0C5C92 /* IceSlicingExceptions iOS */;
+ targetProxy = B1BFAFCA440C2E161333A28B /* PBXContainerItemProxy */;
};
- 2AA78526F7A0DCAC2C6D6256 /* PBXTargetDependency */ = {
+ 2EC87EF317194682F6001FB2 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceInfo iOS";
- target = 28CE11EAF0AF8ED4144E13C3 /* IceInfo iOS */;
- targetProxy = A188481BCB244AE62EEECBBB /* PBXContainerItemProxy */;
+ name = "Ice macOS";
+ target = 70073F296AA7A50B2A86451A /* Ice macOS */;
+ targetProxy = 36522001193F522518AF73BF /* PBXContainerItemProxy */;
};
- 2FE793C179B6207352B4D870 /* PBXTargetDependency */ = {
+ 30E54F481F5DF26D84BAAA4F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceInfo macOS";
- target = 830E9112B17863864A340FE9 /* IceInfo macOS */;
- targetProxy = 7A571EBD465782ACA41FD059 /* PBXContainerItemProxy */;
+ name = "Ice iOS";
+ target = 9CC26892A88B1BB899E53DF5 /* Ice iOS */;
+ targetProxy = 42DA9B4447CDA4BD2178FB67 /* PBXContainerItemProxy */;
};
- 30EA112897EBA052FDB53A04 /* PBXTargetDependency */ = {
+ 329CE26EAA6745BB04D549BF /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceAdapterDeactivation iOS";
- target = 4FACAB223C4BE57F8313B439 /* IceAdapterDeactivation iOS */;
- targetProxy = DB8B5F9CF52B6A124F607572 /* PBXContainerItemProxy */;
+ name = "IceAdmin macOS";
+ target = F532269BF56C02A5A87C95A7 /* IceAdmin macOS */;
+ targetProxy = A94EC94485839F8ACFA00C7E /* PBXContainerItemProxy */;
};
- 30EE8A8B19ACA9B83868B53E /* PBXTargetDependency */ = {
+ 379A93B27E1ED9ABB0381CEB /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceProxyAMD macOS";
- target = A62091DEE8CD959DE94A8F0D /* IceProxyAMD macOS */;
- targetProxy = B602525DAC501FCEC750B25D /* PBXContainerItemProxy */;
+ name = "IceDefaultServant iOS";
+ target = E61D28A41E985F8384CE50D1 /* IceDefaultServant iOS */;
+ targetProxy = EC5359ED4F810E3D12CB314A /* PBXContainerItemProxy */;
};
- 35917C7823FBDD520C665CFD /* PBXTargetDependency */ = {
+ 38C38F0F72499D98844F2049 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceOperationsAMD macOS";
- target = AC2F87AF2DD6F1ED5E2590A9 /* IceOperationsAMD macOS */;
- targetProxy = 2CB4459734BC54B1587C7810 /* PBXContainerItemProxy */;
+ name = "IceLocation iOS";
+ target = 86A66976BDA39228F3A72337 /* IceLocation iOS */;
+ targetProxy = 93362B507ECB1C3B8FF09129 /* PBXContainerItemProxy */;
};
- 3632AFE15830E26E77353267 /* PBXTargetDependency */ = {
+ 3939985C9C3F2136D68F7AD0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceOptional macOS";
- target = 5CF6468D18D175DFA0C3C15C /* IceOptional macOS */;
- targetProxy = 805A1CD37F6D848D6DF42F31 /* PBXContainerItemProxy */;
+ name = "IceTimeout macOS";
+ target = 74C6B641416DEE756B63F83B /* IceTimeout macOS */;
+ targetProxy = 3AA76ADBC0DD2EF29D45A9A8 /* PBXContainerItemProxy */;
};
- 37430682BEA1D77B055A8615 /* PBXTargetDependency */ = {
+ 396B57ADD302F07C42EAE355 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceServantLocator iOS";
- target = 58E0983675E6A21751BA077D /* IceServantLocator iOS */;
- targetProxy = F044A6FEAB4F66884E07051D /* PBXContainerItemProxy */;
+ name = "Ice C++11 macOS";
+ target = 2B0DA341DBA94884D0304509 /* Ice C++11 macOS */;
+ targetProxy = 42000A2FCB950869777189C6 /* PBXContainerItemProxy */;
};
- 383455C0C450FEA9F177EF80 /* PBXTargetDependency */ = {
+ 399D8BE1CF1CAFA26039EFE5 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceHold iOS";
- target = F8B243B2C39ADB2080563C0C /* IceHold iOS */;
- targetProxy = 30606657C38188EFE9FF0626 /* PBXContainerItemProxy */;
+ name = "IceAdmin iOS";
+ target = 152C6B4D442533A14394AA59 /* IceAdmin iOS */;
+ targetProxy = 0820E70B3C6BA3900B77D630 /* PBXContainerItemProxy */;
};
- 3CC86BDBC2BE3D9319E5A643 /* PBXTargetDependency */ = {
+ 3BDC4B2DDE4417DA586B66CF /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceProxy macOS";
- target = 51D42EC70167D099FF9F11F6 /* IceProxy macOS */;
- targetProxy = 0369FA668543E5078CCFEBDE /* PBXContainerItemProxy */;
+ name = "IceObjects macOS";
+ target = A95A462BF3224269501972C7 /* IceObjects macOS */;
+ targetProxy = FC4FB387B8EA9BB2E7445ED2 /* PBXContainerItemProxy */;
};
- 3FDDA5A6203D3A524630073C /* PBXTargetDependency */ = {
+ 3C9782EE3EF2CC5E11E2AB7C /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "Ice C++11 iOS";
- target = 0914A24DE1888840E5B162E7 /* Ice C++11 iOS */;
- targetProxy = 8C32F2D8834CC00396533552 /* PBXContainerItemProxy */;
+ name = "IceObjects iOS";
+ target = B0CE4A0950BF71C921ADDF6F /* IceObjects iOS */;
+ targetProxy = 8ED71FFE35F6B4C99BCC7E71 /* PBXContainerItemProxy */;
};
- 4224874E64BF204D8F29A5A7 /* PBXTargetDependency */ = {
+ 3FDB52F936213826B19389A6 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceOperationsAMD iOS";
- target = 61C1F3CDEF881BCAD67C369D /* IceOperationsAMD iOS */;
- targetProxy = E250D94FB3D3D56A4027C9F7 /* PBXContainerItemProxy */;
+ name = "Ice iOS";
+ target = 9CC26892A88B1BB899E53DF5 /* Ice iOS */;
+ targetProxy = 8DF5291E8BB9FEF8CC5D3A89 /* PBXContainerItemProxy */;
};
- 4235779BACB41CB2FBB34E4D /* PBXTargetDependency */ = {
+ 41DDDED9175FEB3E71FCFEF4 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceSlicingObjects macOS";
- target = D8AD4CF3DB9467AF9BFA06BD /* IceSlicingObjects macOS */;
- targetProxy = 0DA623B4ADE1999076789EAB /* PBXContainerItemProxy */;
+ name = "IceInvoke macOS";
+ target = 718273E1950034827BC4BCF7 /* IceInvoke macOS */;
+ targetProxy = 9FAAB98E0AA3E3F72B72D6B9 /* PBXContainerItemProxy */;
};
- 42810233E9A45788BC92891C /* PBXTargetDependency */ = {
+ 44E4246722201BC6F6BF8AF0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceBinding macOS";
- target = B3452891B8260C4BD87385FC /* IceBinding macOS */;
- targetProxy = 83D629EC203376C82DFC3A30 /* PBXContainerItemProxy */;
+ name = "Ice C++11 macOS";
+ target = 2B0DA341DBA94884D0304509 /* Ice C++11 macOS */;
+ targetProxy = 8CF263BC5EE9D8315C75F074 /* PBXContainerItemProxy */;
};
- 450A4911C2FBEEF2DDC8752B /* PBXTargetDependency */ = {
+ 4869097E444F2EE9E4FBD515 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceServantLocatorAMD iOS";
- target = 4528506F75BB1C17D38A8FB2 /* IceServantLocatorAMD iOS */;
- targetProxy = A5995851B5E63B358FB1EE14 /* PBXContainerItemProxy */;
+ name = "IceFacets iOS";
+ target = CA67B414AA1971674CA1BB76 /* IceFacets iOS */;
+ targetProxy = 47F0863EDFB9E441949654DB /* PBXContainerItemProxy */;
};
- 46C05EE79E414A31B24750D6 /* PBXTargetDependency */ = {
+ 4A439B93D54EEFA019F2B595 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceTimeout iOS";
- target = F5FC59FA400A88FD72FDB307 /* IceTimeout iOS */;
- targetProxy = 5C162295F1666568BA9B74EE /* PBXContainerItemProxy */;
+ name = "IceSlicingObjects macOS";
+ target = FEF324BE2711D4602F6574BC /* IceSlicingObjects macOS */;
+ targetProxy = B1ED1F6250D9F96DA8A7C518 /* PBXContainerItemProxy */;
};
- 47D1C15B97CAE4EE18D23BD1 /* PBXTargetDependency */ = {
+ 4A7C14F7400881C449052DB8 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceObjects iOS";
- target = 2EB20E48501BD9D7B072833A /* IceObjects iOS */;
- targetProxy = 77959C9AC50BC71E6042979F /* PBXContainerItemProxy */;
+ name = "IceSSLConfiguration iOS";
+ target = D0D371AC63C9FC42EB4E27B9 /* IceSSLConfiguration iOS */;
+ targetProxy = AB0BAF31D32F75A1A224B301 /* PBXContainerItemProxy */;
};
- 499156DE39EA866DEE27982C /* PBXTargetDependency */ = {
+ 4BA07F8BD5A88D6281A29D29 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceLocation macOS";
- target = 076983A948FE64CF9ABD1844 /* IceLocation macOS */;
- targetProxy = DC7182F780C0B651B66B66BD /* PBXContainerItemProxy */;
+ name = "IceStream iOS";
+ target = 780FF90F7A2E5DB653296F94 /* IceStream iOS */;
+ targetProxy = 1C338FA279728277864BBD48 /* PBXContainerItemProxy */;
};
- 49B80D5958A1ECC23E3238DE /* PBXTargetDependency */ = {
+ 52EE3DEDADE61F205633C490 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceLocation iOS";
- target = FDE91A15EA90BB247AB8ABBB /* IceLocation iOS */;
- targetProxy = ACBA1D4680155762D94FDFFF /* PBXContainerItemProxy */;
+ name = "IceAcm iOS";
+ target = CDA3E575A10E9943686D9651 /* IceAcm iOS */;
+ targetProxy = 791AF9B734FB817D38F720C7 /* PBXContainerItemProxy */;
};
- 4A26C247D63D3F3818205176 /* PBXTargetDependency */ = {
+ 565AEA02674C74A898143F5A /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceRetry iOS";
- target = CE1F12199245AF18BE422490 /* IceRetry iOS */;
- targetProxy = 2AD827D3C61EC0AF325923AF /* PBXContainerItemProxy */;
+ name = "Ice iOS";
+ target = 9CC26892A88B1BB899E53DF5 /* Ice iOS */;
+ targetProxy = 84D21CA29598A45014722A3D /* PBXContainerItemProxy */;
};
- 5840B608EBF169165AB8D4C1 /* PBXTargetDependency */ = {
+ 5A2707DDC5D740555A77BFD9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceProperties iOS";
- target = 84314C42C05E6B069FAF3710 /* IceProperties iOS */;
- targetProxy = 5235E98D9CDD847396EE48F7 /* PBXContainerItemProxy */;
+ name = "IceOperationsAMD macOS";
+ target = F620D8585971DEC00C33207F /* IceOperationsAMD macOS */;
+ targetProxy = 466E1FDD53C91CC3A2247C07 /* PBXContainerItemProxy */;
};
- 5985C27F82B9FCC3D00FD776 /* PBXTargetDependency */ = {
+ 5C23BDF6256A3031AC10D6B5 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceInheritance iOS";
- target = D9A5F8103D92E3527085B9D2 /* IceInheritance iOS */;
- targetProxy = 6AB4FAD406B8F4D90B008373 /* PBXContainerItemProxy */;
+ name = "IceProxy macOS";
+ target = 11F37400E8E07989B6E1EC6B /* IceProxy macOS */;
+ targetProxy = B38E19BDF8A95378611F66B4 /* PBXContainerItemProxy */;
};
- 5F5E524240889EA74A14D41C /* PBXTargetDependency */ = {
+ 623023D67129DB2B1239FF72 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceScope macOS";
- target = A924D28ED6AB052D7610258D /* IceScope macOS */;
- targetProxy = 52580AC9FD9205E6AA99F3F4 /* PBXContainerItemProxy */;
+ name = "IceOptional macOS";
+ target = 9CC7B60AEA78A6484EAA237C /* IceOptional macOS */;
+ targetProxy = AA73E8B7592BD4709EC6D212 /* PBXContainerItemProxy */;
};
- 61A13C6364F38BD59C2B6D89 /* PBXTargetDependency */ = {
+ 62399E6570FE2AEEDECDE164 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "IceScope iOS";
- target = AF40834517F20D8EB2CCFCCE /* IceScope iOS */;
- targetProxy = 680E945C9BE9B2C5617DBFCB /* PBXContainerItemProxy */;
+ target = 34CC3FB8F32A94970DA6C5BC /* IceScope iOS */;
+ targetProxy = 15C191585581CE597ECA477E /* PBXContainerItemProxy */;
};
- 6AA574C74CCC578B7432D624 /* PBXTargetDependency */ = {
+ 62BE6A9CF43770EB8A9D7EA6 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "IceFacets macOS";
- target = 1904592D5D35822D47AD8D76 /* IceFacets macOS */;
- targetProxy = 495CDE5ED647B80E0E5267BC /* PBXContainerItemProxy */;
+ target = E63C32A9BA1812EC9E117B93 /* IceFacets macOS */;
+ targetProxy = 2A9D4A9095BE414C39CC0F22 /* PBXContainerItemProxy */;
};
- 6AEA5BF8463452678E11E38F /* PBXTargetDependency */ = {
+ 63DF01B583DA0EB0A8A2972A /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceSlicingExceptionsAMD macOS";
- target = 4CF8A5E80D330A8FD27BC24C /* IceSlicingExceptionsAMD macOS */;
- targetProxy = 3B5EB5AD35384D1716C13D19 /* PBXContainerItemProxy */;
+ name = "IceSlicingObjectsAMD macOS";
+ target = 917FA4C5A8B4A5A1376C00A7 /* IceSlicingObjectsAMD macOS */;
+ targetProxy = F5C328F080F8954B7A03554E /* PBXContainerItemProxy */;
};
- 6B8D622CBB89FAF120A9F319 /* PBXTargetDependency */ = {
+ 6614E59080392D4984871B0F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceInterceptor iOS";
- target = 14BA1B5F33A0E29CFB75C274 /* IceInterceptor iOS */;
- targetProxy = 7912AEB462A4818D96CDD3C6 /* PBXContainerItemProxy */;
+ name = "IceInheritance iOS";
+ target = A85959564B5FB3770489D66C /* IceInheritance iOS */;
+ targetProxy = 0D71D2B9A5E1D95A89DB1923 /* PBXContainerItemProxy */;
};
- 711903504C3954C5D5F28A80 /* PBXTargetDependency */ = {
+ 661B45D59A6DA5756AF2CCE7 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceProxyAMD iOS";
- target = 52292A0F78EADC0126136916 /* IceProxyAMD iOS */;
- targetProxy = D5898D7BEEBEC126584B9DF9 /* PBXContainerItemProxy */;
+ name = "IceExceptionsAMD iOS";
+ target = 201230D356840C5A08351F26 /* IceExceptionsAMD iOS */;
+ targetProxy = 8E9E66E7606818A32FE4400A /* PBXContainerItemProxy */;
};
- 74C341BEBE4F93BF564D4C68 /* PBXTargetDependency */ = {
+ 6800E235CA9959C1E42BF4BB /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceAdapterDeactivation macOS";
- target = 745B3C1B56A24EC2C6B28C0B /* IceAdapterDeactivation macOS */;
- targetProxy = 8F31E6A5438E78EC71E4E306 /* PBXContainerItemProxy */;
+ name = "IceOptionalAMD macOS";
+ target = B4B423BCBEA896092FC8A89D /* IceOptionalAMD macOS */;
+ targetProxy = 34B7973FEADF152F8E4686DE /* PBXContainerItemProxy */;
};
- 79491753D9B50441E2584973 /* PBXTargetDependency */ = {
+ 6A64B711DCDF6F1996730E4B /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceSlicingObjects iOS";
- target = 3C76932432EC535E14CAA9A8 /* IceSlicingObjects iOS */;
- targetProxy = 3DA8DA4426546505C96F85AB /* PBXContainerItemProxy */;
+ name = "IceDefaultValue iOS";
+ target = 70541D10A453A62A357FD6DA /* IceDefaultValue iOS */;
+ targetProxy = 0EA6A87BBFA33B86C9662C78 /* PBXContainerItemProxy */;
};
- 7EE988CA9788B37224C7E16B /* PBXTargetDependency */ = {
+ 6BD9866A55DBBE9F94FE5BCC /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "Ice C++11 macOS";
- target = 16B8E7C8A49D358168590178 /* Ice C++11 macOS */;
- targetProxy = 24DAFDD99EC66E6FDD5B6DC1 /* PBXContainerItemProxy */;
+ name = "IceProxyAMD iOS";
+ target = BB0FE27477960DDC5B6DB47E /* IceProxyAMD iOS */;
+ targetProxy = 57EDE124882D3B0B91C474A6 /* PBXContainerItemProxy */;
};
- 886DEEE11304C34D7274D7EE /* PBXTargetDependency */ = {
+ 6D6B90CF6E4C6A32A4ADC51D /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Ice C++11 iOS";
- target = 0914A24DE1888840E5B162E7 /* Ice C++11 iOS */;
- targetProxy = 7CF5BF5194CEA26D3EC2B7F6 /* PBXContainerItemProxy */;
+ target = CFCBBCD749119BF8D24C0547 /* Ice C++11 iOS */;
+ targetProxy = 3D1A46B3010687F8703691C2 /* PBXContainerItemProxy */;
};
- 89B4C16F315E9E3BE8CA5E07 /* PBXTargetDependency */ = {
+ 7356BE47B6D425F2DA240009 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceDefaultServant iOS";
- target = C9C42E66F1D59B07261FE036 /* IceDefaultServant iOS */;
- targetProxy = 6D724E87C223C250ABE08115 /* PBXContainerItemProxy */;
- };
- 8AA05E8550CF4A1E6284CCFF /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- name = "Ice macOS";
- target = 89D3AFE4AD95A970E6498E06 /* Ice macOS */;
- targetProxy = 5D3491BB66EDD307D5A5A4CC /* PBXContainerItemProxy */;
+ name = "IceInvoke iOS";
+ target = 25A27A7EDF9F753CD06CD077 /* IceInvoke iOS */;
+ targetProxy = 71DB73498C6066CC0B5045F8 /* PBXContainerItemProxy */;
};
- 8BBEEBBC9990C8C12A2E4E90 /* PBXTargetDependency */ = {
+ 765E0DF164AB8AFFC3436F14 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceUdp macOS";
- target = DF0F057CC484113257567B98 /* IceUdp macOS */;
- targetProxy = 8CD6685A1007F0133B97DF74 /* PBXContainerItemProxy */;
+ name = "IceProxy iOS";
+ target = CD69162F352A58A781D2191D /* IceProxy iOS */;
+ targetProxy = 36E6965B3A44C1A9A8DE4BB6 /* PBXContainerItemProxy */;
};
- 90DA201644C892BC19D50BF2 /* PBXTargetDependency */ = {
+ 81200067C92CE4F275FC7939 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceSlicingObjectsAMD iOS";
- target = FAFC63CCC240428D0B5A7F82 /* IceSlicingObjectsAMD iOS */;
- targetProxy = B3B1FCF6B15FF94A71BA0301 /* PBXContainerItemProxy */;
+ name = "Ice C++11 macOS";
+ target = 2B0DA341DBA94884D0304509 /* Ice C++11 macOS */;
+ targetProxy = AECFBBD339CEA9A5E88F83C3 /* PBXContainerItemProxy */;
};
- 92555D3A9F10179AF701CDC3 /* PBXTargetDependency */ = {
+ 853C9A80722F4C5C80746654 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceServices macOS";
- target = ECDA8A6880B8784EAE848EFE /* IceServices macOS */;
- targetProxy = 705E2357A3FA78734C20ECE6 /* PBXContainerItemProxy */;
+ name = "IceStream macOS";
+ target = 7E64A09456EF45C06475AEF9 /* IceStream macOS */;
+ targetProxy = 7D89FD5439F8AB2174209906 /* PBXContainerItemProxy */;
};
- 92AE682ECBFDFC92316F8F4A /* PBXTargetDependency */ = {
+ 87977D66621ABEE8B2C26019 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceOptionalAMD macOS";
- target = EC193DAA8373DAB1D6CE3C67 /* IceOptionalAMD macOS */;
- targetProxy = B4EEED1302AC73F29A861D51 /* PBXContainerItemProxy */;
+ name = "IceSlicingObjects iOS";
+ target = B4E064E37239C58606BE5146 /* IceSlicingObjects iOS */;
+ targetProxy = 7176A154E99359A9F922D452 /* PBXContainerItemProxy */;
};
- 94569CC229996BE0AD227F4E /* PBXTargetDependency */ = {
+ 890034127213361F3C8F5A02 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceStream macOS";
- target = BF98F490756093B64A2F9A38 /* IceStream macOS */;
- targetProxy = B39CB56FD06D7130844A60BD /* PBXContainerItemProxy */;
+ name = "IceServices iOS";
+ target = E9E6D506EA0A011CEDDBC701 /* IceServices iOS */;
+ targetProxy = 77A4489550D5E8FD2278A258 /* PBXContainerItemProxy */;
};
- 9C7A6CBC17CD8887CDD13F61 /* PBXTargetDependency */ = {
+ 8EA25D2B56BF1F9009999EF3 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "Glacier2 iOS";
- target = FCAA4DCF1BD66E55753D8DE0 /* Glacier2 iOS */;
- targetProxy = 46822CD9009A6F654B281AE9 /* PBXContainerItemProxy */;
+ name = "IceProperties iOS";
+ target = 1AAC4E0E13E730A3EBE99884 /* IceProperties iOS */;
+ targetProxy = 99E0FCFD3FAF517DF98FB4E6 /* PBXContainerItemProxy */;
};
- A0AF71EA7A3B4EE1E94A5A39 /* PBXTargetDependency */ = {
+ 8FBFD80AEB0F79C7BB43919B /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceBinding iOS";
- target = AF00BF11A38D6C49E3896A52 /* IceBinding iOS */;
- targetProxy = 3A8510FD096717D0256141EA /* PBXContainerItemProxy */;
+ name = "IceServantLocator iOS";
+ target = E959FDFA9037FBC6F3BC42D7 /* IceServantLocator iOS */;
+ targetProxy = D196512B7D8C14C65BA20B71 /* PBXContainerItemProxy */;
};
- A422D204B9DA33EAB6142767 /* PBXTargetDependency */ = {
+ 910D64E458957E96755A1D25 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "Ice iOS";
- target = FAA60FF4700E1629AA35CA6B /* Ice iOS */;
- targetProxy = 4FDD7CFF8ECE0E0A2F594D8D /* PBXContainerItemProxy */;
+ name = "IceOptional iOS";
+ target = 4A47CB078D8654283E9A288C /* IceOptional iOS */;
+ targetProxy = 99668AA6AD37EAE8F8EA697C /* PBXContainerItemProxy */;
};
- A43D52FD149947E9854A35FD /* PBXTargetDependency */ = {
+ 936C28F3BF2E4F06FC6D76B0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceServantLocatorAMD macOS";
- target = FEF5913971918DD52A9A1A5F /* IceServantLocatorAMD macOS */;
- targetProxy = 01C0F84CD799EAB9DD522742 /* PBXContainerItemProxy */;
+ name = "IceScope macOS";
+ target = 74BF9981D471516844317E41 /* IceScope macOS */;
+ targetProxy = 821059E326891E5F6A719489 /* PBXContainerItemProxy */;
};
- A604DB2B6B5B64B9B0E768B6 /* PBXTargetDependency */ = {
+ 94684DC39D3D55F278BDE020 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceServantLocator macOS";
- target = 1F2AA78A763D19F22E79A046 /* IceServantLocator macOS */;
- targetProxy = 89A0C44CF8CB8326273A77D5 /* PBXContainerItemProxy */;
+ name = "IceEnums iOS";
+ target = 28CFE986A434086C3605887E /* IceEnums iOS */;
+ targetProxy = 71092F57FDC6265A20207BAB /* PBXContainerItemProxy */;
};
- A650C2A2E23F2A16A18506BE /* PBXTargetDependency */ = {
+ 97468E816AB595F2DC5A330C /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "SliceEscape iOS";
- target = 8F8ECD3FC3C6C282CA7C748A /* SliceEscape iOS */;
- targetProxy = 22F604E46B8BD3BF406CAAC5 /* PBXContainerItemProxy */;
+ name = "IceAcm macOS";
+ target = BFD1D15D5C7B133F2BE814F2 /* IceAcm macOS */;
+ targetProxy = 70BBB6B87F8A7009516284D4 /* PBXContainerItemProxy */;
};
- A7F9C139FD5FB4D51F12D300 /* PBXTargetDependency */ = {
+ 982C655245B9DDA853AE0EA0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceAmi macOS";
- target = 72CC3BF62B704A82067C98D1 /* IceAmi macOS */;
- targetProxy = 9FE2CE27837437F62F61A7CB /* PBXContainerItemProxy */;
+ name = "Ice macOS";
+ target = 70073F296AA7A50B2A86451A /* Ice macOS */;
+ targetProxy = 57E1A3D3F9187E89BA921F02 /* PBXContainerItemProxy */;
};
- A81789CB426DFF874340F6FA /* PBXTargetDependency */ = {
+ 99C6842A7041BAC03EDCD85D /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceProperties macOS";
- target = 681378E5D9D07BAA1B211EAD /* IceProperties macOS */;
- targetProxy = 8677C1DDC87F1667885396E6 /* PBXContainerItemProxy */;
+ name = "IceSSLConfiguration macOS";
+ target = 9005F12C5A1006056BCDD1BA /* IceSSLConfiguration macOS */;
+ targetProxy = 2137ECF7371AC57A81E461DF /* PBXContainerItemProxy */;
};
- AB8555AD4EBF2FEE54FE7F89 /* PBXTargetDependency */ = {
+ A1710A4EBD6A2E79352C5006 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "Ice iOS";
- target = FAA60FF4700E1629AA35CA6B /* Ice iOS */;
- targetProxy = 6527054E216E3F6B0DC2D01C /* PBXContainerItemProxy */;
+ name = "IceOperationsAMD iOS";
+ target = 57F4F70C7420D9DEB081223A /* IceOperationsAMD iOS */;
+ targetProxy = 95BC7D77BD12AA94B1C57A8F /* PBXContainerItemProxy */;
};
- ABDCEF727EA5664DCB339BDC /* PBXTargetDependency */ = {
+ A23BC9FEC07647F94C159A95 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceDefaultValue iOS";
- target = E6132AB8E453580BE3A35BA1 /* IceDefaultValue iOS */;
- targetProxy = EADDA7A41C4243784CDDE9C5 /* PBXContainerItemProxy */;
+ name = "IceRetry iOS";
+ target = AD8EE389D94E8B7A9B7F1E3E /* IceRetry iOS */;
+ targetProxy = 7B39B929EECDC40B5277348A /* PBXContainerItemProxy */;
};
- ADA0941E3E4B5B8C5F8B29E7 /* PBXTargetDependency */ = {
+ A2A3ADBFEBF26162DB804B9E /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceAdmin macOS";
- target = 3721D48CE03788DE444C0915 /* IceAdmin macOS */;
- targetProxy = A21AC7CE2E1C0B22936B4CC5 /* PBXContainerItemProxy */;
+ name = "IceAmi iOS";
+ target = AF5DFD5174E2D34ED1167326 /* IceAmi iOS */;
+ targetProxy = D3107B9EBA977436DD1694CD /* PBXContainerItemProxy */;
};
- AF1BDE085A6454A67964114D /* PBXTargetDependency */ = {
+ A2D2A66A0F94B64D462BCEF9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceAcm iOS";
- target = 95BBF08A50DC5F76CB2F6923 /* IceAcm iOS */;
- targetProxy = AE945E534EB596469129B732 /* PBXContainerItemProxy */;
+ name = "IceSlicingExceptionsAMD iOS";
+ target = 4A2ABF9D0923453422834FC0 /* IceSlicingExceptionsAMD iOS */;
+ targetProxy = 0020920B7A22E412DACC9451 /* PBXContainerItemProxy */;
};
- C121B2AB87DDB002EAA4F203 /* PBXTargetDependency */ = {
+ A59D0AC1202E793B088191FC /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceSSLConfiguration iOS";
- target = A1F0756F55089999FFC176DC /* IceSSLConfiguration iOS */;
- targetProxy = D516C57C51AE87C8EEB2F353 /* PBXContainerItemProxy */;
+ name = "IceInfo iOS";
+ target = 6A21D52AF98E02D675C03AB8 /* IceInfo iOS */;
+ targetProxy = 295E3E01E46D8D839336C441 /* PBXContainerItemProxy */;
};
- C1364A708FA99859C791D4D2 /* PBXTargetDependency */ = {
+ A717E4500EF731D22C50944A /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceSlicingExceptions iOS";
- target = 2FCF9711489B071F1761C95C /* IceSlicingExceptions iOS */;
- targetProxy = C80FB86ECA885BACEDE87960 /* PBXContainerItemProxy */;
+ name = "IceUdp iOS";
+ target = 0B9E7BE2574649A7DEAD1C1C /* IceUdp iOS */;
+ targetProxy = 6A8243303224DCFD83107C71 /* PBXContainerItemProxy */;
};
- C62DF3AE0247A10B7B772F00 /* PBXTargetDependency */ = {
+ A7AA7075539F6C277C14975D /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceDefaultValue macOS";
- target = 46D6805E63BB07D00857FF65 /* IceDefaultValue macOS */;
- targetProxy = EF300B245E07E28E99EB7CD2 /* PBXContainerItemProxy */;
+ name = "IceOptionalAMD iOS";
+ target = CA75423F06FACFFA27DD068F /* IceOptionalAMD iOS */;
+ targetProxy = E7938DB28487BCA100AF1F10 /* PBXContainerItemProxy */;
};
- C8F93ABD5053AAC6702A1E96 /* PBXTargetDependency */ = {
+ AF83B2334657DA7E19B1920F /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceOptional iOS";
- target = E6E909AF3A34692C76335CD5 /* IceOptional iOS */;
- targetProxy = 372CE67C60692782E53E7336 /* PBXContainerItemProxy */;
+ name = "IceExceptions iOS";
+ target = A044C3AF402929B4D55A9080 /* IceExceptions iOS */;
+ targetProxy = 1F2BE5AEEA8D926CB6027883 /* PBXContainerItemProxy */;
};
- CA9FE00F0212A050418ED43D /* PBXTargetDependency */ = {
+ AFAE8D0071FAFA9326163235 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "Ice iOS";
- target = FAA60FF4700E1629AA35CA6B /* Ice iOS */;
- targetProxy = 989F458F4F28C217CE52DAFD /* PBXContainerItemProxy */;
+ name = "IceInterceptor iOS";
+ target = 2FA692464307DB8942B81FCE /* IceInterceptor iOS */;
+ targetProxy = 28CBDDCEB5BEF8DA48D6E24F /* PBXContainerItemProxy */;
};
- CDF152F142A321B4E88712EC /* PBXTargetDependency */ = {
+ B5C6D19765F12EBAEA839FF5 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "Ice macOS";
- target = 89D3AFE4AD95A970E6498E06 /* Ice macOS */;
- targetProxy = 00E3F66FF93D5D55B1E158A0 /* PBXContainerItemProxy */;
+ name = "IceSlicingExceptions macOS";
+ target = EE2F6B7F5CAB0150B8F5A31E /* IceSlicingExceptions macOS */;
+ targetProxy = E9D47ECAEF7A425BE3FA5A4C /* PBXContainerItemProxy */;
};
- CF332F3A52E4FEF205A5FB6B /* PBXTargetDependency */ = {
+ B693B0881307B8BB83B53E13 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "IceExceptionsAMD macOS";
- target = 6E6FDF29A9BD1AAC14D11E06 /* IceExceptionsAMD macOS */;
- targetProxy = 692FC873349FCD11805CAE7A /* PBXContainerItemProxy */;
+ target = 7B52FA8B327DB67AF60C0BB1 /* IceExceptionsAMD macOS */;
+ targetProxy = 780D76738D63AB770CEBAD7A /* PBXContainerItemProxy */;
};
- D19CD979F605E8BD41055908 /* PBXTargetDependency */ = {
+ BE03F2E1CB7540DF563FE3D9 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceOperations macOS";
- target = 19D6396909861EBAD283577E /* IceOperations macOS */;
- targetProxy = 29D111096E6EBDFA7804F57F /* PBXContainerItemProxy */;
+ name = "IceExceptions macOS";
+ target = ED591945226DC859C59BD051 /* IceExceptions macOS */;
+ targetProxy = 46E031F4818390C5FC15F2AB /* PBXContainerItemProxy */;
};
- D61565BAF74E0EF7932537C3 /* PBXTargetDependency */ = {
+ C247E326B46CD16FA29657B5 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceSSLConfiguration macOS";
- target = 6B88A98489947A12B8C8631A /* IceSSLConfiguration macOS */;
- targetProxy = BD9CE44EAABAE25964532A2D /* PBXContainerItemProxy */;
+ name = "Glacier2 iOS";
+ target = 853E509B9FD262019EBA40BE /* Glacier2 iOS */;
+ targetProxy = 5FE5DF1E08144BB9F6DDCD23 /* PBXContainerItemProxy */;
};
- D670F6976E173EA2D923583B /* PBXTargetDependency */ = {
+ C3A4787D4A50365A7E71BD3E /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "IceOperations iOS";
- target = 41E689F7CB08945D981E736B /* IceOperations iOS */;
- targetProxy = 17748F156E18B80C0904B2CC /* PBXContainerItemProxy */;
+ target = E1F75FFAED46F9A8EF5A6B58 /* IceOperations iOS */;
+ targetProxy = 17DAA28383F58E29DCDDC6E2 /* PBXContainerItemProxy */;
};
- D94F105F21B2CA72D50187D9 /* PBXTargetDependency */ = {
+ C4E7724859AC32D6FA13CD2E /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceObjects macOS";
- target = F9FE0C1E75C7CE2FEAC8545F /* IceObjects macOS */;
- targetProxy = 567A5C33020935983744146B /* PBXContainerItemProxy */;
+ name = "IceSlicingObjectsAMD iOS";
+ target = 98425A8E3491D503D949A569 /* IceSlicingObjectsAMD iOS */;
+ targetProxy = 6184B0E11E047254AC77EBB8 /* PBXContainerItemProxy */;
};
- DA1022D5B25104A90CD25100 /* PBXTargetDependency */ = {
+ D0E039756C657969DADABB3C /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "SliceEscape macOS";
- target = 83CCFF5F1359DE0B92E2AF70 /* SliceEscape macOS */;
- targetProxy = AE2581B83FEAD1F021912FC3 /* PBXContainerItemProxy */;
+ name = "IceServantLocator macOS";
+ target = 181D4BB2B500C7095E790261 /* IceServantLocator macOS */;
+ targetProxy = E63FD911A40125C2CF043B18 /* PBXContainerItemProxy */;
};
- DAC125EAC29F17096A3A0D02 /* PBXTargetDependency */ = {
+ D24946AFE4920E7A0383993E /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceEnums macOS";
- target = BA3C6CB03E611F920F0CBA82 /* IceEnums macOS */;
- targetProxy = 9446D57837E11F6328E89E81 /* PBXContainerItemProxy */;
+ name = "IceInheritance macOS";
+ target = B7D8F90200493C54A87563A7 /* IceInheritance macOS */;
+ targetProxy = A75906D1680C44085B721E4E /* PBXContainerItemProxy */;
};
- DDB976A3F15917AC6BA90D21 /* PBXTargetDependency */ = {
+ D3618EDA9EE5FF1FC880FD07 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceUdp iOS";
- target = B7B10DC70A80C1FB0D874813 /* IceUdp iOS */;
- targetProxy = 9A903E4533595CFC35B34AF8 /* PBXContainerItemProxy */;
+ name = "IceRetry macOS";
+ target = 1A56C6EA194130F78ED3E3D7 /* IceRetry macOS */;
+ targetProxy = 030214C9E38DA4F8C962472F /* PBXContainerItemProxy */;
};
- E05946E2750ABAF28332F61F /* PBXTargetDependency */ = {
+ DB588519F47752F74E251B38 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceSlicingExceptions macOS";
- target = 928BFD8C43F5AA1C2F7F86EE /* IceSlicingExceptions macOS */;
- targetProxy = ED6431DD910A350DEFDD2F45 /* PBXContainerItemProxy */;
+ name = "IceEnums macOS";
+ target = 33A418E3474BE5E738D35102 /* IceEnums macOS */;
+ targetProxy = BFAB99A0AE823ABA47DCA0F4 /* PBXContainerItemProxy */;
};
- F122169496F0D7464AF78F53 /* PBXTargetDependency */ = {
+ E146E9FB790183C4B924BC2A /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "Ice macOS";
- target = 89D3AFE4AD95A970E6498E06 /* Ice macOS */;
- targetProxy = F6075072A6FC0C0CED81663F /* PBXContainerItemProxy */;
+ name = "IceProperties macOS";
+ target = B3C1AB542406B80D9E28FD83 /* IceProperties macOS */;
+ targetProxy = 5380992F59A423C8F1C9E9CD /* PBXContainerItemProxy */;
};
- F1390367DA81D3738B47882C /* PBXTargetDependency */ = {
+ E20C1B352D3C4E6B8435BA06 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceSlicingObjectsAMD macOS";
- target = 28D7C910F8C11FA8AE746E5F /* IceSlicingObjectsAMD macOS */;
- targetProxy = 916A35394A23A1E0EB9C2BBF /* PBXContainerItemProxy */;
+ name = "Ice C++11 iOS";
+ target = CFCBBCD749119BF8D24C0547 /* Ice C++11 iOS */;
+ targetProxy = A690C8A30A880775964DF498 /* PBXContainerItemProxy */;
};
- F31B5C26D7CD1F507855EE50 /* PBXTargetDependency */ = {
+ EC7491E26BB80D883B62B353 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Ice C++11 iOS";
- target = 0914A24DE1888840E5B162E7 /* Ice C++11 iOS */;
- targetProxy = 8B0C79421CE237E98D9E81B8 /* PBXContainerItemProxy */;
+ target = CFCBBCD749119BF8D24C0547 /* Ice C++11 iOS */;
+ targetProxy = 76598028A2F93482B079F7AF /* PBXContainerItemProxy */;
};
- F564720888BC11B9DE627E2E /* PBXTargetDependency */ = {
+ ED3AA317487A00E88FB02576 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Ice C++11 iOS";
- target = 0914A24DE1888840E5B162E7 /* Ice C++11 iOS */;
- targetProxy = 9035746230519385E5995357 /* PBXContainerItemProxy */;
+ target = CFCBBCD749119BF8D24C0547 /* Ice C++11 iOS */;
+ targetProxy = E029381EC5C5083053F04DBE /* PBXContainerItemProxy */;
};
- F73C0D35E3D7AAC3549AA38B /* PBXTargetDependency */ = {
+ F2A554033353FB741C4F3296 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceInvoke macOS";
- target = 3ED36C0437C2FD7C1609CEAA /* IceInvoke macOS */;
- targetProxy = 07661F58C40FC5FF33AFB4D6 /* PBXContainerItemProxy */;
+ name = "SliceEscape iOS";
+ target = 9481764D72790337282158DA /* SliceEscape iOS */;
+ targetProxy = 9984A75D791A016FAAB4327C /* PBXContainerItemProxy */;
};
- FCF7FC31BBEC4E7C38EB13CC /* PBXTargetDependency */ = {
+ F37E61DF81732179C80C1F21 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "Ice C++11 macOS";
- target = 16B8E7C8A49D358168590178 /* Ice C++11 macOS */;
- targetProxy = B303B6583947A230B6657276 /* PBXContainerItemProxy */;
+ name = "IceDefaultValue macOS";
+ target = 5AB40796E10DD225752975C0 /* IceDefaultValue macOS */;
+ targetProxy = 1B6F42813AA740B1B64C7DA3 /* PBXContainerItemProxy */;
};
- FFB69BD57020E38CBDC4A5FC /* PBXTargetDependency */ = {
+ F4ECEDB234A8FAA2C2A90A0C /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = "IceRetry macOS";
- target = 8785D7837C39C2283224DA75 /* IceRetry macOS */;
- targetProxy = 92F64720DE0369182A4AD85D /* PBXContainerItemProxy */;
+ name = "IceAmi macOS";
+ target = 9BF54EDF114BEAB8899A47F9 /* IceAmi macOS */;
+ targetProxy = AF09B5EAF3F1C756D717F57F /* PBXContainerItemProxy */;
+ };
+ F6C82AA58467CEC036497C5C /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ name = "IceSlicingExceptionsAMD macOS";
+ target = CC09866B17B00F50BB557DAA /* IceSlicingExceptionsAMD macOS */;
+ targetProxy = F9E4AF687879C20C39BDDE78 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */
- 00C7491B1D4B2B328E06BE19 /* Release */ = {
+ 008BE08EBFD705AB8BD9D06C /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold;
- PRODUCT_NAME = IceHold;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin;
+ PRODUCT_NAME = IceAdmin;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- 012C5E0D02A6964B3730412D /* Debug */ = {
+ 00A21B1A617A14C477476556 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -14127,8 +14228,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance;
- PRODUCT_NAME = IceInheritance;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue;
+ PRODUCT_NAME = IceDefaultValue;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -14138,11 +14239,11 @@
};
name = Debug;
};
- 01E69FDCC032158B376B695F /* Release */ = {
+ 039D63D338B998BFF11DD716 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -14154,51 +14255,46 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD;
- PRODUCT_NAME = IceProxyAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry;
+ PRODUCT_NAME = IceRetry;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 02ABF61ECA113EAA8859C9DF /* Debug */ = {
+ 05E00A29D504F28ED0EF0D4C /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/IceGrid/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid;
- PRODUCT_NAME = IceGrid;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD;
+ PRODUCT_NAME = IceOptionalAMD;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
+ VALIDATE_PRODUCT = YES;
+ WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 034B5F3CE6F42E16E92A1380 /* Debug */ = {
+ 06FBA0741F143D8124B0A653 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -14214,8 +14310,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums;
- PRODUCT_NAME = IceEnums;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator;
+ PRODUCT_NAME = IceServantLocator;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -14225,11 +14321,11 @@
};
name = Debug;
};
- 04D067A4D87C2B3998BD0CE0 /* Debug */ = {
+ 0833F58034C83EDB39D5E724 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -14241,22 +14337,78 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy;
- PRODUCT_NAME = IceProxy;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration;
+ PRODUCT_NAME = IceSSLConfiguration;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
+ };
+ 08934979BC67642EA5409A1C /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_ANALYZER_NONNULL = YES;
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
+ CLANG_CXX_LIBRARY = "libc++";
+ CLANG_ENABLE_MODULES = YES;
+ CLANG_ENABLE_OBJC_ARC = YES;
+ CLANG_ENABLE_OBJC_WEAK = YES;
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
+ CLANG_WARN_BOOL_CONVERSION = YES;
+ CLANG_WARN_COMMA = YES;
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
+ CLANG_WARN_EMPTY_BODY = YES;
+ CLANG_WARN_ENUM_CONVERSION = YES;
+ CLANG_WARN_INFINITE_RECURSION = YES;
+ CLANG_WARN_INT_CONVERSION = YES;
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
+ CLANG_WARN_UNREACHABLE_CODE = YES;
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
+ COPY_PHASE_STRIP = NO;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ ENABLE_NS_ASSERTIONS = NO;
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
+ GCC_C_LANGUAGE_STANDARD = gnu11;
+ 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;
+ MTL_ENABLE_DEBUG_INFO = NO;
+ MTL_FAST_MATH = YES;
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ SWIFT_COMPILATION_MODE = wholemodule;
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
+ SWIFT_VERSION = 5.0;
+ USE_HEADERMAP = NO;
+ };
+ name = Release;
};
- 051A0362ED35F02529364D04 /* Debug */ = {
+ 08D0D30B46A1CAE9D54981E1 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -14270,8 +14422,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant;
- PRODUCT_NAME = IceDefaultServant;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo;
+ PRODUCT_NAME = IceInfo;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -14279,13 +14431,13 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 06D67E7D5EAC529E06947B65 /* Debug */ = {
+ 099F8A62BFB5B4027E18CC9D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -14297,128 +14449,80 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets;
- PRODUCT_NAME = IceFacets;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout;
+ PRODUCT_NAME = IceTimeout;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 072E641EA962781B39BB011B /* Release */ = {
+ 0BF86E11398A3FF13379FB29 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- NDEBUG,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11iOS";
- PRODUCT_NAME = "IceLocatorDiscovery++11iOS";
- SDKROOT = iphoneos;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope;
+ PRODUCT_NAME = IceScope;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
+ SUPPORTED_PLATFORMS = macosx;
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
+ WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- 0751EF7CDD4646CC9F36F41A /* Release */ = {
+ 0CFEA74E7C60AF754F14630A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- NDEBUG,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
- INFOPLIST_FILE = src/IceImpl/Info.plist;
+ INFOPLIST_FILE = src/IceStorm/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- OTHER_LDFLAGS = (
- "-lbz2",
- "-liconv",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl;
- PRODUCT_NAME = IceImpl;
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
- };
- name = Release;
- };
- 07B091A4174AD412920E6ACC /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 3.7.5;
- DYLIB_COMPATIBILITY_VERSION = 0;
- DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
- ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo;
- PRODUCT_NAME = IceInfo;
- SDKROOT = iphoneos;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm;
+ PRODUCT_NAME = IceStorm;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
- WRAPPER_EXTENSION = bundle;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
- name = Release;
+ name = Debug;
};
- 08B4362A683703FFB0035705 /* Debug */ = {
+ 0D58EBD3E57EBA6F2D7B8616 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -14426,88 +14530,86 @@
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- FRAMEWORK_VERSION = A;
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/Ice/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice;
- PRODUCT_NAME = Ice;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional;
+ PRODUCT_NAME = IceOptional;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
+ WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- 090AFD1CD3AE0BE01D3DD5D3 /* Release */ = {
+ 0E10447E4E993E4BBD671967 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD;
- PRODUCT_NAME = IceSlicingExceptionsAMD;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties;
+ PRODUCT_NAME = IceProperties;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- 0A367D220705ABB961713B63 /* Release */ = {
+ 0EAA1E59AE8D131750497ADA /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke;
- PRODUCT_NAME = IceInvoke;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm;
+ PRODUCT_NAME = IceAcm;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 0A9049889B62C21DF841FBD0 /* Debug */ = {
+ 0F0F076F1B8AD19AD59E5638 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -14525,8 +14627,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD;
- PRODUCT_NAME = IceOptionalAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp;
+ PRODUCT_NAME = IceUdp;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -14536,11 +14638,11 @@
};
name = Debug;
};
- 0CE91915730CCC898BDDAE0F /* Debug */ = {
+ 102B6B127044322A87DA8057 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -14552,22 +14654,23 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation;
- PRODUCT_NAME = IceLocation;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional;
+ PRODUCT_NAME = IceOptional;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 0DA4C8E16A7F56A91D6B6617 /* Debug */ = {
+ 124748EE53668E7A57BD72DF /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -14581,8 +14684,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape;
- PRODUCT_NAME = SliceEscape;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding;
+ PRODUCT_NAME = IceBinding;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -14590,42 +14693,41 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 0F0D63D3E58AB25B22B320D1 /* Debug */ = {
+ 12578991F42D0F4C626E7B61 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- FRAMEWORK_VERSION = A;
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/IceGrid/Info.plist;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid;
- PRODUCT_NAME = IceGrid;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon;
+ PRODUCT_NAME = TestCommon;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
- 0F8019167E458D8670AAE005 /* Release */ = {
+ 1352C78C8485C5D52ECBCC53 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -14641,8 +14743,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout;
- PRODUCT_NAME = IceTimeout;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator;
+ PRODUCT_NAME = IceServantLocator;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -14653,7 +14755,43 @@
};
name = Release;
};
- 1127BB99CE9704A819AB4CC4 /* Debug */ = {
+ 13804B4BCEFCCA9D0969BE88 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 3.7.5;
+ DYLIB_COMPATIBILITY_VERSION = 0;
+ DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_TESTABILITY = NO;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ NDEBUG,
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = YES;
+ GCC_TREAT_WARNINGS_AS_ERRORS = YES;
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ OTHER_LDFLAGS = "-ObjC";
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11iOS";
+ PRODUCT_NAME = "IceDiscovery++11iOS";
+ SDKROOT = iphoneos;
+ SKIP_INSTALL = YES;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+ 1545247935082ACC11738D41 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -14661,55 +14799,60 @@
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ INFOPLIST_FILE = src/Ice/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD;
- PRODUCT_NAME = IceSlicingExceptionsAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice;
+ PRODUCT_NAME = Ice;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
name = Debug;
};
- 114E3442E15EC23AA0B6B6E6 /* Debug */ = {
+ 17CB928DEC07D711D2299379 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator;
- PRODUCT_NAME = IceServantLocator;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor;
+ PRODUCT_NAME = IceInterceptor;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- 13EB38FE5FCBBC5BCFF10984 /* Release */ = {
+ 17FE64C5BD1543FD7B0E01A1 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -14718,6 +14861,42 @@
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_TESTABILITY = NO;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ NDEBUG,
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = YES;
+ GCC_TREAT_WARNINGS_AS_ERRORS = YES;
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ OTHER_LDFLAGS = "-ObjC";
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11iOS";
+ PRODUCT_NAME = "IceLocatorDiscovery++11iOS";
+ SDKROOT = iphoneos;
+ SKIP_INSTALL = YES;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ };
+ name = Release;
+ };
+ 18BDC43DE2D13C9FF5693EFA /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 3.7.5;
+ DYLIB_COMPATIBILITY_VERSION = 0;
+ DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
@@ -14725,48 +14904,45 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties;
- PRODUCT_NAME = IceProperties;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke;
+ PRODUCT_NAME = IceInvoke;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 143B16414490D434C06C8953 /* Release */ = {
+ 1AABE36DADEB39D90D4409BE /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD;
- PRODUCT_NAME = IceSlicingExceptionsAMD;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD;
+ PRODUCT_NAME = IceExceptionsAMD;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 157611AA6AF8A89368D668D0 /* Debug */ = {
+ 1BF3E1DCE82AC019D989071C /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -14782,8 +14958,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin;
- PRODUCT_NAME = IceAdmin;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD;
+ PRODUCT_NAME = IceOptionalAMD;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -14793,9 +14969,11 @@
};
name = Debug;
};
- 170F4376D214A66672D44134 /* Debug */ = {
+ 1BFFB112DF76451614F1DE4F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
@@ -14803,30 +14981,27 @@
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ INFOPLIST_FILE = test/TestDriver/macOS/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope;
- PRODUCT_NAME = IceScope;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller";
+ PRODUCT_NAME = TestDriver;
SDKROOT = macosx;
- SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- 19F99432D96C70B9DD0A926C /* Release */ = {
+ 1C98D505033B88A0C855FA35 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -14840,8 +15015,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices;
- PRODUCT_NAME = IceServices;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape;
+ PRODUCT_NAME = SliceEscape;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -14849,9 +15024,9 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 1A0B0A7400018FE8D91CF77C /* Release */ = {
+ 1CF17C29C3BDAFA8277864F3 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -14867,8 +15042,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets;
- PRODUCT_NAME = IceFacets;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD;
+ PRODUCT_NAME = IceOperationsAMD;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -14879,182 +15054,184 @@
};
name = Release;
};
- 1B577F1F7D17909A242E4900 /* Release */ = {
+ 1E8213C73A7DEF8C9C2BA4EC /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD;
- PRODUCT_NAME = IceProxyAMD;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy;
+ PRODUCT_NAME = IceProxy;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 1E3438C5E9FF11BD87977416 /* Release */ = {
+ 202865DFC39AE72F094ED6A8 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions;
- PRODUCT_NAME = IceSlicingExceptions;
- SDKROOT = macosx;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon;
+ PRODUCT_NAME = TestCommon;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
name = Release;
};
- 1ECCBEBDCCAD130B7DA0C47C /* Release */ = {
+ 20AF012B89CC69AD15F5DFAE /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions;
- PRODUCT_NAME = IceSlicingExceptions;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects;
+ PRODUCT_NAME = IceSlicingObjects;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- 1FBF4E9E22A367C25220BE1D /* Release */ = {
+ 232A051D978EFD1D4BDA2C71 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/Glacier2/Info.plist;
+ INFOPLIST_FILE = src/IceGrid/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2;
- PRODUCT_NAME = Glacier2;
- SDKROOT = iphoneos;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid;
+ PRODUCT_NAME = IceGrid;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
- name = Release;
+ name = Debug;
};
- 2007DCB0305D9778183DD30D /* Debug */ = {
+ 2401C5494B128F60C5204AFA /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD;
- PRODUCT_NAME = IceSlicingExceptionsAMD;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry;
+ PRODUCT_NAME = IceRetry;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 24FB5A2351278B304A14C5AD /* Release */ = {
+ 2717930FCC3A81045F687131 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD;
- PRODUCT_NAME = IceServantLocatorAMD;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD;
+ PRODUCT_NAME = IceOperationsAMD;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 2573E423F5F1DE2B6FA7A834 /* Release */ = {
+ 2905E102F0FAC2533272EA21 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -15070,8 +15247,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD;
- PRODUCT_NAME = IceSlicingObjectsAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD;
+ PRODUCT_NAME = IceServantLocatorAMD;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -15082,67 +15259,74 @@
};
name = Release;
};
- 25F7F12F4487DF2FA845B8C5 /* Release */ = {
+ 2A6486F904C125D63FA0D7C2 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- FRAMEWORK_VERSION = A;
+ EXECUTABLE_PREFIX = lib;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ NDEBUG,
+ );
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/IceStorm/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm;
- PRODUCT_NAME = IceStorm;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11macOS";
+ PRODUCT_NAME = "Ice++11macOS";
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
};
name = Release;
};
- 26F0C026CF4D20186ADAD3C0 /* Debug */ = {
+ 2AE5D93384A1A0CB2D5EE167 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ EXECUTABLE_PREFIX = lib;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ );
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects;
- PRODUCT_NAME = IceSlicingObjects;
- SDKROOT = iphoneos;
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS";
+ PRODUCT_NAME = "IceDiscovery++11macOS";
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ SUPPORTED_PLATFORMS = macosx;
};
name = Debug;
};
- 2736FA7B7D20CBEFF6981D84 /* Release */ = {
+ 2D8C5568F4C3BC3510EB618E /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -15160,8 +15344,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout;
- PRODUCT_NAME = IceTimeout;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD;
+ PRODUCT_NAME = IceSlicingObjectsAMD;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -15171,11 +15355,11 @@
};
name = Release;
};
- 290339A820ADE2412811A1C2 /* Release */ = {
+ 2DDFFCE5ACD024B19B23099A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -15189,8 +15373,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp;
- PRODUCT_NAME = IceUdp;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations;
+ PRODUCT_NAME = IceOperations;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -15198,13 +15382,13 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 2B53AC59FFC3F3AC12756BB4 /* Debug */ = {
+ 2E9D8630DFC1F25E74F68895 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -15218,8 +15402,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices;
- PRODUCT_NAME = IceServices;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin;
+ PRODUCT_NAME = IceAdmin;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -15227,76 +15411,70 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 2BF38B70681CFA78052EBA01 /* Debug */ = {
+ 2EF17FDD47A984C63821D1A9 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceSSL++11iOS";
- PRODUCT_NAME = "IceSSL++11iOS";
- SDKROOT = iphoneos;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD;
+ PRODUCT_NAME = IceOptionalAMD;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- TARGETED_DEVICE_FAMILY = "1,2";
+ SUPPORTED_PLATFORMS = macosx;
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
+ WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 2C432741CEC6D7774F104EFC /* Debug */ = {
+ 2F133FABAC6FAC5337E30B70 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm;
- PRODUCT_NAME = IceAcm;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions;
+ PRODUCT_NAME = IceExceptions;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 2E40FD59E4DAA91C5F0A0DAA /* Release */ = {
+ 33799EB325747E6AC59F33B8 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -15308,19 +15486,18 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant;
- PRODUCT_NAME = IceDefaultServant;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance;
+ PRODUCT_NAME = IceInheritance;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 2F8A9F7D9C45082C75B58899 /* Release */ = {
+ 340EEC288385DC81E3F46449 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -15338,8 +15515,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator;
- PRODUCT_NAME = IceServantLocator;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional;
+ PRODUCT_NAME = IceOptional;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -15349,7 +15526,7 @@
};
name = Release;
};
- 3444D1411BB668EAE7F10614 /* Debug */ = {
+ 35331724DA4A0C3DA6397692 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -15365,8 +15542,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue;
- PRODUCT_NAME = IceDefaultValue;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape;
+ PRODUCT_NAME = SliceEscape;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -15376,39 +15553,36 @@
};
name = Debug;
};
- 3A4159DD5A9460A3324512D1 /* Debug */ = {
+ 398BC35B9F18C87421B33C28 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon;
- PRODUCT_NAME = TestCommon;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets;
+ PRODUCT_NAME = IceFacets;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
+ WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- 3BB5156212F6CAD77B4402EA /* Release */ = {
+ 39FC19E4D8C634B5802CDFE0 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -15426,8 +15600,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation;
- PRODUCT_NAME = IceAdapterDeactivation;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue;
+ PRODUCT_NAME = IceDefaultValue;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -15437,69 +15611,65 @@
};
name = Release;
};
- 3C0A1DBFB2B99B064F5014D6 /* Release */ = {
+ 3B0002BADD089964C1648A63 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue;
- PRODUCT_NAME = IceDefaultValue;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp;
+ PRODUCT_NAME = IceUdp;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 3D53E388DFF779F6C980A3BC /* Release */ = {
+ 3B46B8A1A49B9A6FE126A7F3 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD;
PRODUCT_NAME = IceSlicingObjectsAMD;
- SDKROOT = macosx;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 3D8F6302F9F3A80E0B25D7BD /* Release */ = {
+ 3C9127D7CF14D954309642D0 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -15511,23 +15681,22 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions;
- PRODUCT_NAME = IceExceptions;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation;
+ PRODUCT_NAME = IceLocation;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 3DE93455EDFA82DA5788F7F7 /* Release */ = {
+ 3DC0609F40194772A821CA9C /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -15541,8 +15710,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional;
- PRODUCT_NAME = IceOptional;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope;
+ PRODUCT_NAME = IceScope;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -15550,71 +15719,68 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 3E836AF2FF73732E599F2F80 /* Debug */ = {
+ 3EC69D7BCBD2EF52FAD27A3A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/IceStorm/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm;
- PRODUCT_NAME = IceStorm;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices;
+ PRODUCT_NAME = IceServices;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
+ WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- 3EEA52775343CE79554651E7 /* Debug */ = {
+ 40AF0F3F14747386982D1149 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INFOPLIST_FILE = test/TestDriver/iOS/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD;
- PRODUCT_NAME = IceExceptionsAMD;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ ONLY_ACTIVE_ARCH = YES;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller";
+ PRODUCT_NAME = TestDriver;
SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
};
- name = Debug;
+ name = Release;
};
- 421771E371FB7503D1F278D8 /* Release */ = {
+ 42B0469C1DF9C1E9F83FB117 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
@@ -15622,52 +15788,53 @@
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestDriver/macOS/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller";
- PRODUCT_NAME = TestDriver;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD;
+ PRODUCT_NAME = IceOperationsAMD;
SDKROOT = macosx;
+ SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 42266385052DF500DA883EB5 /* Debug */ = {
+ 4386B411E6324B59F5825FB7 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional;
- PRODUCT_NAME = IceOptional;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo;
+ PRODUCT_NAME = IceInfo;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- 43EA763B996E7A3728360494 /* Release */ = {
+ 444CA4C1F1FF378DCCE1111A /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -15683,8 +15850,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape;
- PRODUCT_NAME = SliceEscape;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices;
+ PRODUCT_NAME = IceServices;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -15695,45 +15862,38 @@
};
name = Release;
};
- 447E42AB4F306EC4A83EC118 /* Release */ = {
+ 48BC71471E26E687E4D602EB /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- EXECUTABLE_PREFIX = lib;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- NDEBUG,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS";
- PRODUCT_NAME = "IceDiscovery++11macOS";
- SDKROOT = macosx;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties;
+ PRODUCT_NAME = IceProperties;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
+ WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 4682A908804D88CE2AE7382E /* Debug */ = {
+ 4A8F87209B12C190E9374FB6 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -15745,22 +15905,23 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm;
- PRODUCT_NAME = IceAcm;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations;
+ PRODUCT_NAME = IceOperations;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 47027A2BCBE400B522F80C16 /* Debug */ = {
+ 4E1A61EF2CC0DF88A95375C4 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -15772,22 +15933,23 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo;
- PRODUCT_NAME = IceInfo;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD;
+ PRODUCT_NAME = IceProxyAMD;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 474732C3E216FB2E26FBFFD8 /* Debug */ = {
+ 4E27362132EDEDF3E8255027 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -15801,8 +15963,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout;
- PRODUCT_NAME = IceTimeout;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance;
+ PRODUCT_NAME = IceInheritance;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -15810,69 +15972,69 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 492EBC11A03C5FF389A16EFD /* Debug */ = {
+ 4F7C36D1485E8EFF35D87CA4 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD;
- PRODUCT_NAME = IceOperationsAMD;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor;
+ PRODUCT_NAME = IceInterceptor;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 4961474D9891402CE8459799 /* Release */ = {
+ 5185467D04F9C365D6BC11CC /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestDriver/iOS/Info.plist;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- ONLY_ACTIVE_ARCH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller";
- PRODUCT_NAME = TestDriver;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi;
+ PRODUCT_NAME = IceAmi;
SDKROOT = iphoneos;
+ SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
+ WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 4A1AE663E6DC2A234693374E /* Release */ = {
+ 51AC082DB34CF45C6A6E07B0 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -15886,8 +16048,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD;
- PRODUCT_NAME = IceExceptionsAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding;
+ PRODUCT_NAME = IceBinding;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -15895,9 +16057,42 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 4B13610CB958657ACB20C730 /* Debug */ = {
+ 51B7CFEA55483BB6DC6B4344 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 3.7.5;
+ DYLIB_COMPATIBILITY_VERSION = 0;
+ DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_TESTABILITY = NO;
+ EXECUTABLE_PREFIX = lib;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = YES;
+ GCC_TREAT_WARNINGS_AS_ERRORS = YES;
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceSSL++11macOS";
+ PRODUCT_NAME = "IceSSL++11macOS";
+ SDKROOT = macosx;
+ SKIP_INSTALL = YES;
+ SUPPORTED_PLATFORMS = macosx;
+ };
+ name = Debug;
+ };
+ 51E3C303AC6B4BB50B2F2610 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -15913,8 +16108,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape;
- PRODUCT_NAME = SliceEscape;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD;
+ PRODUCT_NAME = IceSlicingExceptionsAMD;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -15924,11 +16119,11 @@
};
name = Debug;
};
- 4CAECEDD333C4EC74852A1A3 /* Release */ = {
+ 536D19A6325EC1524A5A37B0 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -15942,8 +16137,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo;
- PRODUCT_NAME = IceInfo;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects;
+ PRODUCT_NAME = IceSlicingObjects;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -15951,13 +16146,47 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
+ name = Debug;
+ };
+ 53AB641F579CDCAA1C6BAF61 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 3.7.5;
+ DYLIB_COMPATIBILITY_VERSION = 0;
+ DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_TESTABILITY = NO;
+ EXECUTABLE_PREFIX = lib;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ NDEBUG,
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = YES;
+ GCC_TREAT_WARNINGS_AS_ERRORS = YES;
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceSSL++11macOS";
+ PRODUCT_NAME = "IceSSL++11macOS";
+ SDKROOT = macosx;
+ SKIP_INSTALL = YES;
+ SUPPORTED_PLATFORMS = macosx;
+ };
name = Release;
};
- 4D32D3FDA87BD64C0D10B22A /* Release */ = {
+ 5745107C260877E0F4995385 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -15969,23 +16198,22 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration;
- PRODUCT_NAME = IceSSLConfiguration;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant;
+ PRODUCT_NAME = IceDefaultServant;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 507ED95C55131047609CE376 /* Debug */ = {
+ 5A49BBE77790208E61AC2BB1 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -15997,22 +16225,23 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream;
- PRODUCT_NAME = IceStream;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation;
+ PRODUCT_NAME = IceAdapterDeactivation;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 50A76DEE0772B64982D0A5BF /* Release */ = {
+ 5C2E36E9A82D879BDEB88118 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -16024,75 +16253,80 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices;
- PRODUCT_NAME = IceServices;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding;
+ PRODUCT_NAME = IceBinding;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 511407E4A456347B46256740 /* Debug */ = {
+ 5C85058CB2190CD63680628D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ EXECUTABLE_PREFIX = lib;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ );
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects;
- PRODUCT_NAME = IceSlicingObjects;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11macOS";
+ PRODUCT_NAME = "Ice++11macOS";
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- 51BB4E7A053D796C95E55FE6 /* Debug */ = {
+ 5CF524A9038A47397DFE32B4 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration;
- PRODUCT_NAME = IceSSLConfiguration;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape;
+ PRODUCT_NAME = SliceEscape;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 51D6E04ABDD7EBBA6E22DC11 /* Release */ = {
+ 5DF9F00176C96CAFC429AEBD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -16100,36 +16334,32 @@
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- FRAMEWORK_VERSION = A;
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon;
- PRODUCT_NAME = TestCommon;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects;
+ PRODUCT_NAME = IceObjects;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
+ WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- 5434D1EE8E6F3372DE15AD80 /* Debug */ = {
+ 5E5F11A6D5B3425CB2F5E711 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -16141,18 +16371,48 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD;
- PRODUCT_NAME = IceProxyAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding;
+ PRODUCT_NAME = IceBinding;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 548390B1FE957407F19E6633 /* Debug */ = {
+ 5E9DE732C9CF04B8F9E63C71 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
+ CURRENT_PROJECT_VERSION = 3.7.5;
+ DYLIB_COMPATIBILITY_VERSION = 0;
+ DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
+ ENABLE_TESTABILITY = NO;
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ GCC_SYMBOLS_PRIVATE_EXTERN = YES;
+ GCC_TREAT_WARNINGS_AS_ERRORS = YES;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation;
+ PRODUCT_NAME = IceLocation;
+ SDKROOT = macosx;
+ SKIP_INSTALL = YES;
+ SUPPORTED_PLATFORMS = macosx;
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
+ WRAPPER_EXTENSION = bundle;
+ };
+ name = Release;
+ };
+ 5EB4B48FD5B27E59CCF63EB0 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -16170,8 +16430,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD;
- PRODUCT_NAME = IceProxyAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD;
+ PRODUCT_NAME = IceSlicingExceptionsAMD;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -16181,59 +16441,51 @@
};
name = Debug;
};
- 54E40AC1FB703EBF189075A5 /* Debug */ = {
+ 60DD68512EB6976BCD99C291 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11iOS";
- PRODUCT_NAME = "Ice++11iOS";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets;
+ PRODUCT_NAME = IceFacets;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- TARGETED_DEVICE_FAMILY = "1,2";
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
+ WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 54EC3FEA6AA068240E1A0A72 /* Debug */ = {
+ 6263BC7D879FD24BD9B4B039 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- FRAMEWORK_VERSION = A;
+ EXECUTABLE_PREFIX = lib;
GCC_PREPROCESSOR_DEFINITIONS = (
ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
ICE_STATIC_LIBS,
ICE_SWIFT,
+ NDEBUG,
);
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
@@ -16242,25 +16494,16 @@
"$(SYMROOT)/$(PLATFORM_NAME)/include/",
"$(SRCROOT)/../cpp/src/",
);
- INFOPLIST_FILE = src/IceImpl/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- OTHER_LDFLAGS = (
- "-lbz2",
- "-liconv",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl;
- PRODUCT_NAME = IceImpl;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS";
+ PRODUCT_NAME = "IceLocatorDiscovery++11macOS";
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
};
- name = Debug;
+ name = Release;
};
- 56BFF26778E2C67E75B3CF2E /* Release */ = {
+ 62A97857C525CC9FD8C34A57 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -16276,8 +16519,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD;
- PRODUCT_NAME = IceServantLocatorAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance;
+ PRODUCT_NAME = IceInheritance;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -16288,11 +16531,11 @@
};
name = Release;
};
- 56C15BEA2899DCDA255D0D06 /* Release */ = {
+ 6564DEE73272A7AE4BF4E264 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -16304,19 +16547,18 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm;
- PRODUCT_NAME = IceAcm;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional;
+ PRODUCT_NAME = IceOptional;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 58C7F3F4E77F6D715528F1AD /* Release */ = {
+ 65BB8B958CF4116861F0AA96 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -16332,8 +16574,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator;
- PRODUCT_NAME = IceServantLocator;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects;
+ PRODUCT_NAME = IceObjects;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -16344,102 +16586,35 @@
};
name = Release;
};
- 5C325BA8D84A7C534974FB29 /* Release */ = {
+ 66CF463B66EA573320E13402 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/IceGrid/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid;
- PRODUCT_NAME = IceGrid;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry;
+ PRODUCT_NAME = IceRetry;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
- };
- name = Release;
- };
- 5EF64097C3D5752B2F01C73E /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
- CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
- CURRENT_PROJECT_VERSION = 3.7.5;
- DYLIB_COMPATIBILITY_VERSION = 0;
- DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
- ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream;
- PRODUCT_NAME = IceStream;
- SDKROOT = macosx;
- SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- 5FA0FEBF4180835D9CADF1AC /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 3.7.5;
- DYLIB_COMPATIBILITY_VERSION = 0;
- DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_TESTABILITY = NO;
- EXECUTABLE_PREFIX = lib;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- );
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceSSL++11macOS";
- PRODUCT_NAME = "IceSSL++11macOS";
- SDKROOT = macosx;
- SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
- };
- name = Debug;
- };
- 6042E63FE3F570CB57CAD941 /* Debug */ = {
+ 676AEE9D3591D79E739B2904 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -16457,8 +16632,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance;
- PRODUCT_NAME = IceInheritance;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation;
+ PRODUCT_NAME = IceAdapterDeactivation;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -16468,7 +16643,7 @@
};
name = Debug;
};
- 61B0DDDB3FC297E15AB1A7B2 /* Debug */ = {
+ 679D9A793B0689D42233E891 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
@@ -16530,12 +16705,39 @@
};
name = Debug;
};
- 62F28E4D4CA43BB98E9D3796 /* Debug */ = {
+ 68A582DF4284CEE2B855C772 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 3.7.5;
+ DYLIB_COMPATIBILITY_VERSION = 0;
+ DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
+ ENABLE_TESTABILITY = NO;
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ GCC_SYMBOLS_PRIVATE_EXTERN = YES;
+ GCC_TREAT_WARNINGS_AS_ERRORS = YES;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold;
+ PRODUCT_NAME = IceHold;
+ SDKROOT = iphoneos;
+ SKIP_INSTALL = YES;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
+ WRAPPER_EXTENSION = bundle;
+ };
+ name = Debug;
+ };
+ 68D4E6E8960BBC9832CBB0C2 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -16548,8 +16750,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi;
- PRODUCT_NAME = IceAmi;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp;
+ PRODUCT_NAME = IceUdp;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -16557,68 +16759,13 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
- };
- 63597B808FD72CCACB7CCB2C /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- 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;
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- SWIFT_VERSION = 5.0;
- USE_HEADERMAP = NO;
- };
name = Release;
};
- 63CC16AB88F731CDE05F4FD4 /* Debug */ = {
+ 69124971C29980AD6BF835A7 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -16630,18 +16777,19 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices;
- PRODUCT_NAME = IceServices;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi;
+ PRODUCT_NAME = IceAmi;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 65885AE00DDCA8598CD51A05 /* Debug */ = {
+ 6BFF12FCD4F9AE9287AB54AD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -16673,109 +16821,106 @@
};
name = Debug;
};
- 66F7D0F15A8526E2EB27DC8C /* Debug */ = {
+ 6F7D9ECCAC147AE39618754D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD;
- PRODUCT_NAME = IceSlicingObjectsAMD;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations;
+ PRODUCT_NAME = IceOperations;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 66F9A667CECD39E77317CDC0 /* Release */ = {
+ 6FC5EE48F74C53A7C3181493 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp;
- PRODUCT_NAME = IceUdp;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices;
+ PRODUCT_NAME = IceServices;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- 68CA5357CFDC462B1515902A /* Release */ = {
+ 72578A0200BF937AC84B13D4 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- FRAMEWORK_VERSION = A;
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/Glacier2/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2;
- PRODUCT_NAME = Glacier2;
- SDKROOT = macosx;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo;
+ PRODUCT_NAME = IceInfo;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
+ VALIDATE_PRODUCT = YES;
+ WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- 69374425C2F3B1E537F93EBF /* Debug */ = {
+ 747273DCF5BDFD4E8E424CF4 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ EXECUTABLE_PREFIX = lib;
GCC_PREPROCESSOR_DEFINITIONS = (
ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
ICE_STATIC_LIBS,
ICE_SWIFT,
);
@@ -16786,26 +16931,16 @@
"$(SYMROOT)/$(PLATFORM_NAME)/include/",
"$(SRCROOT)/../cpp/src/",
);
- INFOPLIST_FILE = src/IceImpl/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- OTHER_LDFLAGS = (
- "-lbz2",
- "-liconv",
- );
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl;
- PRODUCT_NAME = IceImpl;
- SDKROOT = iphoneos;
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS";
+ PRODUCT_NAME = "IceLocatorDiscovery++11macOS";
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- TARGETED_DEVICE_FAMILY = "1,2";
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
+ SUPPORTED_PLATFORMS = macosx;
};
name = Debug;
};
- 6AD70E02DF94307C93DFF969 /* Debug */ = {
+ 7546842B287DD00F54F7B5FE /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -16823,8 +16958,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo;
- PRODUCT_NAME = IceInfo;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold;
+ PRODUCT_NAME = IceHold;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -16834,7 +16969,7 @@
};
name = Debug;
};
- 6CC2F791C24C7AF2035F878D /* Release */ = {
+ 7692BE6F26245C178F0CDB8C /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -16850,8 +16985,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance;
- PRODUCT_NAME = IceInheritance;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties;
+ PRODUCT_NAME = IceProperties;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -16862,34 +16997,67 @@
};
name = Release;
};
- 6FF86128BA1063BA03BEA85B /* Debug */ = {
+ 76ADAEC45336E360856C923C /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ GCC_SYMBOLS_PRIVATE_EXTERN = YES;
+ GCC_TREAT_WARNINGS_AS_ERRORS = YES;
+ INFOPLIST_FILE = test/TestDriver/macOS/Info.plist;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller";
+ PRODUCT_NAME = TestDriver;
+ SDKROOT = macosx;
+ SUPPORTED_PLATFORMS = macosx;
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
+ };
+ name = Release;
+ };
+ 7B1F7ADF66A9865F6B9BAEE7 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
+ CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
+ DYLIB_COMPATIBILITY_VERSION = 0;
+ DYLIB_CURRENT_VERSION = 3.7.5;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_TESTABILITY = NO;
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp;
- PRODUCT_NAME = IceUdp;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon;
+ PRODUCT_NAME = TestCommon;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
name = Debug;
};
- 70115ADA48ACA6D5ADA5B31B /* Release */ = {
+ 7B4BB334FC9D091D98A28B94 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -16905,8 +17073,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream;
- PRODUCT_NAME = IceStream;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue;
+ PRODUCT_NAME = IceDefaultValue;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -16917,7 +17085,7 @@
};
name = Release;
};
- 707B02E7750FA7D714002696 /* Debug */ = {
+ 7D262D1305BFCED7E1CCD9C6 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -16935,8 +17103,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue;
- PRODUCT_NAME = IceDefaultValue;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation;
+ PRODUCT_NAME = IceLocation;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -16946,39 +17114,44 @@
};
name = Debug;
};
- 724D6DF359A477074A2F41B9 /* Release */ = {
+ 7D78C0E180F4BCDF1F3FBCEC /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INFOPLIST_FILE = src/Glacier2/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy;
- PRODUCT_NAME = IceProxy;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2;
+ PRODUCT_NAME = Glacier2;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
- WRAPPER_EXTENSION = bundle;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
name = Release;
};
- 76833049B218C730A60ED213 /* Debug */ = {
+ 7FAEA53E9429ADB3D3BD067B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -16992,8 +17165,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold;
- PRODUCT_NAME = IceHold;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy;
+ PRODUCT_NAME = IceProxy;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -17001,13 +17174,13 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 77A1A5BEBFE097292DDBD3F6 /* Release */ = {
+ 7FFBC6967B62AFEC906C0EF4 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -17017,12 +17190,10 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- FRAMEWORK_VERSION = A;
GCC_PREPROCESSOR_DEFINITIONS = (
ICE_CPP11_MAPPING,
ICE_STATIC_LIBS,
ICE_SWIFT,
- NDEBUG,
);
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
@@ -17047,102 +17218,71 @@
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
- name = Release;
+ name = Debug;
};
- 787B8EF657BAD3F6CE5F7050 /* Release */ = {
+ 80F768301C65570B8121AA0F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- EXECUTABLE_PREFIX = lib;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- NDEBUG,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS";
- PRODUCT_NAME = "IceLocatorDiscovery++11macOS";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions;
+ PRODUCT_NAME = IceSlicingExceptions;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
- };
- name = Release;
- };
- 7900EDE13A302FECBD480ED3 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 3.7.5;
- DYLIB_COMPATIBILITY_VERSION = 0;
- DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
- ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional;
- PRODUCT_NAME = IceOptional;
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 7A536EB77C1F17DC4CD19CBC /* Debug */ = {
+ 81A4B493F80C81690E6F4095 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties;
- PRODUCT_NAME = IceProperties;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke;
+ PRODUCT_NAME = IceInvoke;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 7E4072970024CF0647EF74C6 /* Release */ = {
+ 839254410E527EEE239D12BA /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -17152,15 +17292,14 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- FRAMEWORK_VERSION = A;
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/IceGrid/Info.plist;
+ INFOPLIST_FILE = src/Glacier2/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid;
- PRODUCT_NAME = IceGrid;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2;
+ PRODUCT_NAME = Glacier2;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -17169,42 +17308,38 @@
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
- name = Release;
+ name = Debug;
};
- 7F56A2310453A98D305F167F /* Release */ = {
+ 87CA3E4F6DF5D0E7BA5C1A18 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/Ice/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice;
- PRODUCT_NAME = Ice;
- SDKROOT = iphoneos;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator;
+ PRODUCT_NAME = IceServantLocator;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
+ WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 81AA7F0B7FD29BD96C9C2ECD /* Debug */ = {
+ 8A1CF8865E18553C69703745 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -17220,8 +17355,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant;
- PRODUCT_NAME = IceDefaultServant;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm;
+ PRODUCT_NAME = IceAcm;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -17231,36 +17366,35 @@
};
name = Debug;
};
- 87D8D64ACB4FAB1AEF78A2E4 /* Debug */ = {
+ 8BA94984B6EB51FE0D00EF56 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation;
- PRODUCT_NAME = IceLocation;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope;
+ PRODUCT_NAME = IceScope;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 881BA057D2444F063859C12E /* Debug */ = {
+ 8CC3171A3FCB1856FBD85647 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -17278,8 +17412,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor;
- PRODUCT_NAME = IceInterceptor;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin;
+ PRODUCT_NAME = IceAdmin;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -17289,65 +17423,66 @@
};
name = Debug;
};
- 89B2DB16800D728354B6A01F /* Debug */ = {
+ 8DACBA88EE65EFBDCE6107AB /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry;
- PRODUCT_NAME = IceRetry;
- SDKROOT = macosx;
+ INFOPLIST_FILE = src/IceGrid/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid;
+ PRODUCT_NAME = IceGrid;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
name = Debug;
};
- 8BDD46FA48D30EC4BF14CEEF /* Release */ = {
+ 8E1670931F03FCBFCADA7484 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance;
- PRODUCT_NAME = IceInheritance;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation;
+ PRODUCT_NAME = IceAdapterDeactivation;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 8C1650ED9FDB4310DC31B06A /* Release */ = {
+ 913EBE2775995E919DE52FB8 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -17356,26 +17491,34 @@
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ NDEBUG,
+ );
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin;
- PRODUCT_NAME = IceAdmin;
+ OTHER_LDFLAGS = "-ObjC";
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceSSL++11iOS";
+ PRODUCT_NAME = "IceSSL++11iOS";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
+ TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
- WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- 8C70E9C664C8DFF9AB746280 /* Release */ = {
+ 918FBB1141962845B0AC4E62 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -17393,8 +17536,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm;
- PRODUCT_NAME = IceAcm;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions;
+ PRODUCT_NAME = IceExceptions;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -17404,11 +17547,11 @@
};
name = Release;
};
- 8DABC3808377C045284EB13E /* Debug */ = {
+ 935E80C340CF12D852C3CABF /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -17422,8 +17565,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream;
- PRODUCT_NAME = IceStream;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions;
+ PRODUCT_NAME = IceSlicingExceptions;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -17431,9 +17574,9 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- 8FD00B88F170C8B1E4C9035D /* Debug */ = {
+ 93925708771768BF9677076C /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -17451,8 +17594,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy;
- PRODUCT_NAME = IceProxy;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry;
+ PRODUCT_NAME = IceRetry;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -17462,11 +17605,11 @@
};
name = Debug;
};
- 90F28FB88E42D326F3309A71 /* Release */ = {
+ 93D8D4351AEEA435457870F1 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -17478,23 +17621,22 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue;
- PRODUCT_NAME = IceDefaultValue;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD;
+ PRODUCT_NAME = IceProxyAMD;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 9127131DDBF6762C90447345 /* Release */ = {
+ 948AB01C1789BBD6393681F8 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -17506,77 +17648,90 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold;
- PRODUCT_NAME = IceHold;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions;
+ PRODUCT_NAME = IceExceptions;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 95E97AF3334898B85A9C23CC /* Debug */ = {
+ 94B08C006342AD93C5F6174F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ NDEBUG,
+ );
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
+ INFOPLIST_FILE = src/IceImpl/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions;
- PRODUCT_NAME = IceSlicingExceptions;
+ OTHER_LDFLAGS = (
+ "-lbz2",
+ "-liconv",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl;
+ PRODUCT_NAME = IceImpl;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
- name = Debug;
+ name = Release;
};
- 9745E8817D65935C454398ED /* Release */ = {
+ 970E76FE62E5A7999FB94E0E /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin;
- PRODUCT_NAME = IceAdmin;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects;
+ PRODUCT_NAME = IceObjects;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 98BD972172399E4262016113 /* Release */ = {
+ 9AFC4C5F970D1BE275F678E5 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -17592,8 +17747,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor;
- PRODUCT_NAME = IceInterceptor;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream;
+ PRODUCT_NAME = IceStream;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -17604,129 +17759,93 @@
};
name = Release;
};
- 990ECBED0AC456FEC0E8C457 /* Debug */ = {
+ 9B3F57E19DD1FFA2D7E2064F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator;
- PRODUCT_NAME = IceServantLocator;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout;
+ PRODUCT_NAME = IceTimeout;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- 9A3E13614A03F7C9FF225CCF /* Debug */ = {
+ 9BF5CBA8205C2222AEBEF02F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- FRAMEWORK_VERSION = A;
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon;
- PRODUCT_NAME = TestCommon;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin;
+ PRODUCT_NAME = IceAdmin;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
- };
- name = Debug;
- };
- 9B9F2A5C6BC62584690711CB /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
- CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
- CURRENT_PROJECT_VERSION = 3.7.5;
- DYLIB_COMPATIBILITY_VERSION = 0;
- DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestDriver/macOS/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller";
- PRODUCT_NAME = TestDriver;
- SDKROOT = macosx;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- 9C14A9B3F0421D3991A667EA /* Release */ = {
+ 9E117CFEC9DBE7AF5EB395FA /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi;
- PRODUCT_NAME = IceAmi;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions;
+ PRODUCT_NAME = IceSlicingExceptions;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- 9C66177BD8BC08016D289E41 /* Release */ = {
+ 9EA8B4D9E905CDFACD305B00 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -17740,8 +17859,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects;
- PRODUCT_NAME = IceSlicingObjects;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream;
+ PRODUCT_NAME = IceStream;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -17749,38 +17868,36 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- 9ECF31CC7DF9DEA20C18A0D4 /* Debug */ = {
+ A11DFA2EED52074B5A54C39D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD;
- PRODUCT_NAME = IceServantLocatorAMD;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration;
+ PRODUCT_NAME = IceSSLConfiguration;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- A180A9250D2DFCBCCF428889 /* Debug */ = {
+ A167358B2982B76A3F13F173 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -17798,8 +17915,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin;
- PRODUCT_NAME = IceAdmin;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant;
+ PRODUCT_NAME = IceDefaultServant;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -17809,7 +17926,7 @@
};
name = Debug;
};
- A1FB90DCC9BE3AC8E802889D /* Release */ = {
+ A175FF704DEA7EAE6209E3FF /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -17818,34 +17935,26 @@
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- NDEBUG,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceIAP++11iOS";
- PRODUCT_NAME = "IceIAP++11iOS";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects;
+ PRODUCT_NAME = IceSlicingObjects;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- TARGETED_DEVICE_FAMILY = "1,2";
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
VALIDATE_PRODUCT = YES;
+ WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- A274C87FF97A3F7531F36F9B /* Release */ = {
+ A3F50CA42234B9DC4E6C93E2 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -17861,8 +17970,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope;
- PRODUCT_NAME = IceScope;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation;
+ PRODUCT_NAME = IceLocation;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -17873,7 +17982,7 @@
};
name = Release;
};
- A677E13DC54F7FD3616317EF /* Release */ = {
+ A59923004FD48E3549CB08E4 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -17891,8 +18000,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD;
- PRODUCT_NAME = IceOperationsAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums;
+ PRODUCT_NAME = IceEnums;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -17902,69 +18011,69 @@
};
name = Release;
};
- A7A7B9BB64119A172495A694 /* Release */ = {
+ A670EA901930348145CF01CA /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ );
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon;
- PRODUCT_NAME = TestCommon;
+ OTHER_LDFLAGS = "-ObjC";
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11iOS";
+ PRODUCT_NAME = "IceLocatorDiscovery++11iOS";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
};
- name = Release;
+ name = Debug;
};
- A9080B0043CD5276EE77C61C /* Release */ = {
+ A774113163E597F0A2B9ECAF /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope;
- PRODUCT_NAME = IceScope;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant;
+ PRODUCT_NAME = IceDefaultServant;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- A9305E62A5BE5BF47165EBFC /* Debug */ = {
+ ABDFD15B28985A7B6985EAEB /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -17980,8 +18089,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation;
- PRODUCT_NAME = IceAdapterDeactivation;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations;
+ PRODUCT_NAME = IceOperations;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -17991,40 +18100,7 @@
};
name = Debug;
};
- AA179CFEA4032F642D8C3407 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
- CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
- CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
- DYLIB_COMPATIBILITY_VERSION = 0;
- DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
- ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- FRAMEWORK_VERSION = A;
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/Glacier2/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2;
- PRODUCT_NAME = Glacier2;
- SDKROOT = macosx;
- SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
- };
- name = Debug;
- };
- AB36F56DA832178D15A69AAA /* Release */ = {
+ ACB302570A396B8477D88A91 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -18050,8 +18126,8 @@
);
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11iOS";
- PRODUCT_NAME = "IceDiscovery++11iOS";
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceIAP++11iOS";
+ PRODUCT_NAME = "IceIAP++11iOS";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -18060,64 +18136,40 @@
};
name = Release;
};
- AC0533EF7FFA2E87DC60E048 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
- CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
- CURRENT_PROJECT_VERSION = 3.7.5;
- DYLIB_COMPATIBILITY_VERSION = 0;
- DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
- ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD;
- PRODUCT_NAME = IceOptionalAMD;
- SDKROOT = macosx;
- SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
- };
- name = Release;
- };
- AC9DE47338B7B2271E24157B /* Release */ = {
+ B026A1EB6F461CA1EAF5A261 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INFOPLIST_FILE = src/IceGrid/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD;
- PRODUCT_NAME = IceOptionalAMD;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid;
+ PRODUCT_NAME = IceGrid;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
- WRAPPER_EXTENSION = bundle;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
name = Release;
};
- AD105F085F0FC2CC971BBF21 /* Release */ = {
+ B04BB0FDF3120E3355E05E16 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -18131,15 +18183,14 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- FRAMEWORK_VERSION = A;
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/Ice/Info.plist;
+ INFOPLIST_FILE = src/IceStorm/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice;
- PRODUCT_NAME = Ice;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm;
+ PRODUCT_NAME = IceStorm;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -18150,36 +18201,7 @@
};
name = Release;
};
- AD385CA3615023BEDDF6C305 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
- CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
- CURRENT_PROJECT_VERSION = 3.7.5;
- DYLIB_COMPATIBILITY_VERSION = 0;
- DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
- ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets;
- PRODUCT_NAME = IceFacets;
- SDKROOT = macosx;
- SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
- };
- name = Debug;
- };
- AF45A176C4BCD7FB8B24C231 /* Release */ = {
+ B1562430A5CC129977DC512F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -18197,8 +18219,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration;
- PRODUCT_NAME = IceSSLConfiguration;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm;
+ PRODUCT_NAME = IceAcm;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -18208,7 +18230,7 @@
};
name = Release;
};
- B1146288B2AE6ECBD4EC2983 /* Debug */ = {
+ B3AD31B785237B236D5930A8 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -18233,8 +18255,8 @@
);
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceIAP++11iOS";
- PRODUCT_NAME = "IceIAP++11iOS";
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11iOS";
+ PRODUCT_NAME = "Ice++11iOS";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -18242,11 +18264,11 @@
};
name = Debug;
};
- B1498AA3DF2FA73116220D74 /* Release */ = {
+ B4B058FDA35CC69FC22F5A2D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -18258,107 +18280,108 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation;
- PRODUCT_NAME = IceAdapterDeactivation;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream;
+ PRODUCT_NAME = IceStream;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- B14B8A3494249083E7FC7C0B /* Debug */ = {
+ B622C45E5B9FB0D81C85852A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects;
- PRODUCT_NAME = IceObjects;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions;
+ PRODUCT_NAME = IceExceptions;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- B1AE3FB1065308774CFC7FB3 /* Release */ = {
+ B7A3C797A42C0AF824492DF3 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects;
- PRODUCT_NAME = IceObjects;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD;
+ PRODUCT_NAME = IceServantLocatorAMD;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- B1E7D7D218C19BEAB7720502 /* Release */ = {
+ B86A4AAD87D2F1B84FC6A993 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties;
- PRODUCT_NAME = IceProperties;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor;
+ PRODUCT_NAME = IceInterceptor;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- B232761B9569ABACDFF85551 /* Debug */ = {
+ B98A519D4ADF06DFAF8EE21F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -18372,8 +18395,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD;
- PRODUCT_NAME = IceSlicingObjectsAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration;
+ PRODUCT_NAME = IceSSLConfiguration;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -18381,13 +18404,13 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- B539257584FF6EF41A20608F /* Release */ = {
+ BA74A2FE36DCA4472EB6FA7F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -18401,8 +18424,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant;
- PRODUCT_NAME = IceDefaultServant;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD;
+ PRODUCT_NAME = IceProxyAMD;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -18410,108 +18433,102 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- B6F8FB058A41976E74519DEA /* Release */ = {
+ BAE016AB0D42D2D83BEE50B6 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry;
- PRODUCT_NAME = IceRetry;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor;
+ PRODUCT_NAME = IceInterceptor;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- B6FA05A541696C59664FC33A /* Release */ = {
+ BDEC39C50781A109391F7C7E /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/IceStorm/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm;
- PRODUCT_NAME = IceStorm;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold;
+ PRODUCT_NAME = IceHold;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
+ WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- B7359DEB253C612801577738 /* Debug */ = {
+ BF371B1952C7C4B0CFF3210D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor;
- PRODUCT_NAME = IceInterceptor;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties;
+ PRODUCT_NAME = IceProperties;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- B94D4A26B96685B6DA4D97C9 /* Debug */ = {
+ C01A589F96F05425C58390E2 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_TESTABILITY = NO;
- EXECUTABLE_PREFIX = lib;
GCC_PREPROCESSOR_DEFINITIONS = (
ICE_CPP11_MAPPING,
ICE_BUILDING_SRC,
@@ -18525,52 +18542,51 @@
"$(SYMROOT)/$(PLATFORM_NAME)/include/",
"$(SRCROOT)/../cpp/src/",
);
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11macOS";
- PRODUCT_NAME = "Ice++11macOS";
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ OTHER_LDFLAGS = "-ObjC";
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11iOS";
+ PRODUCT_NAME = "IceDiscovery++11iOS";
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
- BA1F2FEEA01A27166C02D3D2 /* Debug */ = {
+ C752B518C492B16AC7775709 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
- DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- DYLIB_INSTALL_NAME_BASE = "@rpath";
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/Ice/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice;
- PRODUCT_NAME = Ice;
- SDKROOT = iphoneos;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD;
+ PRODUCT_NAME = IceOperationsAMD;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- TARGETED_DEVICE_FAMILY = "1,2";
- VERSIONING_SYSTEM = "apple-generic";
- VERSION_INFO_PREFIX = "";
+ WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- BADD73120F91BC4C906BE010 /* Release */ = {
+ C79B12E289E5A60E60EF859E /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -18582,19 +18598,18 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding;
- PRODUCT_NAME = IceBinding;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD;
+ PRODUCT_NAME = IceServantLocatorAMD;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- BC2CE533F1B71062D986321B /* Debug */ = {
+ C8B70842A11AE41741402051 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -18610,8 +18625,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions;
- PRODUCT_NAME = IceExceptions;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects;
+ PRODUCT_NAME = IceSlicingObjects;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -18621,41 +18636,36 @@
};
name = Debug;
};
- BC3663F50ACF9B536E4154DE /* Release */ = {
+ C99DC2C96B48475DB02D46FF /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- EXECUTABLE_PREFIX = lib;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- NDEBUG,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceSSL++11macOS";
- PRODUCT_NAME = "IceSSL++11macOS";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation;
+ PRODUCT_NAME = IceAdapterDeactivation;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
+ WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- BC421D36E782156A9BEEBF9A /* Debug */ = {
+ CB3B40EB18AA16DA72D611A5 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -18673,8 +18683,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration;
- PRODUCT_NAME = IceSSLConfiguration;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects;
+ PRODUCT_NAME = IceObjects;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -18684,80 +18694,117 @@
};
name = Debug;
};
- BD23B8EA47D62BDDD582DB39 /* Release */ = {
+ CB9C79F4BC591DC866CB145D /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 3.7.5;
+ DYLIB_COMPATIBILITY_VERSION = 0;
+ DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_TESTABILITY = NO;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = YES;
+ GCC_TREAT_WARNINGS_AS_ERRORS = YES;
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ OTHER_LDFLAGS = "-ObjC";
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceIAP++11iOS";
+ PRODUCT_NAME = "IceIAP++11iOS";
+ SDKROOT = iphoneos;
+ SKIP_INSTALL = YES;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ TARGETED_DEVICE_FAMILY = "1,2";
+ };
+ name = Debug;
+ };
+ CC295369CB72CAA1ACDB420A /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions;
- PRODUCT_NAME = IceExceptions;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets;
+ PRODUCT_NAME = IceFacets;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- C01BB923B91C46CF51CCAA32 /* Debug */ = {
+ CE81199243DA3EAD02FA5D73 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD;
- PRODUCT_NAME = IceExceptionsAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon;
+ PRODUCT_NAME = TestCommon;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
- name = Debug;
+ name = Release;
};
- C3CB9050CDFB50A093E63D9E /* Debug */ = {
+ CF2268377BF9187E71B81FDA /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- EXECUTABLE_PREFIX = lib;
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_PREPROCESSOR_DEFINITIONS = (
ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
ICE_STATIC_LIBS,
ICE_SWIFT,
+ NDEBUG,
);
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
@@ -18766,20 +18813,31 @@
"$(SYMROOT)/$(PLATFORM_NAME)/include/",
"$(SRCROOT)/../cpp/src/",
);
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS";
- PRODUCT_NAME = "IceDiscovery++11macOS";
- SDKROOT = macosx;
+ INFOPLIST_FILE = src/IceImpl/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ OTHER_LDFLAGS = (
+ "-lbz2",
+ "-liconv",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl;
+ PRODUCT_NAME = IceImpl;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
- name = Debug;
+ name = Release;
};
- C4396A2AC4B0EAA42B889292 /* Debug */ = {
+ CF6C1A4B49FD18969B48820D /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -18793,8 +18851,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp;
- PRODUCT_NAME = IceUdp;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold;
+ PRODUCT_NAME = IceHold;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -18802,65 +18860,70 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- C53C33F9D04F767A0507B06C /* Debug */ = {
+ CF992CED3AA596E15B37F2FB /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations;
- PRODUCT_NAME = IceOperations;
- SDKROOT = macosx;
+ INFOPLIST_FILE = src/Ice/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice;
+ PRODUCT_NAME = Ice;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
name = Debug;
};
- C5C0510BF16F84C4326E627A /* Debug */ = {
+ D2DA3F878C429537099F03D8 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INFOPLIST_FILE = test/TestDriver/iOS/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi;
- PRODUCT_NAME = IceAmi;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
+ ONLY_ACTIVE_ARCH = YES;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller";
+ PRODUCT_NAME = TestDriver;
SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
- C5CCF80E492D52189B478099 /* Debug */ = {
+ D305A1C50BF490F5868DFDDB /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -18878,8 +18941,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects;
- PRODUCT_NAME = IceObjects;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout;
+ PRODUCT_NAME = IceTimeout;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -18889,11 +18952,11 @@
};
name = Debug;
};
- C69F9DDF10A389DEE7FB6CA6 /* Debug */ = {
+ D4E4FB12EF5E8273FB108473 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -18907,8 +18970,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums;
- PRODUCT_NAME = IceEnums;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi;
+ PRODUCT_NAME = IceAmi;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -18916,69 +18979,75 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- C784107DF13F80C3F4AFD758 /* Release */ = {
+ D5ED36F6703926FC95622BD8 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects;
- PRODUCT_NAME = IceObjects;
- SDKROOT = macosx;
+ INFOPLIST_FILE = src/IceStorm/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm;
+ PRODUCT_NAME = IceStorm;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
name = Release;
};
- CB65FE073413A02202EE3952 /* Debug */ = {
+ D8B492E3AE5FAE9C5669D57B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ AVAILABLE_PLATFORMS = macosx;
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout;
- PRODUCT_NAME = IceTimeout;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator;
+ PRODUCT_NAME = IceServantLocator;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- CC0953EF88AF050D383122BB /* Debug */ = {
+ DB14E52793A86D9206AA93A7 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -18990,22 +19059,23 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD;
- PRODUCT_NAME = IceOptionalAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD;
+ PRODUCT_NAME = IceSlicingExceptionsAMD;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- CF897CA03CB22DE032B7AC27 /* Debug */ = {
+ DBC3B39E9853DB625F8FAA73 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -19017,18 +19087,19 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations;
- PRODUCT_NAME = IceOperations;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD;
+ PRODUCT_NAME = IceSlicingObjectsAMD;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- D0A085DB9D8A5323ABB84DB7 /* Debug */ = {
+ DCDE3649117670A9E03F8B59 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -19046,8 +19117,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties;
- PRODUCT_NAME = IceProperties;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy;
+ PRODUCT_NAME = IceProxy;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -19057,100 +19128,98 @@
};
name = Debug;
};
- D4FC53C7F666EDEA3D38C4FD /* Debug */ = {
+ DCEA9835A1B92F11C9FB5C74 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional;
- PRODUCT_NAME = IceOptional;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue;
+ PRODUCT_NAME = IceDefaultValue;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- D5A69DA195314DC80657E305 /* Debug */ = {
+ DD1CC1EBDED94629920C1F5F /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11iOS";
- PRODUCT_NAME = "IceDiscovery++11iOS";
- SDKROOT = iphoneos;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD;
+ PRODUCT_NAME = IceSlicingObjectsAMD;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- TARGETED_DEVICE_FAMILY = "1,2";
+ SUPPORTED_PLATFORMS = macosx;
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
+ WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- D5C449945C89A81BA7AFCE64 /* Debug */ = {
+ DD5E3C503E2164D55FFA353E /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestDriver/iOS/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- ONLY_ACTIVE_ARCH = YES;
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller";
- PRODUCT_NAME = TestDriver;
- SDKROOT = iphoneos;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices;
+ PRODUCT_NAME = IceServices;
+ SDKROOT = macosx;
+ SKIP_INSTALL = YES;
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- TARGETED_DEVICE_FAMILY = "1,2";
+ WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- D6944A8D64DD08548D1A1C1D /* Debug */ = {
+ DF6336B9027042AAB08D3373 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -19162,22 +19231,23 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry;
- PRODUCT_NAME = IceRetry;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm;
+ PRODUCT_NAME = IceAcm;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- D6BFB2AE6D791CAF72936665 /* Debug */ = {
+ E06040A48BB56334F16C1C5F /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -19189,50 +19259,55 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding;
- PRODUCT_NAME = IceBinding;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD;
+ PRODUCT_NAME = IceExceptionsAMD;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- DA6AB008FE7041AE43CA08CA /* Release */ = {
+ E0B7B6EE12F23960E9B56E79 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INFOPLIST_FILE = src/IceStorm/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD;
- PRODUCT_NAME = IceOperationsAMD;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm;
+ PRODUCT_NAME = IceStorm;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
- WRAPPER_EXTENSION = bundle;
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
- name = Release;
+ name = Debug;
};
- DAE400C537DD3FCB5832CD9F /* Release */ = {
+ E1D8895AFFD7D88C6F45E3C9 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -19246,8 +19321,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor;
- PRODUCT_NAME = IceInterceptor;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums;
+ PRODUCT_NAME = IceEnums;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -19255,45 +19330,42 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- DCC666AF25E042F03BF95129 /* Release */ = {
+ E215B7B2FEB1C2D7F9BFE650 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- NDEBUG,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
+ INFOPLIST_FILE = src/Ice/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11iOS";
- PRODUCT_NAME = "Ice++11iOS";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice;
+ PRODUCT_NAME = Ice;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
name = Release;
};
- DE8BAB1974B5EF22D9870ED0 /* Debug */ = {
+ E2AE9D739BC21F4EAAB21E83 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -19311,8 +19383,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding;
- PRODUCT_NAME = IceBinding;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance;
+ PRODUCT_NAME = IceInheritance;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -19322,124 +19394,146 @@
};
name = Debug;
};
- DFA984CF0F21E4505A4AFC66 /* Release */ = {
+ E304234B1BB9DCEB457BB65A /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD;
- PRODUCT_NAME = IceExceptionsAMD;
- SDKROOT = iphoneos;
+ INFOPLIST_FILE = src/Ice/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice;
+ PRODUCT_NAME = Ice;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
- WRAPPER_EXTENSION = bundle;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
name = Release;
};
- E0C0258E60CFECB5AEE0928D /* Debug */ = {
+ E44A0832345623ACECF3D6CD /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD;
- PRODUCT_NAME = IceServantLocatorAMD;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke;
+ PRODUCT_NAME = IceInvoke;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- E0C89A57F93E9230EDC6B346 /* Release */ = {
+ E4A2E9F77EB15496DCE059CC /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ EXECUTABLE_PREFIX = lib;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ NDEBUG,
+ );
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations;
- PRODUCT_NAME = IceOperations;
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS";
+ PRODUCT_NAME = "IceDiscovery++11macOS";
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- E0D9DA9FB6B4D445B76286A2 /* Debug */ = {
+ E6072D648BAB473B7E79D891 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
- FRAMEWORK_VERSION = A;
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ );
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = src/IceStorm/Info.plist;
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
+ INFOPLIST_FILE = src/IceImpl/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm;
- PRODUCT_NAME = IceStorm;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
+ OTHER_LDFLAGS = (
+ "-lbz2",
+ "-liconv",
+ );
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl;
+ PRODUCT_NAME = IceImpl;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
name = Debug;
};
- E2DCE7E55ACF10D44DC1707A /* Release */ = {
+ E67BFA382AE335C0A6A1D9DC /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -19468,36 +19562,35 @@
};
name = Release;
};
- E4218C27199D25A0A9B7B54F /* Release */ = {
+ E6853371C955919B41AFDFAD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding;
- PRODUCT_NAME = IceBinding;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp;
+ PRODUCT_NAME = IceUdp;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- E442D9A9AA8B0BD2D64FDDD3 /* Release */ = {
+ E71ECD00E8DAE511DCF55895 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -19515,8 +19608,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape;
- PRODUCT_NAME = SliceEscape;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD;
+ PRODUCT_NAME = IceProxyAMD;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -19526,40 +19619,47 @@
};
name = Release;
};
- E4455AFDDD8CF51717D1E765 /* Release */ = {
+ E7EA30943371358498B0EB96 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ ICE_CPP11_MAPPING,
+ ICE_BUILDING_SRC,
+ ICE_STATIC_LIBS,
+ ICE_SWIFT,
+ NDEBUG,
+ );
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy;
- PRODUCT_NAME = IceProxy;
- SDKROOT = macosx;
+ HEADER_SEARCH_PATHS = (
+ "$(SRCROOT)/../cpp/include/",
+ "$(SYMROOT)/$(PLATFORM_NAME)/include/",
+ "$(SRCROOT)/../cpp/src/",
+ );
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ OTHER_LDFLAGS = "-ObjC";
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11iOS";
+ PRODUCT_NAME = "Ice++11iOS";
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
- SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
- SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ TARGETED_DEVICE_FAMILY = "1,2";
+ VALIDATE_PRODUCT = YES;
};
name = Release;
};
- E47CE179DA460DECC082C41C /* Debug */ = {
+ E873B5E5D0CEC7DB66EDE31B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -19571,85 +19671,81 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke;
- PRODUCT_NAME = IceInvoke;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy;
+ PRODUCT_NAME = IceProxy;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
+ VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- E4CCCE5935CCBEEFEAE8092F /* Debug */ = {
+ E8D8AF9CD8F2389C5DABA6CA /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold;
- PRODUCT_NAME = IceHold;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi;
+ PRODUCT_NAME = IceAmi;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- E52A260A44C656A6E073DF15 /* Release */ = {
+ EB0A9BC1DDD775C84278CCAC /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- NDEBUG,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceSSL++11iOS";
- PRODUCT_NAME = "IceSSL++11iOS";
- SDKROOT = iphoneos;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout;
+ PRODUCT_NAME = IceTimeout;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
+ SUPPORTED_PLATFORMS = macosx;
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
+ WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- E5568039FB3152FA78140A60 /* Release */ = {
+ EC2378A037AE97C93AAD6B38 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -19663,8 +19759,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation;
- PRODUCT_NAME = IceLocation;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD;
+ PRODUCT_NAME = IceExceptionsAMD;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -19672,37 +19768,41 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- E6561ED652E8D076C7E1868E /* Release */ = {
+ EC242F01EA2437372626DF09 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects;
- PRODUCT_NAME = IceSlicingObjects;
- SDKROOT = iphoneos;
+ INFOPLIST_FILE = src/IceGrid/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid;
+ PRODUCT_NAME = IceGrid;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
- WRAPPER_EXTENSION = bundle;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
name = Release;
};
- E80CEBFAAA1B6B20E2821ECB /* Release */ = {
+ EC28C39C286AC8C58917A402 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -19718,8 +19818,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums;
- PRODUCT_NAME = IceEnums;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape;
+ PRODUCT_NAME = SliceEscape;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -19730,7 +19830,7 @@
};
name = Release;
};
- E9F23FA6B680B09DF3ACFA64 /* Debug */ = {
+ EC481E724E660BECAD47803A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -19755,8 +19855,8 @@
);
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
OTHER_LDFLAGS = "-ObjC";
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11iOS";
- PRODUCT_NAME = "IceLocatorDiscovery++11iOS";
+ PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceSSL++11iOS";
+ PRODUCT_NAME = "IceSSL++11iOS";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -19764,11 +19864,11 @@
};
name = Debug;
};
- EF02288DD17F86DC498C1019 /* Release */ = {
+ F0866E557FFEE3F52E9BBAB2 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -19782,8 +19882,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums;
- PRODUCT_NAME = IceEnums;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo;
+ PRODUCT_NAME = IceInfo;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -19791,74 +19891,71 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- EF8A23F1AFB2A8E13D4E6E6C /* Debug */ = {
+ F09E6A9AECE88BEA6F8E5708 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- EXECUTABLE_PREFIX = lib;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS";
- PRODUCT_NAME = "IceLocatorDiscovery++11macOS";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream;
+ PRODUCT_NAME = IceStream;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
+ WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- F0C9709AA78251B10C96ED80 /* Release */ = {
+ F1CBDBD507415A133479E0CB /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation;
- PRODUCT_NAME = IceLocation;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD;
+ PRODUCT_NAME = IceExceptionsAMD;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
name = Release;
};
- F21C069D7D9A0CFBA32438EF /* Release */ = {
+ F2C7F51C198DC59D3E55EE57 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
@@ -19870,48 +19967,45 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry;
- PRODUCT_NAME = IceRetry;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums;
+ PRODUCT_NAME = IceEnums;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- VALIDATE_PRODUCT = YES;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
};
- F2462004803304A4A78D8DC7 /* Debug */ = {
+ F8BD846E6DA76535B354C69A /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = macosx;
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
- COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
- MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation;
- PRODUCT_NAME = IceAdapterDeactivation;
- SDKROOT = macosx;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope;
+ PRODUCT_NAME = IceScope;
+ SDKROOT = iphoneos;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = macosx;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- F3104E350A6ECE553C3EE766 /* Release */ = {
+ F8E87BDF179C6476CD84F5DA /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -19927,8 +20021,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi;
- PRODUCT_NAME = IceAmi;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke;
+ PRODUCT_NAME = IceInvoke;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -19939,72 +20033,43 @@
};
name = Release;
};
- F57B681B29AE397527CF7DD6 /* Release */ = {
+ F94D2E6BA8B532E19CB88A7E /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
+ DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
ENABLE_TESTABILITY = NO;
- EXECUTABLE_PREFIX = lib;
- GCC_PREPROCESSOR_DEFINITIONS = (
- ICE_CPP11_MAPPING,
- ICE_BUILDING_SRC,
- ICE_STATIC_LIBS,
- ICE_SWIFT,
- NDEBUG,
- );
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/../cpp/include/",
- "$(SYMROOT)/$(PLATFORM_NAME)/include/",
- "$(SRCROOT)/../cpp/src/",
- );
+ INFOPLIST_FILE = src/Glacier2/Info.plist;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11macOS";
- PRODUCT_NAME = "Ice++11macOS";
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2;
+ PRODUCT_NAME = Glacier2;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
- };
- name = Release;
- };
- F66FA2DD7B5538BA7E814402 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
- CODE_SIGN_IDENTITY = "-";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 3.7.5;
- DYLIB_COMPATIBILITY_VERSION = 0;
- DYLIB_CURRENT_VERSION = 3.7.5;
- ENABLE_BITCODE = NO;
- ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- GCC_TREAT_WARNINGS_AS_ERRORS = YES;
- INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope;
- PRODUCT_NAME = IceScope;
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
- WRAPPER_EXTENSION = bundle;
+ VERSIONING_SYSTEM = "apple-generic";
+ VERSION_INFO_PREFIX = "";
};
- name = Debug;
+ name = Release;
};
- F88B8B4CC2DC61A3FF01D855 /* Debug */ = {
+ FA1A7EBEA8DA0526B3058F33 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -20018,8 +20083,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions;
- PRODUCT_NAME = IceExceptions;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD;
+ PRODUCT_NAME = IceSlicingExceptionsAMD;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -20027,13 +20092,13 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- F8DCA0A87F525457834A971B /* Debug */ = {
+ FAE66FF5AD37FC50EA957AFD /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -20047,8 +20112,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke;
- PRODUCT_NAME = IceInvoke;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant;
+ PRODUCT_NAME = IceDefaultServant;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -20056,36 +20121,38 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Debug;
+ name = Release;
};
- FB306D6193D3D426BFA4D1DC /* Debug */ = {
+ FB76AF229F4FADF3436C35BA /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ AVAILABLE_PLATFORMS = macosx;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
+ COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
DYLIB_COMPATIBILITY_VERSION = 0;
DYLIB_CURRENT_VERSION = 3.7.5;
ENABLE_BITCODE = NO;
ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/Mac";
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions;
- PRODUCT_NAME = IceSlicingExceptions;
- SDKROOT = iphoneos;
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
+ MACOSX_DEPLOYMENT_TARGET = 10.14;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD;
+ PRODUCT_NAME = IceOptionalAMD;
+ SDKROOT = macosx;
SKIP_INSTALL = YES;
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SUPPORTED_PLATFORMS = macosx;
SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
name = Debug;
};
- FBC3259966D645958A5DE727 /* Debug */ = {
+ FC5D7B05B0625A67B7E4ADE1 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
@@ -20103,8 +20170,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD;
- PRODUCT_NAME = IceOperationsAMD;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD;
+ PRODUCT_NAME = IceServantLocatorAMD;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -20114,7 +20181,7 @@
};
name = Debug;
};
- FFAE0F6DE4CDA5D888A8DD6D /* Release */ = {
+ FC7550AA0AB6887CBE880FFB /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
@@ -20130,8 +20197,8 @@
GCC_TREAT_WARNINGS_AS_ERRORS = YES;
INFOPLIST_FILE = test/TestCommon/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations;
- PRODUCT_NAME = IceOperations;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums;
+ PRODUCT_NAME = IceEnums;
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -20142,11 +20209,11 @@
};
name = Release;
};
- FFB3DB00FE315BC864A1BC64 /* Release */ = {
+ FCC40D53A6E59D7C33296621 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
AVAILABLE_PLATFORMS = macosx;
- CODE_SIGN_IDENTITY = "";
+ CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 3.7.5;
@@ -20160,8 +20227,8 @@
INFOPLIST_FILE = test/TestCommon/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
MACOSX_DEPLOYMENT_TARGET = 10.14;
- PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke;
- PRODUCT_NAME = IceInvoke;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration;
+ PRODUCT_NAME = IceSSLConfiguration;
SDKROOT = macosx;
SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx;
@@ -20169,930 +20236,957 @@
SWIFT_VERSION = 5.2;
WRAPPER_EXTENSION = bundle;
};
- name = Release;
+ name = Debug;
+ };
+ FFB1D0FEA6EBAA8A0768C0B0 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ AVAILABLE_PLATFORMS = "iphoneos iphonesimulator";
+ CODE_SIGN_IDENTITY = "-";
+ CODE_SIGN_STYLE = Automatic;
+ CURRENT_PROJECT_VERSION = 3.7.5;
+ DYLIB_COMPATIBILITY_VERSION = 0;
+ DYLIB_CURRENT_VERSION = 3.7.5;
+ ENABLE_BITCODE = NO;
+ ENABLE_TESTABILITY = NO;
+ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/iOS";
+ GCC_SYMBOLS_PRIVATE_EXTERN = YES;
+ GCC_TREAT_WARNINGS_AS_ERRORS = YES;
+ INFOPLIST_FILE = test/TestCommon/Info.plist;
+ IPHONEOS_DEPLOYMENT_TARGET = 12.0;
+ PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions;
+ PRODUCT_NAME = IceSlicingExceptions;
+ SDKROOT = iphoneos;
+ SKIP_INSTALL = YES;
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
+ SWIFT_TREAT_WARNINGS_AS_ERRORS = YES;
+ SWIFT_VERSION = 5.2;
+ WRAPPER_EXTENSION = bundle;
+ };
+ name = Debug;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
- 0082D6EB52B4BE289FAB82A2 /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */ = {
+ 0052F09E1EC8CD9EA58C75A1 /* Build configuration list for PBXNativeTarget "IceFacets macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- CB65FE073413A02202EE3952 /* Debug */,
- 0F8019167E458D8670AAE005 /* Release */,
+ 398BC35B9F18C87421B33C28 /* Debug */,
+ E67BFA382AE335C0A6A1D9DC /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 01759426EF6365E3E3B20F14 /* Build configuration list for PBXNativeTarget "TestCommon macOS" */ = {
+ 022EA05646E8140352CD83EA /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 9A3E13614A03F7C9FF225CCF /* Debug */,
- 51D6E04ABDD7EBBA6E22DC11 /* Release */,
+ C01A589F96F05425C58390E2 /* Debug */,
+ 13804B4BCEFCCA9D0969BE88 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 05483C85E7E50674149C9C50 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */ = {
+ 0249A14FCD436F83D9F8730D /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- C69F9DDF10A389DEE7FB6CA6 /* Debug */,
- EF02288DD17F86DC498C1019 /* Release */,
+ 42B0469C1DF9C1E9F83FB117 /* Debug */,
+ C752B518C492B16AC7775709 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 06A61A5A888A573F787597A1 /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */ = {
+ 064714039391BE78F7670B39 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 6042E63FE3F570CB57CAD941 /* Debug */,
- 8BDD46FA48D30EC4BF14CEEF /* Release */,
+ D305A1C50BF490F5868DFDDB /* Debug */,
+ EB0A9BC1DDD775C84278CCAC /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 096864319ABEAC03601BF640 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */ = {
+ 08722FDBA4607321D22D492E /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 51BB4E7A053D796C95E55FE6 /* Debug */,
- 4D32D3FDA87BD64C0D10B22A /* Release */,
+ 1C98D505033B88A0C855FA35 /* Debug */,
+ 5CF524A9038A47397DFE32B4 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 0B1B9815FB1FEB319ED16287 /* Build configuration list for PBXNativeTarget "IceOptional macOS" */ = {
+ 0A45BD9B6920C07D7615B808 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 42266385052DF500DA883EB5 /* Debug */,
- 3DE93455EDFA82DA5788F7F7 /* Release */,
+ B3AD31B785237B236D5930A8 /* Debug */,
+ E7EA30943371358498B0EB96 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 0B25891D076DA8CBD5BE8E1B /* Build configuration list for PBXNativeTarget "IceEnums iOS" */ = {
+ 0A50864A90D4F8D3245B146C /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 034B5F3CE6F42E16E92A1380 /* Debug */,
- E80CEBFAAA1B6B20E2821ECB /* Release */,
+ 93D8D4351AEEA435457870F1 /* Debug */,
+ 4E1A61EF2CC0DF88A95375C4 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 0C8DFB85BF487864C2632AC4 /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */ = {
+ 0BEB080277BEC47AB2F0B380 /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 012C5E0D02A6964B3730412D /* Debug */,
- 6CC2F791C24C7AF2035F878D /* Release */,
+ DCEA9835A1B92F11C9FB5C74 /* Debug */,
+ 39FC19E4D8C634B5802CDFE0 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 110325CD156FF96E0F3C9BDD /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */ = {
+ 0E15EF19C87DFB578AED5711 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- E47CE179DA460DECC082C41C /* Debug */,
- 0A367D220705ABB961713B63 /* Release */,
+ E1D8895AFFD7D88C6F45E3C9 /* Debug */,
+ A59923004FD48E3549CB08E4 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 127F88BD90F0B5E9A7F36719 /* Build configuration list for PBXNativeTarget "IceSSL C++11 iOS" */ = {
+ 104AC41727588E52A615791F /* Build configuration list for PBXNativeTarget "IceIAP C++11 iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 2BF38B70681CFA78052EBA01 /* Debug */,
- E52A260A44C656A6E073DF15 /* Release */,
+ CB9C79F4BC591DC866CB145D /* Debug */,
+ ACB302570A396B8477D88A91 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 1370D96FC0BC8549F5BE0DCC /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */ = {
+ 11BA451409C11B77116D10FC /* Build configuration list for PBXNativeTarget "IceImpl macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 881BA057D2444F063859C12E /* Debug */,
- DAE400C537DD3FCB5832CD9F /* Release */,
+ 7FFBC6967B62AFEC906C0EF4 /* Debug */,
+ 94B08C006342AD93C5F6174F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 16EAA2E24FC57645D3CAB129 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */ = {
+ 1B6C41EDB80A8E95187A11A4 /* Build configuration list for PBXNativeTarget "IceAcm iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- E0C0258E60CFECB5AEE0928D /* Debug */,
- 56BFF26778E2C67E75B3CF2E /* Release */,
+ 8A1CF8865E18553C69703745 /* Debug */,
+ DF6336B9027042AAB08D3373 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 17D3584157716E7F762F53DD /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */ = {
+ 1F53544416ED1CBB48BCB0C0 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 65885AE00DDCA8598CD51A05 /* Debug */,
- 1FBF4E9E22A367C25220BE1D /* Release */,
+ 8E1670931F03FCBFCADA7484 /* Debug */,
+ 5A49BBE77790208E61AC2BB1 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 1B6B8E537547317F1F5AA8FC /* Build configuration list for PBXNativeTarget "IceAcm iOS" */ = {
+ 287D737E736D39F6BBBDA1F1 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 4682A908804D88CE2AE7382E /* Debug */,
- 56C15BEA2899DCDA255D0D06 /* Release */,
+ 5C85058CB2190CD63680628D /* Debug */,
+ 2A6486F904C125D63FA0D7C2 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 1C8FAD5732676597898A8AA2 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */ = {
+ 2A83495F040C4FA2AB2F9E86 /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 0CE91915730CCC898BDDAE0F /* Debug */,
- F0C9709AA78251B10C96ED80 /* Release */,
+ 35331724DA4A0C3DA6397692 /* Debug */,
+ EC28C39C286AC8C58917A402 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 1CA4FD4613A7A1A012E21837 /* Build configuration list for PBXNativeTarget "IceServices macOS" */ = {
+ 2B9BF32EB50A287532EFE5DB /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 2B53AC59FFC3F3AC12756BB4 /* Debug */,
- 19F99432D96C70B9DD0A926C /* Release */,
+ 948AB01C1789BBD6393681F8 /* Debug */,
+ 2F133FABAC6FAC5337E30B70 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 228EB37A9E091494B0C256FC /* Build configuration list for PBXNativeTarget "IceUdp iOS" */ = {
+ 2FBC485D88053CE1C10E2C57 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 6FF86128BA1063BA03BEA85B /* Debug */,
- 66F9A667CECD39E77317CDC0 /* Release */,
+ 8DACBA88EE65EFBDCE6107AB /* Debug */,
+ B026A1EB6F461CA1EAF5A261 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 23DE8E43DCCF352C5761ADCB /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */ = {
+ 31E095C7331413338107B448 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- F88B8B4CC2DC61A3FF01D855 /* Debug */,
- BD23B8EA47D62BDDD582DB39 /* Release */,
+ 1BFFB112DF76451614F1DE4F /* Debug */,
+ 76ADAEC45336E360856C923C /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 27F591474923B57986FB902A /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */ = {
+ 350948EDB95C1ECE3494B71A /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- AA179CFEA4032F642D8C3407 /* Debug */,
- 68CA5357CFDC462B1515902A /* Release */,
+ 80F768301C65570B8121AA0F /* Debug */,
+ 935E80C340CF12D852C3CABF /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 28B7FBC67E3CDBAFA2522F32 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */ = {
+ 3708D65482505072EA299F73 /* Build configuration list for PBXNativeTarget "IceHold macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 548390B1FE957407F19E6633 /* Debug */,
- 1B577F1F7D17909A242E4900 /* Release */,
+ 7546842B287DD00F54F7B5FE /* Debug */,
+ CF6C1A4B49FD18969B48820D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 315074C3E24CE4937956CF21 /* Build configuration list for PBXNativeTarget "IceAmi macOS" */ = {
+ 38424EB3784B8F0D400F9850 /* Build configuration list for PBXNativeTarget "IceStream iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 62F28E4D4CA43BB98E9D3796 /* Debug */,
- 9C14A9B3F0421D3991A667EA /* Release */,
+ B4B058FDA35CC69FC22F5A2D /* Debug */,
+ 9AFC4C5F970D1BE275F678E5 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 33D4048CC4EA1DDC228DF8A7 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */ = {
+ 3A6F2F5DDAB4C53762E814D7 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 474732C3E216FB2E26FBFFD8 /* Debug */,
- 2736FA7B7D20CBEFF6981D84 /* Release */,
+ C8B70842A11AE41741402051 /* Debug */,
+ A175FF704DEA7EAE6209E3FF /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 35673F5B3BF6701F9669B4B7 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */ = {
+ 3AF3001C3CB7029DDF4887BB /* Build configuration list for PBXNativeTarget "IceAmi macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- A9305E62A5BE5BF47165EBFC /* Debug */,
- B1498AA3DF2FA73116220D74 /* Release */,
+ E8D8AF9CD8F2389C5DABA6CA /* Debug */,
+ D4E4FB12EF5E8273FB108473 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 36F27D1768F1B0825F888E5B /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */ = {
+ 3D5362A6A9DCA922C7836BA6 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 492EBC11A03C5FF389A16EFD /* Debug */,
- DA6AB008FE7041AE43CA08CA /* Release */,
+ 747273DCF5BDFD4E8E424CF4 /* Debug */,
+ 6263BC7D879FD24BD9B4B039 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 373BE199EE06531ECE4A5B1B /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */ = {
+ 3FD81D4B8AC8C724BCE33EC2 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 0A9049889B62C21DF841FBD0 /* Debug */,
- AC0533EF7FFA2E87DC60E048 /* Release */,
+ 2AE5D93384A1A0CB2D5EE167 /* Debug */,
+ E4A2E9F77EB15496DCE059CC /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 388A0F088FDBD80977683DEA /* Build configuration list for PBXNativeTarget "IceServices iOS" */ = {
+ 4E46BD33CC08E029F5484449 /* Build configuration list for PBXNativeTarget "TestCommon macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 63CC16AB88F731CDE05F4FD4 /* Debug */,
- 50A76DEE0772B64982D0A5BF /* Release */,
+ 7B1F7ADF66A9865F6B9BAEE7 /* Debug */,
+ CE81199243DA3EAD02FA5D73 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 3968B0040AE5B78A00A2D644 /* Build configuration list for PBXNativeTarget "IceHold macOS" */ = {
+ 4E93CAAD864E9783BE996EC4 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 76833049B218C730A60ED213 /* Debug */,
- 00C7491B1D4B2B328E06BE19 /* Release */,
+ B622C45E5B9FB0D81C85852A /* Debug */,
+ 918FBB1141962845B0AC4E62 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 4036886D6C40B4610A418198 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */ = {
+ 4EB3874EB8509C067EE0EEEF /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 3A4159DD5A9460A3324512D1 /* Debug */,
- A7A7B9BB64119A172495A694 /* Release */,
+ A670EA901930348145CF01CA /* Debug */,
+ 17FE64C5BD1543FD7B0E01A1 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 413645EB834D00B8AE291EDC /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */ = {
+ 4FBAF59E8DCB5E4F5FC9951C /* Build configuration list for PBXNativeTarget "IceStream macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- B7359DEB253C612801577738 /* Debug */,
- 98BD972172399E4262016113 /* Release */,
+ 9EA8B4D9E905CDFACD305B00 /* Debug */,
+ F09E6A9AECE88BEA6F8E5708 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 42454355906E8845720BA6C5 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */ = {
+ 5218491F128E8B11F981A048 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- CF897CA03CB22DE032B7AC27 /* Debug */,
- FFAE0F6DE4CDA5D888A8DD6D /* Release */,
+ BA74A2FE36DCA4472EB6FA7F /* Debug */,
+ E71ECD00E8DAE511DCF55895 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 426883BE293CC578590EA839 /* Build configuration list for PBXNativeTarget "IceProxy macOS" */ = {
+ 5357C3BCA05BAEEB881D2A12 /* Build configuration list for PBXNativeTarget "IceUdp iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 8FD00B88F170C8B1E4C9035D /* Debug */,
- E4455AFDDD8CF51717D1E765 /* Release */,
+ 3B0002BADD089964C1648A63 /* Debug */,
+ E6853371C955919B41AFDFAD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 44DCE327E53EAC837F42EA9F /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */ = {
+ 54F9D1E55169ADDA28565C2F /* Build configuration list for PBXNativeTarget "IceLocation iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 051A0362ED35F02529364D04 /* Debug */,
- B539257584FF6EF41A20608F /* Release */,
+ 3C9127D7CF14D954309642D0 /* Debug */,
+ A3F50CA42234B9DC4E6C93E2 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 4B53509FD8207E1712DE9CD2 /* Build configuration list for PBXNativeTarget "IceRetry macOS" */ = {
+ 56E4F5042639125C70840636 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 89B2DB16800D728354B6A01F /* Debug */,
- B6F8FB058A41976E74519DEA /* Release */,
+ A167358B2982B76A3F13F173 /* Debug */,
+ FAE66FF5AD37FC50EA957AFD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 4DBCC328DBFBB308AE0BFD0B /* Build configuration list for PBXNativeTarget "IceImpl iOS" */ = {
+ 599A03172F3DD05E9B21DD56 /* Build configuration list for PBXNativeTarget "Ice iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 69374425C2F3B1E537F93EBF /* Debug */,
- 0751EF7CDD4646CC9F36F41A /* Release */,
+ CF992CED3AA596E15B37F2FB /* Debug */,
+ E215B7B2FEB1C2D7F9BFE650 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 4F6E20F6C7D2A1E242D70314 /* Build configuration list for PBXNativeTarget "IceSSL C++11 macOS" */ = {
+ 59E840F94DD0F585D2E07A79 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 5FA0FEBF4180835D9CADF1AC /* Debug */,
- BC3663F50ACF9B536E4154DE /* Release */,
+ 51E3C303AC6B4BB50B2F2610 /* Debug */,
+ DB14E52793A86D9206AA93A7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 4FB56971A8BAB09F00E82736 /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */ = {
+ 5BE47BA7845B5AAC60557E2E /* Build configuration list for PBXNativeTarget "IceUdp macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 511407E4A456347B46256740 /* Debug */,
- 9C66177BD8BC08016D289E41 /* Release */,
+ 0F0F076F1B8AD19AD59E5638 /* Debug */,
+ 68D4E6E8960BBC9832CBB0C2 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 50711E2FEC55279FD4BC09D2 /* Build configuration list for PBXNativeTarget "TestDriver iOS" */ = {
+ 5C88B931A683CB89B2B05AD3 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- D5C449945C89A81BA7AFCE64 /* Debug */,
- 4961474D9891402CE8459799 /* Release */,
+ FC5D7B05B0625A67B7E4ADE1 /* Debug */,
+ B7A3C797A42C0AF824492DF3 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 50E500A2D68CED92BF5D3EF9 /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */ = {
+ 5CA49AA47D0471A7616BA1FA /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 990ECBED0AC456FEC0E8C457 /* Debug */,
- 2F8A9F7D9C45082C75B58899 /* Release */,
+ EC2378A037AE97C93AAD6B38 /* Debug */,
+ F1CBDBD507415A133479E0CB /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 529EB7CCB7C463103905DF35 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */ = {
+ 5FDF9EEE54129D9539D0147A /* Build configuration list for PBXProject "ice" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- BC421D36E782156A9BEEBF9A /* Debug */,
- AF45A176C4BCD7FB8B24C231 /* Release */,
+ 679D9A793B0689D42233E891 /* Debug */,
+ 08934979BC67642EA5409A1C /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 542730CEDAC1D2E87A029B87 /* Build configuration list for PBXNativeTarget "IceProxy iOS" */ = {
+ 6020AF5853E377C06D67E403 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 04D067A4D87C2B3998BD0CE0 /* Debug */,
- 724D6DF359A477074A2F41B9 /* Release */,
+ 2DDFFCE5ACD024B19B23099A /* Debug */,
+ 6F7D9ECCAC147AE39618754D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 5557575E7FEAB875B8577F01 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */ = {
+ 64447114766458236325E022 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 3E836AF2FF73732E599F2F80 /* Debug */,
- B6FA05A541696C59664FC33A /* Release */,
+ CC295369CB72CAA1ACDB420A /* Debug */,
+ 60DD68512EB6976BCD99C291 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 55E827A018689871BB520646 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */ = {
+ 666DF9C599B8622C9E860697 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- D6BFB2AE6D791CAF72936665 /* Debug */,
- BADD73120F91BC4C906BE010 /* Release */,
+ 5C2E36E9A82D879BDEB88118 /* Debug */,
+ 5E5F11A6D5B3425CB2F5E711 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 5D55C4A0CD43858B616FF05F /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */ = {
+ 6A639AC44EDA6AC434A58D15 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 3444D1411BB668EAE7F10614 /* Debug */,
- 90F28FB88E42D326F3309A71 /* Release */,
+ FFB1D0FEA6EBAA8A0768C0B0 /* Debug */,
+ 9E117CFEC9DBE7AF5EB395FA /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 5DA6953399E0F9A8B3F060F7 /* Build configuration list for PBXNativeTarget "IceImpl macOS" */ = {
+ 6DA8D7D979BC9F1AB55137B9 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 54EC3FEA6AA068240E1A0A72 /* Debug */,
- 77A1A5BEBFE097292DDBD3F6 /* Release */,
+ BAE016AB0D42D2D83BEE50B6 /* Debug */,
+ B86A4AAD87D2F1B84FC6A993 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 6231D9B65686EE22004E7E68 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */ = {
+ 6FD94E57FD531EF067FD6854 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 87D8D64ACB4FAB1AEF78A2E4 /* Debug */,
- E5568039FB3152FA78140A60 /* Release */,
+ 5745107C260877E0F4995385 /* Debug */,
+ A774113163E597F0A2B9ECAF /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 6247BB2DCF9E507F38615138 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */ = {
+ 7166296F9C5BED610EC38C50 /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- D5A69DA195314DC80657E305 /* Debug */,
- AB36F56DA832178D15A69AAA /* Release */,
+ 839254410E527EEE239D12BA /* Debug */,
+ F94D2E6BA8B532E19CB88A7E /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 663E82BC6D360C653552534C /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */ = {
+ 73AC93BDD01EC088DA89CD7C /* Build configuration list for PBXNativeTarget "IceOptional iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 157611AA6AF8A89368D668D0 /* Debug */,
- 8C1650ED9FDB4310DC31B06A /* Release */,
+ 6564DEE73272A7AE4BF4E264 /* Debug */,
+ 102B6B127044322A87DA8057 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 69CCF36EB5526EE2C0B7CBB0 /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */ = {
+ 7B99D8F660920013276C79A3 /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 707B02E7750FA7D714002696 /* Debug */,
- 3C0A1DBFB2B99B064F5014D6 /* Release */,
+ 17CB928DEC07D711D2299379 /* Debug */,
+ 4F7C36D1485E8EFF35D87CA4 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 7537616DB8D929DFE14E78BD /* Build configuration list for PBXNativeTarget "IceProperties macOS" */ = {
+ 7E11ED081C4F6FAE85C96EEB /* Build configuration list for PBXNativeTarget "TestDriver iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- D0A085DB9D8A5323ABB84DB7 /* Debug */,
- B1E7D7D218C19BEAB7720502 /* Release */,
+ D2DA3F878C429537099F03D8 /* Debug */,
+ 40AF0F3F14747386982D1149 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 75A4C98CD6A96756317C31BC /* Build configuration list for PBXNativeTarget "IceAmi iOS" */ = {
+ 84D81443306BC687BB02714B /* Build configuration list for PBXNativeTarget "IceRetry macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- C5C0510BF16F84C4326E627A /* Debug */,
- F3104E350A6ECE553C3EE766 /* Release */,
+ 93925708771768BF9677076C /* Debug */,
+ 2401C5494B128F60C5204AFA /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 77B2740B9FB8EDEADF56294A /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */ = {
+ 84F9E174A484AC99726E6C34 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- FB306D6193D3D426BFA4D1DC /* Debug */,
- 1ECCBEBDCCAD130B7DA0C47C /* Release */,
+ 2717930FCC3A81045F687131 /* Debug */,
+ 1CF17C29C3BDAFA8277864F3 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 7E635DB566B52931088C5E34 /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */ = {
+ 8A0150E660EE096AE4BA4DA7 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- F8DCA0A87F525457834A971B /* Debug */,
- FFB3DB00FE315BC864A1BC64 /* Release */,
+ 5EB4B48FD5B27E59CCF63EB0 /* Debug */,
+ FA1A7EBEA8DA0526B3058F33 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 7F168B364AD77CD15E38A3F0 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */ = {
+ 8A7A775640C3114B93B0A4CC /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 6AD70E02DF94307C93DFF969 /* Debug */,
- 4CAECEDD333C4EC74852A1A3 /* Release */,
+ 3B46B8A1A49B9A6FE126A7F3 /* Debug */,
+ DBC3B39E9853DB625F8FAA73 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 810488EFD8A5DC6E54CDFBD0 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */ = {
+ 8C291B59A5D2440EBA129DD8 /* Build configuration list for PBXNativeTarget "IceScope macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 2007DCB0305D9778183DD30D /* Debug */,
- 090AFD1CD3AE0BE01D3DD5D3 /* Release */,
+ 3DC0609F40194772A821CA9C /* Debug */,
+ 0BF86E11398A3FF13379FB29 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 8457D3048B91B96446309692 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */ = {
+ 8E047B2C5887B009C08DF8A9 /* Build configuration list for PBXNativeTarget "IceHold iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 9B9F2A5C6BC62584690711CB /* Debug */,
- 421771E371FB7503D1F278D8 /* Release */,
+ 68A582DF4284CEE2B855C772 /* Debug */,
+ BDEC39C50781A109391F7C7E /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 853E1B04BB0B8A766B7C980E /* Build configuration list for PBXNativeTarget "IceInfo iOS" */ = {
+ 8E994D3FB6AE5A637FB76266 /* Build configuration list for PBXNativeTarget "IceSSL C++11 iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 47027A2BCBE400B522F80C16 /* Debug */,
- 07B091A4174AD412920E6ACC /* Release */,
+ EC481E724E660BECAD47803A /* Debug */,
+ 913EBE2775995E919DE52FB8 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 85F37B00888EF12FC2F8C769 /* Build configuration list for PBXNativeTarget "IceScope iOS" */ = {
+ 8F1169A14C5FFC0C3D6CF782 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- F66FA2DD7B5538BA7E814402 /* Debug */,
- A274C87FF97A3F7531F36F9B /* Release */,
+ C79B12E289E5A60E60EF859E /* Debug */,
+ 2905E102F0FAC2533272EA21 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 8695A3ED3FF360177DD416F8 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */ = {
+ 906EFFA48985FAAEAF5691BB /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 95E97AF3334898B85A9C23CC /* Debug */,
- 1E3438C5E9FF11BD87977416 /* Release */,
+ 06FBA0741F143D8124B0A653 /* Debug */,
+ 1352C78C8485C5D52ECBCC53 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 86E8FF9E4CDDC6792C9B8BB3 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */ = {
+ 94E7636391C60516A03A2298 /* Build configuration list for PBXNativeTarget "IceRetry iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 3EEA52775343CE79554651E7 /* Debug */,
- DFA984CF0F21E4505A4AFC66 /* Release */,
+ 039D63D338B998BFF11DD716 /* Debug */,
+ 66CF463B66EA573320E13402 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 87E94B7A34F404F02C5A75D5 /* Build configuration list for PBXNativeTarget "IceBinding macOS" */ = {
+ 98E347453B8C336B66FC9333 /* Build configuration list for PBXNativeTarget "IceProperties iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- DE8BAB1974B5EF22D9870ED0 /* Debug */,
- E4218C27199D25A0A9B7B54F /* Release */,
+ 48BC71471E26E687E4D602EB /* Debug */,
+ 7692BE6F26245C178F0CDB8C /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 88CE85A0E0062B0A1716616E /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */ = {
+ 99C66E52BD5A441013FE59BA /* Build configuration list for PBXNativeTarget "IceProperties macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 66F7D0F15A8526E2EB27DC8C /* Debug */,
- 2573E423F5F1DE2B6FA7A834 /* Release */,
+ BF371B1952C7C4B0CFF3210D /* Debug */,
+ 0E10447E4E993E4BBD671967 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 8DBFA5B2AA7690D5C6A46E7E /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */ = {
+ 9FFCC715BA02435E1096FBAA /* Build configuration list for PBXNativeTarget "IceInfo macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 5434D1EE8E6F3372DE15AD80 /* Debug */,
- 01E69FDCC032158B376B695F /* Release */,
+ F0866E557FFEE3F52E9BBAB2 /* Debug */,
+ 08D0D30B46A1CAE9D54981E1 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 8EF37949FE60BDFB132BD38C /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */ = {
+ A049B8D3BC61C4BCB949D2BE /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- B94D4A26B96685B6DA4D97C9 /* Debug */,
- F57B681B29AE397527CF7DD6 /* Release */,
+ 9B3F57E19DD1FFA2D7E2064F /* Debug */,
+ 099F8A62BFB5B4027E18CC9D /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 900419A1217A47848F7F878F /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */ = {
+ A0F50595BC156668C2E89978 /* Build configuration list for PBXNativeTarget "IceInfo iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 4B13610CB958657ACB20C730 /* Debug */,
- 43EA763B996E7A3728360494 /* Release */,
+ 4386B411E6324B59F5825FB7 /* Debug */,
+ 72578A0200BF937AC84B13D4 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 923E82D04BBD1892796204F8 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */ = {
+ A373504C9CC59D9F565CC675 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 81AA7F0B7FD29BD96C9C2ECD /* Debug */,
- 2E40FD59E4DAA91C5F0A0DAA /* Release */,
+ 0CFEA74E7C60AF754F14630A /* Debug */,
+ B04BB0FDF3120E3355E05E16 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 98521E3CC51928593719445F /* Build configuration list for PBXNativeTarget "IceIAP C++11 iOS" */ = {
+ A39E2D48580C09BBC71D5DBF /* Build configuration list for PBXNativeTarget "IceAcm macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- B1146288B2AE6ECBD4EC2983 /* Debug */,
- A1FB90DCC9BE3AC8E802889D /* Release */,
+ 0EAA1E59AE8D131750497ADA /* Debug */,
+ B1562430A5CC129977DC512F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 98BF3AE57809D14BCDFD9812 /* Build configuration list for PBXProject "ice" */ = {
+ AA0AE6796EB0CDCE44536B82 /* Build configuration list for PBXNativeTarget "IceServices macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 61B0DDDB3FC297E15AB1A7B2 /* Debug */,
- 63597B808FD72CCACB7CCB2C /* Release */,
+ DD5E3C503E2164D55FFA353E /* Debug */,
+ 6FC5EE48F74C53A7C3181493 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 9A1C26BA21A67EEE50E3490B /* Build configuration list for PBXNativeTarget "Ice macOS" */ = {
+ AA7B0CF72E5C2E65C41049C2 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 08B4362A683703FFB0035705 /* Debug */,
- AD105F085F0FC2CC971BBF21 /* Release */,
+ 12578991F42D0F4C626E7B61 /* Debug */,
+ 202865DFC39AE72F094ED6A8 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 9F3CCC808F43BBCDC6590CA6 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */ = {
+ AC4840906D5390A1ACF1707D /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- B232761B9569ABACDFF85551 /* Debug */,
- 3D53E388DFF779F6C980A3BC /* Release */,
+ 33799EB325747E6AC59F33B8 /* Debug */,
+ 62A97857C525CC9FD8C34A57 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- A205A776B81BB18A29C1EB17 /* Build configuration list for PBXNativeTarget "IceScope macOS" */ = {
+ AC850EB7D16CF35402B67CC2 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 170F4376D214A66672D44134 /* Debug */,
- A9080B0043CD5276EE77C61C /* Release */,
+ E0B7B6EE12F23960E9B56E79 /* Debug */,
+ D5ED36F6703926FC95622BD8 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- A263F6C281645281449993F6 /* Build configuration list for PBXNativeTarget "IceFacets macOS" */ = {
+ ACF5F649800A7C2D49AAEB9C /* Build configuration list for PBXNativeTarget "IceLocation macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- AD385CA3615023BEDDF6C305 /* Debug */,
- E2DCE7E55ACF10D44DC1707A /* Release */,
+ 7D262D1305BFCED7E1CCD9C6 /* Debug */,
+ 5E9DE732C9CF04B8F9E63C71 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- A45E2164B11135E65150E064 /* Build configuration list for PBXNativeTarget "IceOptional iOS" */ = {
+ AD060323B6E89ABBD37D5412 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- D4FC53C7F666EDEA3D38C4FD /* Debug */,
- 7900EDE13A302FECBD480ED3 /* Release */,
+ FCC40D53A6E59D7C33296621 /* Debug */,
+ B98A519D4ADF06DFAF8EE21F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- A6A12AD3D7060FB4C9BE0212 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */ = {
+ ADA8F6BD55276F10B6E816C5 /* Build configuration list for PBXNativeTarget "IceImpl iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- C01BB923B91C46CF51CCAA32 /* Debug */,
- 4A1AE663E6DC2A234693374E /* Release */,
+ E6072D648BAB473B7E79D891 /* Debug */,
+ CF2268377BF9187E71B81FDA /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- A7598B3368BB5CBC212802DC /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */ = {
+ B053A2B5E4DFA7ADD41297BA /* Build configuration list for PBXNativeTarget "IceObjects macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- FBC3259966D645958A5DE727 /* Debug */,
- A677E13DC54F7FD3616317EF /* Release */,
+ CB3B40EB18AA16DA72D611A5 /* Debug */,
+ 5DF9F00176C96CAFC429AEBD /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- ABCB4BF2F8351C233BB17527 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */ = {
+ B4E01ECB8C7E2FF0AE45FC02 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- EF8A23F1AFB2A8E13D4E6E6C /* Debug */,
- 787B8EF657BAD3F6CE5F7050 /* Release */,
+ DD1CC1EBDED94629920C1F5F /* Debug */,
+ 2D8C5568F4C3BC3510EB618E /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- ABEC778C602F8EEC501D2619 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */ = {
+ B75546AAD836D4DADE30C4CE /* Build configuration list for PBXNativeTarget "IceOperations iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 0DA4C8E16A7F56A91D6B6617 /* Debug */,
- E442D9A9AA8B0BD2D64FDDD3 /* Release */,
+ ABDFD15B28985A7B6985EAEB /* Debug */,
+ 4A8F87209B12C190E9374FB6 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- AE4C138C66BC2B1DCE698BE0 /* Build configuration list for PBXNativeTarget "IceProperties iOS" */ = {
+ BAE80F75820E98E535F0FE2C /* Build configuration list for PBXNativeTarget "IceGrid macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 7A536EB77C1F17DC4CD19CBC /* Debug */,
- 13EB38FE5FCBBC5BCFF10984 /* Release */,
+ 232A051D978EFD1D4BDA2C71 /* Debug */,
+ EC242F01EA2437372626DF09 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- AF4E60455B7E9C0AFED12C8C /* Build configuration list for PBXNativeTarget "IceFacets iOS" */ = {
+ BB7B27E3F192A856804504F7 /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 06D67E7D5EAC529E06947B65 /* Debug */,
- 1A0B0A7400018FE8D91CF77C /* Release */,
+ 87CA3E4F6DF5D0E7BA5C1A18 /* Debug */,
+ D8B492E3AE5FAE9C5669D57B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- B1F7AFA49D2F024FFDE05812 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */ = {
+ C4A6860A77BD8DB928E88B4E /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 02ABF61ECA113EAA8859C9DF /* Debug */,
- 5C325BA8D84A7C534974FB29 /* Release */,
+ 1BF3E1DCE82AC019D989071C /* Debug */,
+ 05E00A29D504F28ED0EF0D4C /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- BB849AF65D8E73450735E635 /* Build configuration list for PBXNativeTarget "IceRetry iOS" */ = {
+ C582C66DA84517E2DEF5BC5D /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- D6944A8D64DD08548D1A1C1D /* Debug */,
- F21C069D7D9A0CFBA32438EF /* Release */,
+ 536D19A6325EC1524A5A37B0 /* Debug */,
+ 20AF012B89CC69AD15F5DFAE /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- BC3734CED5FA04CAA5923005 /* Build configuration list for PBXNativeTarget "IceObjects macOS" */ = {
+ C6D068827C43CCD901F35E19 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- C5CCF80E492D52189B478099 /* Debug */,
- C784107DF13F80C3F4AFD758 /* Release */,
+ 676AEE9D3591D79E739B2904 /* Debug */,
+ C99DC2C96B48475DB02D46FF /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- BEE3CE9720A8AD9DB0663E0F /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */ = {
+ C90BB8962A6540993480EB24 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- CC0953EF88AF050D383122BB /* Debug */,
- AC9DE47338B7B2271E24157B /* Release */,
+ 00A21B1A617A14C477476556 /* Debug */,
+ 7B4BB334FC9D091D98A28B94 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- C113FB2FAE008EC4757DB682 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */ = {
+ D06BAC9C4FE0AD4A5BF09332 /* Build configuration list for PBXNativeTarget "IceServices iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- F2462004803304A4A78D8DC7 /* Debug */,
- 3BB5156212F6CAD77B4402EA /* Release */,
+ 3EC69D7BCBD2EF52FAD27A3A /* Debug */,
+ 444CA4C1F1FF378DCCE1111A /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- C4B764E265AF8EC5D767AED9 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */ = {
+ D14EE68874684570D055DEB2 /* Build configuration list for PBXNativeTarget "IceProxy iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- A180A9250D2DFCBCCF428889 /* Debug */,
- 9745E8817D65935C454398ED /* Release */,
+ 1E8213C73A7DEF8C9C2BA4EC /* Debug */,
+ E873B5E5D0CEC7DB66EDE31B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- C51A013BE9625A25B71425BD /* Build configuration list for PBXNativeTarget "IceObjects iOS" */ = {
+ D284C4AD4D778FCDFFB6DBA9 /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- B14B8A3494249083E7FC7C0B /* Debug */,
- B1AE3FB1065308774CFC7FB3 /* Release */,
+ 18BDC43DE2D13C9FF5693EFA /* Debug */,
+ F8E87BDF179C6476CD84F5DA /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- C53FD75A7B7D87B05FC3F9A5 /* Build configuration list for PBXNativeTarget "IceHold iOS" */ = {
+ D78D874B7777AD5604436353 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- E4CCCE5935CCBEEFEAE8092F /* Debug */,
- 9127131DDBF6762C90447345 /* Release */,
+ 1AABE36DADEB39D90D4409BE /* Debug */,
+ E06040A48BB56334F16C1C5F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- CB95316B94930906365B1106 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */ = {
+ D9276EC4F7CCD2B90FDF719A /* Build configuration list for PBXNativeTarget "IceObjects iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 54E40AC1FB703EBF189075A5 /* Debug */,
- DCC666AF25E042F03BF95129 /* Release */,
+ 970E76FE62E5A7999FB94E0E /* Debug */,
+ 65BB8B958CF4116861F0AA96 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- CC58ECA9F171F76159BEC55C /* Build configuration list for PBXNativeTarget "IceAcm macOS" */ = {
+ DA31AE610854CE4F88AC8266 /* Build configuration list for PBXNativeTarget "IceProxy macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 2C432741CEC6D7774F104EFC /* Debug */,
- 8C70E9C664C8DFF9AB746280 /* Release */,
+ DCDE3649117670A9E03F8B59 /* Debug */,
+ 7FAEA53E9429ADB3D3BD067B /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- CD32B57652A38AF1879B4156 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */ = {
+ E4BCB0FAD79923D9399D5008 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 9ECF31CC7DF9DEA20C18A0D4 /* Debug */,
- 24FB5A2351278B304A14C5AD /* Release */,
+ 6BFF12FCD4F9AE9287AB54AD /* Debug */,
+ 7D78C0E180F4BCDF1F3FBCEC /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- D13DB8BF02F53D4D5C5FC6B2 /* Build configuration list for PBXNativeTarget "IceStream macOS" */ = {
+ E76BB2299C636133E87D564E /* Build configuration list for PBXNativeTarget "IceAmi iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 8DABC3808377C045284EB13E /* Debug */,
- 5EF64097C3D5752B2F01C73E /* Release */,
+ 5185467D04F9C365D6BC11CC /* Debug */,
+ 69124971C29980AD6BF835A7 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- D1644BE84B2D01FA71FC02FF /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */ = {
+ E7FD53EEBFD3D39188FB5192 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 114E3442E15EC23AA0B6B6E6 /* Debug */,
- 58C7F3F4E77F6D715528F1AD /* Release */,
+ A11DFA2EED52074B5A54C39D /* Debug */,
+ 0833F58034C83EDB39D5E724 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- D79160B8E3ECE0695C9727E3 /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */ = {
+ E83289DC3FFCCCD073C1FFC5 /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- BC2CE533F1B71062D986321B /* Debug */,
- 3D8F6302F9F3A80E0B25D7BD /* Release */,
+ E2AE9D739BC21F4EAAB21E83 /* Debug */,
+ 4E27362132EDEDF3E8255027 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- DB497E90ACA3B876CDECF5EF /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */ = {
+ E8D5C0992B3EC9BF06C2E413 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 26F0C026CF4D20186ADAD3C0 /* Debug */,
- E6561ED652E8D076C7E1868E /* Release */,
+ 9BF5CBA8205C2222AEBEF02F /* Debug */,
+ 008BE08EBFD705AB8BD9D06C /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- DBA11E9A93E60DF58EDA583A /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */ = {
+ EA9C18267B52FF115D5FBDAF /* Build configuration list for PBXNativeTarget "IceEnums iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- E9F23FA6B680B09DF3ACFA64 /* Debug */,
- 072E641EA962781B39BB011B /* Release */,
+ F2C7F51C198DC59D3E55EE57 /* Debug */,
+ FC7550AA0AB6887CBE880FFB /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- DD394E80B7E7B948E9D86B33 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */ = {
+ EC64E89B4ECDF625FBCF24EE /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- E0D9DA9FB6B4D445B76286A2 /* Debug */,
- 25F7F12F4487DF2FA845B8C5 /* Release */,
+ 8CC3171A3FCB1856FBD85647 /* Debug */,
+ 2E9D8630DFC1F25E74F68895 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- E78172F94479A2AA0D1DF182 /* Build configuration list for PBXNativeTarget "Ice iOS" */ = {
+ ED7198BFB413F597DDF01014 /* Build configuration list for PBXNativeTarget "Ice macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- BA1F2FEEA01A27166C02D3D2 /* Debug */,
- 7F56A2310453A98D305F167F /* Release */,
+ 1545247935082ACC11738D41 /* Debug */,
+ E304234B1BB9DCEB457BB65A /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- EA00BEBC7A32E2119B6BACF5 /* Build configuration list for PBXNativeTarget "IceStream iOS" */ = {
+ F4684A7A6357578EC96E6279 /* Build configuration list for PBXNativeTarget "IceScope iOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 507ED95C55131047609CE376 /* Debug */,
- 70115ADA48ACA6D5ADA5B31B /* Release */,
+ F8BD846E6DA76535B354C69A /* Debug */,
+ 8BA94984B6EB51FE0D00EF56 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- F025CE48F8B716A89A12071C /* Build configuration list for PBXNativeTarget "IceUdp macOS" */ = {
+ F5937BA8C8F690AA8EAEBB12 /* Build configuration list for PBXNativeTarget "IceBinding macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- C4396A2AC4B0EAA42B889292 /* Debug */,
- 290339A820ADE2412811A1C2 /* Release */,
+ 51AC082DB34CF45C6A6E07B0 /* Debug */,
+ 124748EE53668E7A57BD72DF /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- F34AE495D66246942ADC9AF0 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */ = {
+ F743A0D4109BD1BAD0F483FF /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 1127BB99CE9704A819AB4CC4 /* Debug */,
- 143B16414490D434C06C8953 /* Release */,
+ E44A0832345623ACECF3D6CD /* Debug */,
+ 81A4B493F80C81690E6F4095 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- FBF289C22BE858FDED854882 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */ = {
+ FB69FF66505566A1F0F531E7 /* Build configuration list for PBXNativeTarget "IceOptional macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- C3CB9050CDFB50A093E63D9E /* Debug */,
- 447E42AB4F306EC4A83EC118 /* Release */,
+ 0D58EBD3E57EBA6F2D7B8616 /* Debug */,
+ 340EEC288385DC81E3F46449 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- FDE53A09EE668091EEB4AEE5 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */ = {
+ FD8230E9C1D0EE28B4931D47 /* Build configuration list for PBXNativeTarget "IceSSL C++11 macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- 0F0D63D3E58AB25B22B320D1 /* Debug */,
- 7E4072970024CF0647EF74C6 /* Release */,
+ 51B7CFEA55483BB6DC6B4344 /* Debug */,
+ 53AB641F579CDCAA1C6BAF61 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- FEF8355684CDB82C03AC93E7 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */ = {
+ FFF4542034AC0A918BA23AD2 /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */ = {
isa = XCConfigurationList;
buildConfigurations = (
- C53C33F9D04F767A0507B06C /* Debug */,
- E0C89A57F93E9230EDC6B346 /* Release */,
+ FB76AF229F4FADF3436C35BA /* Debug */,
+ 2EF17FDD47A984C63821D1A9 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
};
- rootObject = 41F00024FF339B5061D8BCF4 /* Project object */;
+ rootObject = 0726E601744CEB8B4C528E4A /* Project object */;
}
diff --git a/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme b/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme
index 03cea42ecb6..c9657accc99 100644
--- a/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme
+++ b/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme
@@ -14,7 +14,7 @@
buildForArchiving = "YES">
<BuildableReference
BuildableIdentifier = "primary"
- BlueprintIdentifier = "41AF91D808C68D2FDFDEC0E4"
+ BlueprintIdentifier = "82A5700C3111DD043A653C62"
BuildableName = "IceImpl.framework"
BlueprintName = "IceImpl iOS"
ReferencedContainer = "container:ice.xcodeproj">
@@ -28,7 +28,7 @@
buildForArchiving = "YES">
<BuildableReference
BuildableIdentifier = "primary"
- BlueprintIdentifier = "FAA60FF4700E1629AA35CA6B"
+ BlueprintIdentifier = "9CC26892A88B1BB899E53DF5"
BuildableName = "Ice.framework"
BlueprintName = "Ice iOS"
ReferencedContainer = "container:ice.xcodeproj">
@@ -42,7 +42,7 @@
buildForArchiving = "YES">
<BuildableReference
BuildableIdentifier = "primary"
- BlueprintIdentifier = "FCAA4DCF1BD66E55753D8DE0"
+ BlueprintIdentifier = "853E509B9FD262019EBA40BE"
BuildableName = "Glacier2.framework"
BlueprintName = "Glacier2 iOS"
ReferencedContainer = "container:ice.xcodeproj">
@@ -56,7 +56,7 @@
buildForArchiving = "YES">
<BuildableReference
BuildableIdentifier = "primary"
- BlueprintIdentifier = "4448C0412CE8E4BBD74B6938"
+ BlueprintIdentifier = "243376B5BCD8FB6B573F35B1"
BuildableName = "IceStorm.framework"
BlueprintName = "IceStorm iOS"
ReferencedContainer = "container:ice.xcodeproj">
@@ -70,7 +70,7 @@
buildForArchiving = "YES">
<BuildableReference
BuildableIdentifier = "primary"
- BlueprintIdentifier = "19BA482623F0EEF5700964FF"
+ BlueprintIdentifier = "28E66BF870D16ED437F027B7"
BuildableName = "IceGrid.framework"
BlueprintName = "IceGrid iOS"
ReferencedContainer = "container:ice.xcodeproj">
diff --git a/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice macOS.xcscheme b/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice macOS.xcscheme
index af10e02d1ba..f12275a53d7 100644
--- a/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice macOS.xcscheme
+++ b/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice macOS.xcscheme
@@ -14,7 +14,7 @@
buildForArchiving = "YES">
<BuildableReference
BuildableIdentifier = "primary"
- BlueprintIdentifier = "BF4AF5071FFE74BD004E45D9"
+ BlueprintIdentifier = "0B20F023D2E1BC4B57915592"
BuildableName = "IceImpl.framework"
BlueprintName = "IceImpl macOS"
ReferencedContainer = "container:ice.xcodeproj">
@@ -28,7 +28,7 @@
buildForArchiving = "YES">
<BuildableReference
BuildableIdentifier = "primary"
- BlueprintIdentifier = "89D3AFE4AD95A970E6498E06"
+ BlueprintIdentifier = "70073F296AA7A50B2A86451A"
BuildableName = "Ice.framework"
BlueprintName = "Ice macOS"
ReferencedContainer = "container:ice.xcodeproj">
@@ -42,7 +42,7 @@
buildForArchiving = "YES">
<BuildableReference
BuildableIdentifier = "primary"
- BlueprintIdentifier = "0D1E892424EEBFE0181DF694"
+ BlueprintIdentifier = "B6E7B96E62DB9ACA0E5D579D"
BuildableName = "Glacier2.framework"
BlueprintName = "Glacier2 macOS"
ReferencedContainer = "container:ice.xcodeproj">
@@ -56,7 +56,7 @@
buildForArchiving = "YES">
<BuildableReference
BuildableIdentifier = "primary"
- BlueprintIdentifier = "10FF7E84A1164BACC6E539FF"
+ BlueprintIdentifier = "9ABEB8C8AD9097D7F07B50B5"
BuildableName = "IceStorm.framework"
BlueprintName = "IceStorm macOS"
ReferencedContainer = "container:ice.xcodeproj">
@@ -70,7 +70,7 @@
buildForArchiving = "YES">
<BuildableReference
BuildableIdentifier = "primary"
- BlueprintIdentifier = "B90E5201833CD54733E58F25"
+ BlueprintIdentifier = "3EAB7D1B9F1CE476576FAA4C"
BuildableName = "IceGrid.framework"
BlueprintName = "IceGrid macOS"
ReferencedContainer = "container:ice.xcodeproj">