Build Information
Successful build of DBUS, reference main (a648c7), with Swift 6.2 for macOS (SPM) on 26 Apr 2026 18:28:29 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/wendylabsinc/dbus.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/wendylabsinc/dbus
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at a648c77 Merge pull request #26 from wendylabsinc/feature/dbus-codegen
Cloned https://github.com/wendylabsinc/dbus.git
Revision (git rev-parse @):
a648c770068b3fa843bc06326ec50d97aea3f152
SUCCESS checkout https://github.com/wendylabsinc/dbus.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/wendylabsinc/dbus.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64
[0/7] Write sources
[1/7] Write dbus-codegen-tool-entitlement.plist
[3/7] Write swift-version--3CB7CFEC50E0D141.txt
[5/17] Compiling DBusCodegen SignalGenerator.swift
[6/17] Compiling DBusCodegen TypeMapper.swift
[7/17] Compiling DBusCodegen ServerGenerator.swift
[8/17] Compiling DBusCodegen Codegen.swift
[9/17] Compiling DBusCodegen IR.swift
[10/17] Compiling DBusCodegen DBusTypes.swift
[11/17] Emitting module DBusCodegen
[12/17] Compiling DBusCodegen ClientGenerator.swift
[13/17] Compiling DBusCodegen CodeWriter.swift
[14/17] Compiling DBusCodegen Parser.swift
[15/19] Emitting module dbus_codegen
[16/19] Compiling dbus_codegen main.swift
[16/19] Write Objects.LinkFileList
[17/19] Linking dbus-codegen-tool
[18/19] Applying dbus-codegen-tool
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:13:29: warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
11 |
12 | let tool = try context.tool(named: "dbus-codegen")
13 | let outputDir = context.pluginWorkDirectory
| |- warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
| `- note: use 'pluginWorkDirectoryURL' instead
14 |
15 | return target.sourceFiles
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:16:20: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
14 |
15 | return target.sourceFiles
16 | .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
17 | .map { xmlFile -> Command in
18 | let outputName = xmlFile.path.lastComponent
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:16:25: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
14 |
15 | return target.sourceFiles
16 | .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
17 | .map { xmlFile -> Command in
18 | let outputName = xmlFile.path.lastComponent
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:18:34: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
16 | .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
17 | .map { xmlFile -> Command in
18 | let outputName = xmlFile.path.lastComponent
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
19 | .replacingOccurrences(of: ".dbus.xml", with: ".dbus.swift")
20 | let outputFile = outputDir.appending(outputName)
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:18:39: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
16 | .filter { $0.path.lastComponent.hasSuffix(".dbus.xml") }
17 | .map { xmlFile -> Command in
18 | let outputName = xmlFile.path.lastComponent
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
19 | .replacingOccurrences(of: ".dbus.xml", with: ".dbus.swift")
20 | let outputFile = outputDir.appending(outputName)
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:20:36: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
18 | let outputName = xmlFile.path.lastComponent
19 | .replacingOccurrences(of: ".dbus.xml", with: ".dbus.swift")
20 | let outputFile = outputDir.appending(outputName)
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
21 |
22 | return .buildCommand(
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:22:17: warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
20 | let outputFile = outputDir.appending(outputName)
21 |
22 | return .buildCommand(
| `- warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
23 | displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
24 | executable: tool.path,
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:23:49: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
21 |
22 | return .buildCommand(
23 | displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
24 | executable: tool.path,
25 | arguments: [
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:23:54: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
21 |
22 | return .buildCommand(
23 | displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
24 | executable: tool.path,
25 | arguments: [
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:24:28: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
22 | return .buildCommand(
23 | displayName: "DBus codegen: \(xmlFile.path.lastComponent)",
24 | executable: tool.path,
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
25 | arguments: [
26 | xmlFile.path.string,
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:26:21: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
24 | executable: tool.path,
25 | arguments: [
26 | xmlFile.path.string,
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
27 | "--output-dir", outputDir.string,
28 | ],
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:26:26: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
24 | executable: tool.path,
25 | arguments: [
26 | xmlFile.path.string,
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
27 | "--output-dir", outputDir.string,
28 | ],
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:27:39: warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
25 | arguments: [
26 | xmlFile.path.string,
27 | "--output-dir", outputDir.string,
| `- warning: 'string' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
28 | ],
29 | inputFiles: [xmlFile.path],
/Users/admin/builder/spi-builder-workspace/Plugins/DBusCodegenPlugin/plugin.swift:29:32: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
27 | "--output-dir", outputDir.string,
28 | ],
29 | inputFiles: [xmlFile.path],
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
30 | outputFiles: [outputFile]
31 | )
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1/1] Compiling plugin DBusCodegenPlugin
Building for debugging...
[1/63] Write sources
[1/63] Write dbus-codegen-tool-entitlement.plist
[3/63] Write sources
[4/63] Write ExampleApp-entitlement.plist
[4/63] Write dbus-codegen-entitlement.plist
[4/63] Write sources
[13/63] Copying PrivacyInfo.xcprivacy
[13/63] Write sources
[16/63] Copying PrivacyInfo.xcprivacy
[17/63] Write sources
[26/63] Compiling CNIOWindows shim.c
[27/63] Compiling CNIOWindows WSAStartup.c
[28/63] Compiling CNIOWASI CNIOWASI.c
[29/63] Compiling CNIOLinux liburing_shims.c
[30/63] Compiling CNIOLinux shim.c
[31/63] Compiling CNIOOpenBSD shim.c
[32/63] Write BleScanner-entitlement.plist
[32/63] Write AvahiBrowse-entitlement.plist
[32/63] Write sources
[35/63] Write swift-version--3CB7CFEC50E0D141.txt
[36/63] Compiling _AtomicsShims.c
[37/69] Compiling CNIOPosix event_loop_id.c
[38/69] Compiling CNIOLLHTTP c_nio_http.c
[39/69] Compiling CNIOLLHTTP c_nio_api.c
[40/104] Compiling CNIOLLHTTP c_nio_llhttp.c
[41/104] Compiling CNIODarwin shim.c
[42/104] Write Objects.LinkFileList
[44/197] Compiling _NIOBase64 Base64.swift
[45/197] Emitting module _NIOBase64
[46/197] Compiling Atomics AtomicReference.swift
[47/197] Compiling Atomics AtomicStorage.swift
[48/197] Compiling Atomics AtomicValue.swift
[49/197] Compiling Atomics AtomicMemoryOrderings.swift
[50/198] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[50/198] Linking dbus-codegen-tool
[52/198] Compiling DBusCodegen SignalGenerator.swift
[53/198] Compiling DBusCodegen TypeMapper.swift
[54/198] Compiling DBusCodegen IR.swift
[55/198] Compiling DBusCodegen Parser.swift
[56/198] Compiling DBusCodegen Codegen.swift
[57/198] Compiling DBusCodegen DBusTypes.swift
[58/198] Emitting module DBusCodegen
[59/198] Compiling DBusCodegen CodeWriter.swift
[60/198] Compiling DBusCodegen ClientGenerator.swift
[61/198] Compiling DBusCodegen ServerGenerator.swift
[62/198] Compiling Atomics UnsafeAtomicLazyReference.swift
[63/198] Compiling Atomics IntegerOperations.swift
[64/198] Compiling Atomics DoubleWord.swift
[65/198] Compiling Atomics ManagedAtomic.swift
[66/198] Compiling Atomics ManagedAtomicLazyReference.swift
[67/198] Compiling Atomics UnsafeAtomic.swift
[72/199] Compiling Atomics PointerConformances.swift
[73/199] Compiling Atomics Primitives.native.swift
[74/199] Compiling Atomics AtomicInteger.swift
[75/199] Compiling Atomics AtomicOptionalWrappable.swift
[76/199] Compiling Atomics OptionalRawRepresentable.swift
[77/199] Compiling Atomics RawRepresentable.swift
[78/199] Compiling Atomics AtomicBool.swift
[79/199] Compiling Atomics IntegerConformances.swift
[79/199] Applying dbus-codegen-tool
Generated: /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/AvahiBrowse/destination/DBusCodegenPlugin/avahi.dbus.swift
[82/199] DBus codegen: avahi.dbus.xml
[83/199] Write sources
Generated: /Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/BleScanner/destination/DBusCodegenPlugin/bluez.dbus.swift
[84/199] DBus codegen: bluez.dbus.xml
[85/199] Write sources
[87/201] Compiling Atomics Unmanaged extensions.swift
[88/201] Emitting module InternalCollectionsUtilities
[93/201] Compiling _NIODataStructures PriorityQueue.swift
[94/201] Compiling _NIODataStructures _TinyArray.swift
[95/201] Compiling Logging MetadataProvider.swift
[96/235] Compiling ContainersPreview ContainerIterator.swift
[97/235] Compiling ContainersPreview DynamicContainer.swift
[98/235] Compiling ContainersPreview MutableContainer.swift
[99/235] Compiling ContainersPreview PermutableContainer.swift
[100/235] Compiling ContainersPreview Producer.swift
[101/235] Compiling ContainersPreview Borrow.swift
[102/235] Compiling ContainersPreview Box.swift
[103/238] Compiling ContainersPreview Drain+Reduce.swift
[104/238] Compiling ContainersPreview Drain.swift
[105/238] Compiling ContainersPreview Producer+Collect.swift
[106/238] Compiling ContainersPreview BorrowingIteratorProtocol.swift
[107/238] Compiling ContainersPreview BorrowingSequence+Standard Conformances.swift
[108/238] Compiling ContainersPreview BorrowingSequence+Utilities.swift
[109/238] Compiling ContainersPreview BorrowingSequence.swift
[110/238] Compiling ContainersPreview Producer+Filter.swift
[111/238] Compiling ContainersPreview Producer+Map.swift
[112/238] Compiling ContainersPreview Producer+Reduce.swift
[113/238] Compiling ContainersPreview BidirectionalContainer.swift
[114/238] Compiling ContainersPreview Container+Filter.swift
[115/238] Compiling ContainersPreview Container+SpanwiseZip.swift
[116/238] Compiling ContainersPreview Container.swift
[117/238] Compiling ContainersPreview BorrowingIteratorProtocol+Filter.swift
[118/238] Compiling ContainersPreview BorrowingIteratorProtocol+Map.swift
[119/238] Compiling ContainersPreview BorrowingIteratorProtocol+Reduce.swift
[120/238] Compiling ContainersPreview BorrowingIteratorProtocol+SpanwiseZip.swift
[121/238] Compiling ContainersPreview RandomAccessContainer.swift
[122/238] Compiling ContainersPreview RangeExpression2.swift
[123/238] Compiling ContainersPreview RangeReplaceableContainer.swift
[124/238] Compiling ContainersPreview Drain+Map.swift
[125/238] Emitting module Logging
[126/238] Emitting module dbus_codegen
[127/238] Compiling dbus_codegen main.swift
[127/238] Write Objects.LinkFileList
[129/238] Compiling ContainersPreview Inout.swift
[130/238] Compiling ContainersPreview InputSpan.swift
[131/238] Compiling ContainersPreview Shared.swift
[132/238] Emitting module ContainersPreview
[133/238] Compiling ContainersPreview OutputSpan+Extras.swift
[134/238] Compiling ContainersPreview TemporaryAllocation.swift
[135/238] Compiling ContainersPreview BorrowingIteratorProtocol+Copy.swift
[136/238] Compiling ContainersPreview BorrowingIteratorProtocol+ElementsEqual.swift
[141/238] Emitting module _NIODataStructures
[142/238] Compiling _NIODataStructures Heap.swift
[142/279] Linking dbus-codegen
[143/279] Applying dbus-codegen
[145/279] Compiling DequeModule UniqueDeque+Append.swift
[146/279] Compiling DequeModule UniqueDeque+Consumption.swift
[147/279] Compiling DequeModule UniqueDeque+Container.swift
[148/279] Compiling DequeModule UniqueDeque+Descriptions.swift
[149/279] Compiling DequeModule RigidDeque+Hashable.swift
[150/279] Compiling DequeModule RigidDeque+Initializers.swift
[151/279] Compiling DequeModule RigidDeque+Insertions.swift
[152/279] Compiling DequeModule RigidDeque+Prepend.swift
[153/279] Compiling DequeModule UniqueDeque+Equatable.swift
[154/279] Compiling DequeModule UniqueDeque+Experimental.swift
[155/279] Compiling DequeModule UniqueDeque+Hashable.swift
[156/279] Compiling DequeModule UniqueDeque+Initializers.swift
[157/283] Compiling DequeModule RigidDeque+Removals.swift
[158/283] Compiling DequeModule RigidDeque+Replacements.swift
[159/283] Compiling DequeModule RigidDeque+Testing.swift
[160/283] Compiling DequeModule RigidDeque.swift
[161/283] Compiling DequeModule RigidDeque+Consumption.swift
[162/283] Compiling DequeModule RigidDeque+Container.swift
[163/283] Compiling DequeModule RigidDeque+Descriptions.swift
[164/283] Compiling DequeModule RigidDeque+Equatable.swift
[165/283] Compiling DequeModule RigidDeque+Experimental.swift
[166/283] Compiling DequeModule UniqueDeque+Insertions.swift
[167/283] Compiling DequeModule UniqueDeque+Prepend.swift
[168/283] Compiling DequeModule UniqueDeque+Removals.swift
[169/283] Compiling DequeModule UniqueDeque+Replacements.swift
[170/283] Compiling Logging LogHandler.swift
[171/283] Compiling Logging Logging.swift
[172/283] Compiling Logging LogEvent.swift
[173/283] Compiling Logging Locks.swift
[174/283] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[175/283] Compiling DequeModule Deque+Extras.swift
[176/283] Compiling DequeModule Deque._Storage.swift
[177/283] Compiling DequeModule Deque+Codable.swift
[178/283] Emitting module Atomics
[179/283] Compiling DequeModule Deque._UnsafeHandle.swift
[180/283] Compiling DequeModule Deque.swift
[181/283] Compiling DequeModule _DequeBuffer.swift
[182/283] Compiling DequeModule _DequeBufferHeader.swift
[183/283] Compiling DequeModule RigidDeque+Append.swift
[186/283] Compiling DequeModule Deque+Hashable.swift
[187/283] Compiling DequeModule Deque+Testing.swift
[190/283] Compiling DequeModule Deque+Collection.swift
[191/283] Compiling DequeModule Deque+CustomReflectable.swift
[192/283] Compiling DequeModule Deque+Descriptions.swift
[193/283] Compiling DequeModule Deque+Equatable.swift
[193/283] Compiling c-nioatomics.c
[194/283] Compiling c-atomics.c
[196/290] Emitting module DequeModule
[197/290] Compiling NIOConcurrencyHelpers NIOLock.swift
[198/290] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[199/290] Emitting module NIOConcurrencyHelpers
[200/290] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[201/290] Compiling NIOConcurrencyHelpers lock.swift
[202/290] Compiling NIOConcurrencyHelpers atomics.swift
[203/290] Compiling NIOConcurrencyHelpers NIOThreadPoolWorkAvailable.swift
[204/290] Compiling DequeModule UniqueDeque.swift
[205/290] Compiling DequeModule _DequeSlot.swift
[206/290] Compiling DequeModule _UnsafeDequeHandle.swift
[207/290] Compiling DequeModule _UnsafeDequeSegments.swift
[208/355] Emitting module Crypto
[209/363] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[210/363] Compiling NIOCore NIOScheduledCallback.swift
[211/363] Compiling NIOCore NIOSendable.swift
[212/363] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[213/363] Compiling NIOCore NIOTransportAccessibleChannelCore.swift
[214/363] Compiling NIOCore RecvByteBufferAllocator.swift
[215/363] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[216/363] Compiling Crypto HPKE-Errors.swift
[217/363] Compiling Crypto HPKE.swift
[218/363] Compiling Crypto HPKE-Context.swift
[219/363] Compiling Crypto HPKE-KeySchedule.swift
[220/363] Compiling Crypto HPKE-Modes.swift
[221/363] Compiling Crypto Insecure.swift
[222/363] Compiling Crypto Insecure_HashFunctions.swift
[223/363] Compiling Crypto KEM.swift
[224/363] Compiling Crypto ECDH_boring.swift
[225/363] Compiling NIOCore Linux.swift
[226/363] Compiling NIOCore MarkedCircularBuffer.swift
[227/363] Compiling NIOCore MulticastChannel.swift
[228/363] Compiling NIOCore NIOAny.swift
[229/363] Compiling NIOCore NIOCloseOnErrorHandler.swift
[230/363] Compiling NIOCore NIOCoreSendableMetatype.swift
[231/363] Compiling NIOCore NIODecodedAsyncSequence.swift
[232/363] Compiling NIOCore NIOLoopBound.swift
[233/363] Compiling NIOCore NIOAsyncWriter.swift
[234/363] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[235/363] Compiling NIOCore BSDSocketAPI.swift
[236/363] Compiling NIOCore ByteBuffer-aux.swift
[237/363] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[238/363] Compiling NIOCore ByteBuffer-conversions.swift
[239/363] Compiling NIOCore ByteBuffer-core.swift
[240/363] Compiling NIOCore ByteBuffer-hex.swift
[241/363] Compiling NIOCore AddressedEnvelope.swift
[242/363] Compiling NIOCore AsyncAwaitSupport.swift
[243/363] Compiling NIOCore AsyncChannel.swift
[244/363] Compiling NIOCore AsyncChannelHandler.swift
[245/363] Compiling NIOCore AsyncChannelInboundStream.swift
[246/363] Compiling NIOCore AsyncChannelOutboundWriter.swift
[247/363] Compiling NIOCore NIOAsyncSequenceProducer.swift
[248/363] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[249/363] Compiling NIOCore ByteBuffer-int.swift
[250/363] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[251/363] Compiling NIOCore ByteBuffer-multi-int.swift
[252/363] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[253/363] Compiling NIOCore ByteBuffer-views.swift
[254/363] Compiling NIOCore Channel.swift
[255/363] Compiling NIOCore ChannelHandler.swift
[256/363] Compiling NIOCore ChannelHandlers.swift
[257/363] Compiling NIOCore ChannelInvoker.swift
[258/363] Compiling NIOCore ChannelOption.swift
[259/363] Compiling NIOCore ChannelPipeline.swift
[260/363] Compiling NIOCore CircularBuffer.swift
[261/363] Compiling NIOCore Codec.swift
[262/363] Compiling NIOCore ConvenienceOptionSupport.swift
[263/363] Compiling NIOCore DeadChannel.swift
[264/363] Compiling NIOCore DispatchQueue+WithFuture.swift
[265/363] Compiling NIOCore EventLoop+Deprecated.swift
[266/363] Compiling NIOCore FileRegion.swift
[267/363] Compiling NIOCore GlobalSingletons.swift
[268/363] Compiling NIOCore IO.swift
[269/363] Compiling NIOCore IOData.swift
[270/363] Compiling NIOCore IPProtocol.swift
[271/363] Compiling NIOCore IntegerBitPacking.swift
[272/363] Compiling NIOCore IntegerTypes.swift
[273/363] Compiling NIOCore Interfaces.swift
[274/363] Compiling NIOCore EventLoop+SerialExecutor.swift
[275/363] Compiling NIOCore EventLoop.swift
[276/363] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[277/363] Compiling NIOCore EventLoopFuture+Deprecated.swift
[278/363] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[279/363] Compiling NIOCore EventLoopFuture.swift
[280/363] Compiling NIOCore FileDescriptor.swift
[281/363] Compiling NIOCore FileHandle.swift
[282/363] Compiling Crypto RNG_boring.swift
[283/363] Compiling Crypto SafeCompare_boring.swift
[284/363] Compiling Crypto Zeroization_boring.swift
[285/363] Compiling Crypto PrettyBytes.swift
[286/363] Compiling Crypto SafeCompare.swift
[287/363] Compiling Crypto SecureBytes.swift
[288/363] Compiling Crypto Zeroization.swift
[289/363] Compiling Crypto resource_bundle_accessor.swift
[332/370] Compiling NIOCore SocketAddresses.swift
[333/370] Compiling NIOCore SocketOptionProvider.swift
[334/370] Compiling NIOCore SystemCallHelpers.swift
[335/370] Compiling NIOCore TimeAmount+Duration.swift
[336/370] Compiling NIOCore TypeAssistedChannelHandler.swift
[337/370] Compiling NIOCore UniversalBootstrapSupport.swift
[338/370] Compiling NIOCore Utilities.swift
[361/370] Emitting module NIOCore
[362/426] Compiling NIOEmbedded Embedded.swift
[363/426] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[364/426] Compiling NIOEmbedded AsyncTestingChannel.swift
[365/426] Emitting module NIOEmbedded
[366/426] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[367/426] Compiling NIOPosix PosixSingletons.swift
[368/426] Compiling NIOPosix RawSocketBootstrap.swift
[369/426] Compiling NIOPosix Resolver.swift
[370/426] Compiling NIOPosix Selectable.swift
[371/426] Compiling NIOPosix SelectableChannel.swift
[372/431] Compiling NIOPosix StructuredConcurrencyHelpers.swift
[373/431] Compiling NIOPosix System.swift
[374/431] Compiling NIOPosix Thread.swift
[375/431] Compiling NIOPosix ThreadPosix.swift
[376/431] Compiling NIOPosix ThreadWindows.swift
[377/431] Compiling NIOPosix Linux.swift
[378/431] Compiling NIOPosix LinuxCPUSet.swift
[379/431] Compiling NIOPosix LinuxUring.swift
[380/431] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[381/431] Compiling NIOPosix NIOPosixSendableMetatype.swift
[382/431] Compiling NIOPosix NIOThreadPool.swift
[383/431] Compiling NIOPosix BSDSocketAPICommon.swift
[384/431] Compiling NIOPosix BSDSocketAPIPosix.swift
[385/431] Compiling NIOPosix BSDSocketAPIWindows.swift
[386/431] Compiling NIOPosix BaseSocket.swift
[387/431] Compiling NIOPosix BaseSocketChannel+AccessibleTransport.swift
[388/431] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[389/431] Compiling NIOPosix FileDescriptor.swift
[390/431] Compiling NIOPosix GetaddrinfoResolver.swift
[391/431] Compiling NIOPosix HappyEyeballs.swift
[392/431] Compiling NIOPosix IO.swift
[393/431] Compiling NIOPosix IntegerBitPacking.swift
[394/431] Compiling NIOPosix IntegerTypes.swift
[395/431] Compiling NIOPosix Utilities.swift
[396/431] Compiling NIOPosix VsockAddress.swift
[397/431] Compiling NIOPosix VsockChannelEvents.swift
[398/431] Compiling NIOPosix Windows.swift
[399/431] Compiling NIOPosix resource_bundle_accessor.swift
[400/431] Emitting module NIOPosix
[401/431] Compiling NIOPosix SelectableEventLoop.swift
[402/431] Compiling NIOPosix SelectorEpoll.swift
[403/431] Compiling NIOPosix SelectorGeneric.swift
[404/431] Compiling NIOPosix SelectorKqueue.swift
[405/431] Compiling NIOPosix SelectorUring.swift
[406/431] Compiling NIOPosix SelectorWSAPoll.swift
[407/431] Compiling NIOPosix ServerSocket.swift
[408/431] Compiling NIOPosix Socket.swift
[409/431] Compiling NIOPosix SocketChannel.swift
[410/431] Compiling NIOPosix SocketProtocols.swift
[411/431] Compiling NIOPosix BaseSocketChannel.swift
[412/431] Compiling NIOPosix BaseStreamSocketChannel.swift
[413/431] Compiling NIOPosix Bootstrap.swift
[414/431] Compiling NIOPosix ControlMessage.swift
[415/431] Compiling NIOPosix DatagramVectorReadManager.swift
[416/431] Compiling NIOPosix Errors+Any.swift
[417/431] Compiling NIOPosix NonBlockingFileIO.swift
[418/431] Compiling NIOPosix PendingDatagramWritesManager.swift
[419/431] Compiling NIOPosix PendingWritesManager.swift
[420/431] Compiling NIOPosix PipeChannel.swift
[421/431] Compiling NIOPosix PipePair.swift
[422/431] Compiling NIOPosix Pool.swift
[423/433] Emitting module NIO
[424/433] Compiling NIO Exports.swift
[425/450] Compiling NIOHTTP1 NIOTypedHTTPServerUpgradeHandler.swift
[426/450] Compiling NIOHTTP1 NIOTypedHTTPClientUpgraderStateMachine.swift
[427/451] Compiling NIOHTTP1 NIOTypedHTTPServerUpgraderStateMachine.swift
[428/451] Compiling NIOHTTP1 NIOHTTPObjectAggregator.swift
[429/451] Compiling NIOHTTP1 NIOTypedHTTPClientUpgradeHandler.swift
[430/451] Compiling NIOHTTP1 HTTPServerUpgradeHandler.swift
[431/451] Compiling NIOHTTP1 HTTPTypedPipelineSetup.swift
[432/451] Compiling NIOHTTP1 HTTPServerPipelineHandler.swift
[433/451] Compiling NIOHTTP1 HTTPServerProtocolErrorHandler.swift
[434/451] Compiling NIOHTTP1 ByteCollectionUtils.swift
[435/451] Compiling NIOHTTP1 HTTPDecoder.swift
[436/451] Compiling NIOHTTP1 HTTPEncoder.swift
[437/451] Compiling NIOHTTP1 HTTPHeaderValidator.swift
[438/451] Emitting module NIOHTTP1
[439/451] Compiling NIOHTTP1 HTTPTypes.swift
[440/451] Compiling NIOHTTP1 NIOHTTPClientUpgradeHandler.swift
[441/451] Compiling NIOHTTP1 HTTPHeaders+Validation.swift
[442/451] Compiling NIOHTTP1 HTTPPipelineSetup.swift
[443/470] Compiling NIOExtras QuiescingHelper.swift
[444/470] Compiling NIOExtras RequestResponseHandler.swift
[445/470] Compiling NIOExtras RequestResponseHandlers+State.swift
[446/470] Compiling NIOExtras RequestResponseWithIDHandler.swift
[447/470] Compiling NIOExtras NIORequestIdentifiable.swift
[448/470] Compiling NIOExtras PCAPRingBuffer.swift
[449/471] Compiling NIOExtras JSONRPCFraming+ContentLengthHeader.swift
[450/471] Compiling NIOExtras JSONRPCFraming.swift
[451/471] Compiling NIOExtras NIOExtrasError.swift
[452/471] Compiling NIOExtras NIOLengthFieldBitLength.swift
[453/471] Compiling NIOExtras LineBasedFrameDecoder.swift
[454/471] Compiling NIOExtras MarkedCircularBuffer+PopFirstCheckMarked.swift
[455/471] Compiling NIOExtras FixedLengthFrameDecoder.swift
[456/471] Compiling NIOExtras HTTP1ProxyConnectHandler.swift
[457/471] Compiling NIOExtras DebugInboundEventsHandler.swift
[458/471] Compiling NIOExtras DebugOutboundEventsHandler.swift
[459/471] Emitting module NIOExtras
[460/471] Compiling NIOExtras LengthFieldBasedFrameDecoder.swift
[461/471] Compiling NIOExtras LengthFieldPrepender.swift
[462/471] Compiling NIOExtras WritePCAPHandler.swift
[463/491] Emitting module DBUS
[464/491] Compiling DBUS DBusError.swift
[465/491] Compiling DBUS DBusMessageCodec.swift
[466/491] Compiling DBUS ByteBuffer+DBus.swift
[467/491] Compiling DBUS DBusAddress.swift
[468/491] Compiling DBUS DBusAuthMechanism.swift
[469/491] Compiling DBUS DBusServerConnection.swift
[470/491] Compiling DBUS DBusMessage+Flags.swift
[471/493] Compiling DBUS DBusVariant.swift
[472/493] Compiling DBUS TypeSignature.swift
[473/493] Compiling DBUS HeaderField.swift
[474/493] Compiling DBUS DBusString.swift
[475/493] Compiling DBUS DBusValidation.swift
[476/493] Compiling DBUS HeaderField+Code.swift
[477/493] Compiling DBUS DBusType.swift
[478/493] Compiling DBUS DBusValue.swift
[479/493] Compiling DBUS DBusMessage+MessageType.swift
[480/493] Compiling DBUS DBusMessage.swift
[481/493] Compiling DBUS DBusAuthenticationHandler.swift
[482/493] Compiling DBUS DBusClient.swift
[483/493] Compiling DBUS DBusObjectServer.swift
[484/493] Compiling DBUS DBusSerialGenerator.swift
[485/501] Compiling ExampleApp App.swift
[486/501] Emitting module ExampleApp
[487/501] Compiling AvahiBrowse AvahiBrowse.swift
[488/501] Compiling AvahiBrowse avahi.dbus.swift
/Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/AvahiBrowse/destination/DBusCodegenPlugin/avahi.dbus.swift:93:85: warning: keyword 'protocol' does not need to be escaped in argument list
91 | guard case .string(let domain) = ctx.arguments[3] else { throw DBusCodegenError.typeMismatch }
92 | guard case .uint32(let flags) = ctx.arguments[4] else { throw DBusCodegenError.typeMismatch }
93 | let result = try await self.serviceBrowserNew(interface: interface, `protocol`: `protocol`, `type`: `type`, domain: domain, flags: flags)
| `- warning: keyword 'protocol' does not need to be escaped in argument list
94 | return [.objectPath(result)]
95 | },
/Users/admin/builder/spi-builder-workspace/.build/plugins/outputs/spi-builder-workspace/AvahiBrowse/destination/DBusCodegenPlugin/avahi.dbus.swift:93:109: warning: keyword 'type' does not need to be escaped in argument list
91 | guard case .string(let domain) = ctx.arguments[3] else { throw DBusCodegenError.typeMismatch }
92 | guard case .uint32(let flags) = ctx.arguments[4] else { throw DBusCodegenError.typeMismatch }
93 | let result = try await self.serviceBrowserNew(interface: interface, `protocol`: `protocol`, `type`: `type`, domain: domain, flags: flags)
| `- warning: keyword 'type' does not need to be escaped in argument list
94 | return [.objectPath(result)]
95 | },
[489/501] Emitting module AvahiBrowse
[490/501] Compiling BleScanner BleScanner.swift
[491/501] Compiling BleScanner bluez.dbus.swift
[492/501] Emitting module BleScanner
[492/501] Write Objects.LinkFileList
[495/501] Linking ExampleApp
[496/501] Applying ExampleApp
[497/501] Linking AvahiBrowse
[498/501] Linking BleScanner
[499/501] Applying AvahiBrowse
[500/501] Applying BleScanner
Build complete! (64.63s)
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-nio.git
Fetching https://github.com/apple/swift-nio-extras.git
[1/6519] Fetching swift-nio-extras
[327/13174] Fetching swift-nio-extras, swift-log
[1901/30610] Fetching swift-nio-extras, swift-log, swift-crypto
[14570/113829] Fetching swift-nio-extras, swift-log, swift-crypto, swift-nio
Fetched https://github.com/apple/swift-log.git from cache (5.64s)
Fetched https://github.com/apple/swift-crypto.git from cache (5.64s)
Fetched https://github.com/apple/swift-nio-extras.git from cache (5.64s)
Fetched https://github.com/apple/swift-nio.git from cache (5.64s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.34.0 (6.25s)
Fetching https://github.com/apple/swift-asn1.git
Fetching https://github.com/apple/swift-async-algorithms.git
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-http-structured-headers.git
Fetching https://github.com/swift-server/swift-service-lifecycle.git
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/apple/swift-nio-ssl.git
[1/1803] Fetching swift-asn1
[146/3045] Fetching swift-asn1, swift-http-structured-headers
[214/4865] Fetching swift-asn1, swift-http-structured-headers, swift-atomics
[300/7610] Fetching swift-asn1, swift-http-structured-headers, swift-atomics, swift-service-lifecycle
[1196/14762] Fetching swift-asn1, swift-http-structured-headers, swift-atomics, swift-service-lifecycle, swift-certificates
[3183/21009] Fetching swift-asn1, swift-http-structured-headers, swift-atomics, swift-service-lifecycle, swift-certificates, swift-async-algorithms
[9354/36449] Fetching swift-asn1, swift-http-structured-headers, swift-atomics, swift-service-lifecycle, swift-certificates, swift-async-algorithms, swift-nio-ssl
Fetched https://github.com/apple/swift-asn1.git from cache (0.93s)
[7694/34646] Fetching swift-http-structured-headers, swift-atomics, swift-service-lifecycle, swift-certificates, swift-async-algorithms, swift-nio-ssl
Fetching https://github.com/apple/swift-http-types.git
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.97s)
[9509/33404] Fetching swift-atomics, swift-service-lifecycle, swift-certificates, swift-async-algorithms, swift-nio-ssl
Fetching https://github.com/apple/swift-nio-http2.git
Fetched https://github.com/apple/swift-atomics.git from cache (1.05s)
[14297/31584] Fetching swift-service-lifecycle, swift-certificates, swift-async-algorithms, swift-nio-ssl
Fetching https://github.com/apple/swift-algorithms.git
[21395/32627] Fetching swift-service-lifecycle, swift-certificates, swift-async-algorithms, swift-nio-ssl, swift-http-types
Fetched https://github.com/apple/swift-http-types.git from cache (0.76s)
[26644/31584] Fetching swift-service-lifecycle, swift-certificates, swift-async-algorithms, swift-nio-ssl
[26799/37642] Fetching swift-service-lifecycle, swift-certificates, swift-async-algorithms, swift-nio-ssl, swift-algorithms
[27169/49750] Fetching swift-service-lifecycle, swift-certificates, swift-async-algorithms, swift-nio-ssl, swift-algorithms, swift-nio-http2
Fetched https://github.com/apple/swift-algorithms.git from cache (1.14s)
[34369/43692] Fetching swift-service-lifecycle, swift-certificates, swift-async-algorithms, swift-nio-ssl, swift-nio-http2
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (2.24s)
Fetched https://github.com/apple/swift-async-algorithms.git from cache (2.24s)
Fetched https://github.com/apple/swift-certificates.git from cache (2.25s)
Fetched https://github.com/apple/swift-nio-ssl.git from cache (2.25s)
[3027/12108] Fetching swift-nio-http2
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.64s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (5.63s)
Fetching https://github.com/apple/swift-numerics.git
[1/6416] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.12s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (2.10s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.5.1 (0.52s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.11.0 (0.53s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.1.3 (0.60s)
Fetching https://github.com/apple/swift-collections.git
[1/23686] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.98s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.37.0 (2.54s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.1.1 (1.13s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.7.0 (2.20s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.99.0 (0.71s)
Fetching https://github.com/apple/swift-system.git
[1/5601] Fetching swift-system
Fetched https://github.com/apple/swift-system.git from cache (1.10s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.19.0 (1.78s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.7.0 (0.54s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.54s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.15.1 (0.84s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (0.56s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.4.1 (0.64s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.43.0 (0.55s)
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.4.1
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.12.0
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.43.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.7.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.1.1
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.7.0
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.34.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.99.0
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.5.1
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.37.0
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.6.4
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.1.3
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.11.0
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.15.1
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.19.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Build complete.
{
"dependencies" : [
{
"identity" : "swift-nio",
"requirement" : {
"range" : [
{
"lower_bound" : "2.70.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio.git"
},
{
"identity" : "swift-nio-extras",
"requirement" : {
"range" : [
{
"lower_bound" : "1.26.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-nio-extras.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.4.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "swift-crypto",
"requirement" : {
"range" : [
{
"lower_bound" : "3.0.0",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-crypto.git"
}
],
"manifest_display_name" : "DBUS",
"name" : "DBUS",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "DBUS",
"targets" : [
"DBUS"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "DBusCodegen",
"targets" : [
"DBusCodegen"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "dbus-codegen",
"targets" : [
"dbus-codegen"
],
"type" : {
"executable" : null
}
},
{
"name" : "AvahiBrowse",
"targets" : [
"AvahiBrowse"
],
"type" : {
"executable" : null
}
},
{
"name" : "BleScanner",
"targets" : [
"BleScanner"
],
"type" : {
"executable" : null
}
},
{
"name" : "DBusCodegenPlugin",
"targets" : [
"DBusCodegenPlugin"
],
"type" : {
"plugin" : null
}
},
{
"name" : "ExampleApp",
"targets" : [
"ExampleApp"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "dbus_codegen",
"module_type" : "SwiftTarget",
"name" : "dbus-codegen",
"path" : "Sources/dbus-codegen",
"product_memberships" : [
"dbus-codegen",
"AvahiBrowse",
"BleScanner",
"DBusCodegenPlugin"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"DBusCodegen"
],
"type" : "executable"
},
{
"c99name" : "ExampleApp",
"module_type" : "SwiftTarget",
"name" : "ExampleApp",
"path" : "Sources/ExampleApp",
"product_memberships" : [
"ExampleApp"
],
"sources" : [
"App.swift"
],
"target_dependencies" : [
"DBUS"
],
"type" : "executable"
},
{
"c99name" : "DBusCodegenTests",
"module_type" : "SwiftTarget",
"name" : "DBusCodegenTests",
"path" : "Tests/DBusCodegenTests",
"sources" : [
"ClientGeneratorTests.swift",
"CodeWriterTests.swift",
"IRTests.swift",
"IntegrationTests.swift",
"ParserTests.swift",
"ServerGeneratorTests.swift",
"SignalGeneratorTests.swift",
"TypeMapperTests.swift"
],
"target_dependencies" : [
"DBusCodegen"
],
"type" : "test"
},
{
"c99name" : "DBusCodegenPlugin",
"module_type" : "PluginTarget",
"name" : "DBusCodegenPlugin",
"path" : "Plugins/DBusCodegenPlugin",
"plugin_capability" : {
"type" : "buildTool"
},
"product_memberships" : [
"AvahiBrowse",
"BleScanner",
"DBusCodegenPlugin"
],
"sources" : [
"plugin.swift"
],
"target_dependencies" : [
"dbus-codegen"
],
"type" : "plugin"
},
{
"c99name" : "DBusCodegen",
"module_type" : "SwiftTarget",
"name" : "DBusCodegen",
"path" : "Sources/DBusCodegen",
"product_memberships" : [
"DBusCodegen",
"dbus-codegen",
"AvahiBrowse",
"BleScanner",
"DBusCodegenPlugin"
],
"sources" : [
"ClientGenerator.swift",
"CodeWriter.swift",
"Codegen.swift",
"DBusTypes.swift",
"IR.swift",
"Parser.swift",
"ServerGenerator.swift",
"SignalGenerator.swift",
"TypeMapper.swift"
],
"type" : "library"
},
{
"c99name" : "DBUSTests",
"module_type" : "SwiftTarget",
"name" : "DBUSTests",
"path" : "Tests/DBUSTests",
"sources" : [
"DBusAddressTests.swift",
"DBusAuthenticationHandlerTests.swift",
"DBusClientTests.swift",
"DBusMessageCodecTests.swift",
"DBusObjectServerTests.swift",
"DBusValueTests.swift",
"Test.swift",
"TypeSignatureTests.swift"
],
"target_dependencies" : [
"DBUS"
],
"type" : "test"
},
{
"c99name" : "DBUS",
"module_type" : "SwiftTarget",
"name" : "DBUS",
"path" : "Sources/DBUS",
"product_dependencies" : [
"NIOCore",
"NIOExtras",
"Logging",
"Crypto"
],
"product_memberships" : [
"DBUS",
"AvahiBrowse",
"BleScanner",
"ExampleApp"
],
"sources" : [
"ByteBuffer+DBus.swift",
"DBusAddress.swift",
"DBusAuthMechanism.swift",
"DBusAuthenticationHandler.swift",
"DBusClient.swift",
"DBusError.swift",
"DBusMessageCodec.swift",
"DBusObjectServer.swift",
"DBusSerialGenerator.swift",
"DBusServerConnection.swift",
"Message/DBusMessage+Flags.swift",
"Message/DBusMessage+MessageType.swift",
"Message/DBusMessage.swift",
"Message/DBusValidation.swift",
"Message/HeaderField+Code.swift",
"Message/HeaderField.swift",
"Message/Primitives/DBusString.swift",
"Message/Primitives/DBusType.swift",
"Message/Primitives/DBusValue.swift",
"Message/Primitives/DBusVariant.swift",
"Message/Primitives/TypeSignature.swift"
],
"type" : "library"
},
{
"c99name" : "BleScanner",
"module_type" : "SwiftTarget",
"name" : "BleScanner",
"path" : "Sources/BleScanner",
"product_dependencies" : [
"NIOCore"
],
"product_memberships" : [
"BleScanner"
],
"sources" : [
"BleScanner.swift"
],
"target_dependencies" : [
"DBUS",
"DBusCodegenPlugin"
],
"type" : "executable"
},
{
"c99name" : "AvahiBrowse",
"module_type" : "SwiftTarget",
"name" : "AvahiBrowse",
"path" : "Sources/AvahiBrowse",
"product_dependencies" : [
"NIOCore"
],
"product_memberships" : [
"AvahiBrowse"
],
"sources" : [
"AvahiBrowse.swift"
],
"target_dependencies" : [
"DBUS",
"DBusCodegenPlugin"
],
"type" : "executable"
}
],
"tools_version" : "6.0"
}
Done.