Implement macOS local MP3 discovery foundation
This commit is contained in:
parent
4b8701e55b
commit
6d426f2a54
4
.gitignore
vendored
4
.gitignore
vendored
@ -115,4 +115,6 @@ timeline.xctimeline
|
||||
playground.xcworkspace
|
||||
|
||||
# Swift Package Manager
|
||||
# Package.resolved
|
||||
# Package.resolved
|
||||
packages/apple/**/.build/
|
||||
**/.build/
|
||||
|
||||
@ -11,6 +11,7 @@
|
||||
151772779307EFC3B3A17477 /* MacLibraryViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD72F644E3F2E28758E68D63 /* MacLibraryViewModel.swift */; };
|
||||
2E9DD262BF65832378F37DD4 /* VelodyPersistence in Frameworks */ = {isa = PBXBuildFile; productRef = 4DD09D7C123E184CEC0A2F4D /* VelodyPersistence */; };
|
||||
2F9E426A66F4887C301AB13C /* FolderAccessService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EC9AED651FE0AB193AAFE94 /* FolderAccessService.swift */; };
|
||||
3B9765B34963F430467B7527 /* LocalMusicScanner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CAD2FE907C9C90FBE01E7D4 /* LocalMusicScanner.swift */; };
|
||||
3D22DE55C4A27A4DE68E6359 /* VelodyUtilities in Frameworks */ = {isa = PBXBuildFile; productRef = AAD3F903A475AA0B0159C79E /* VelodyUtilities */; };
|
||||
3D2A2E7D9371C62F8F86DD84 /* VelodyDomain in Frameworks */ = {isa = PBXBuildFile; productRef = 3C910108376E6ECEF152DCE1 /* VelodyDomain */; };
|
||||
5D2616BFA3DD5E131EC928F2 /* iPhoneLibraryViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE56EE8AD38DC563003A7979 /* iPhoneLibraryViewModel.swift */; };
|
||||
@ -29,6 +30,7 @@
|
||||
/* Begin PBXFileReference section */
|
||||
07508485E10C6E2942FE29AB /* VelodySync */ = {isa = PBXFileReference; lastKnownFileType = folder; name = VelodySync; path = ../../packages/apple/VelodySync; sourceTree = SOURCE_ROOT; };
|
||||
0F6993844F6FD7E86D52EC25 /* VelodyNetworking */ = {isa = PBXFileReference; lastKnownFileType = folder; name = VelodyNetworking; path = ../../packages/apple/VelodyNetworking; sourceTree = SOURCE_ROOT; };
|
||||
3CAD2FE907C9C90FBE01E7D4 /* LocalMusicScanner.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocalMusicScanner.swift; sourceTree = "<group>"; };
|
||||
5EC9AED651FE0AB193AAFE94 /* FolderAccessService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FolderAccessService.swift; sourceTree = "<group>"; };
|
||||
6E7BCB85A35B8286E4472822 /* VelodyPersistence */ = {isa = PBXFileReference; lastKnownFileType = folder; name = VelodyPersistence; path = ../../packages/apple/VelodyPersistence; sourceTree = SOURCE_ROOT; };
|
||||
7A1BDB40E1A38A685237BCF3 /* VelodyMac.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = VelodyMac.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
@ -108,6 +110,7 @@
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5EC9AED651FE0AB193AAFE94 /* FolderAccessService.swift */,
|
||||
3CAD2FE907C9C90FBE01E7D4 /* LocalMusicScanner.swift */,
|
||||
DB28FE17346E100F697C1BF4 /* MacLibraryView.swift */,
|
||||
AD72F644E3F2E28758E68D63 /* MacLibraryViewModel.swift */,
|
||||
96A45EA6FB9536D0CD91874C /* VelodyMacApp.swift */,
|
||||
@ -226,6 +229,7 @@
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2F9E426A66F4887C301AB13C /* FolderAccessService.swift in Sources */,
|
||||
3B9765B34963F430467B7527 /* LocalMusicScanner.swift in Sources */,
|
||||
A54D8AD8A59D8B77FCA0794F /* MacLibraryView.swift in Sources */,
|
||||
151772779307EFC3B3A17477 /* MacLibraryViewModel.swift in Sources */,
|
||||
7174D80FB45839E82F150613 /* VelodyMacApp.swift in Sources */,
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
import AppKit
|
||||
import Foundation
|
||||
import VelodyPersistence
|
||||
|
||||
@MainActor
|
||||
final class FolderAccessService {
|
||||
final class FolderAccessService: VelodyPersistence.FolderAccessService {
|
||||
private let bookmarkKey = "velody.selected-folder.bookmark"
|
||||
|
||||
func chooseFolder() -> URL? {
|
||||
@ -16,17 +17,8 @@ final class FolderAccessService {
|
||||
return nil
|
||||
}
|
||||
|
||||
do {
|
||||
let bookmark = try url.bookmarkData(
|
||||
options: [.withSecurityScope],
|
||||
includingResourceValuesForKeys: nil,
|
||||
relativeTo: nil
|
||||
)
|
||||
UserDefaults.standard.set(bookmark, forKey: bookmarkKey)
|
||||
return url
|
||||
} catch {
|
||||
return url
|
||||
}
|
||||
saveBookmark(for: url)
|
||||
return url
|
||||
}
|
||||
|
||||
func storedFolderURL() -> URL? {
|
||||
@ -37,11 +29,31 @@ final class FolderAccessService {
|
||||
}
|
||||
|
||||
var isStale = false
|
||||
return try? URL(
|
||||
guard let url = try? URL(
|
||||
resolvingBookmarkData: bookmark,
|
||||
options: [.withSecurityScope],
|
||||
relativeTo: nil,
|
||||
bookmarkDataIsStale: &isStale
|
||||
)
|
||||
) else {
|
||||
return nil
|
||||
}
|
||||
|
||||
if isStale {
|
||||
saveBookmark(for: url)
|
||||
}
|
||||
|
||||
return url
|
||||
}
|
||||
|
||||
private func saveBookmark(for url: URL) {
|
||||
guard let bookmark = try? url.bookmarkData(
|
||||
options: [.withSecurityScope],
|
||||
includingResourceValuesForKeys: nil,
|
||||
relativeTo: nil
|
||||
) else {
|
||||
return
|
||||
}
|
||||
|
||||
UserDefaults.standard.set(bookmark, forKey: bookmarkKey)
|
||||
}
|
||||
}
|
||||
|
||||
131
apps/apple/VelodyMac/Sources/LocalMusicScanner.swift
Normal file
131
apps/apple/VelodyMac/Sources/LocalMusicScanner.swift
Normal file
@ -0,0 +1,131 @@
|
||||
import AVFoundation
|
||||
import Foundation
|
||||
import VelodyDomain
|
||||
import VelodyPersistence
|
||||
|
||||
final class AVFoundationMetadataReader: MetadataReader {
|
||||
func readMetadata(for fileURL: URL) async throws -> LocalTrackMetadata {
|
||||
let asset = AVURLAsset(url: fileURL)
|
||||
let commonMetadata = try await asset.load(.commonMetadata)
|
||||
let duration = try? await asset.load(.duration)
|
||||
|
||||
return LocalTrackMetadata(
|
||||
title: commonMetadata.firstStringValue(for: .commonIdentifierTitle),
|
||||
artist: commonMetadata.firstStringValue(for: .commonIdentifierArtist),
|
||||
album: commonMetadata.firstStringValue(for: .commonIdentifierAlbumName),
|
||||
durationSeconds: duration?.seconds.validDurationSeconds
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
final class FileSystemLocalMusicScanner: LocalMusicScanner {
|
||||
private let metadataReader: any MetadataReader
|
||||
private let fileManager: FileManager
|
||||
|
||||
init(
|
||||
metadataReader: any MetadataReader,
|
||||
fileManager: FileManager = .default
|
||||
) {
|
||||
self.metadataReader = metadataReader
|
||||
self.fileManager = fileManager
|
||||
}
|
||||
|
||||
func scanFolder(at folderURL: URL) async throws -> [LibraryTrack] {
|
||||
let hasScopedAccess = folderURL.startAccessingSecurityScopedResource()
|
||||
defer {
|
||||
if hasScopedAccess {
|
||||
folderURL.stopAccessingSecurityScopedResource()
|
||||
}
|
||||
}
|
||||
|
||||
guard let enumerator = fileManager.enumerator(
|
||||
at: folderURL,
|
||||
includingPropertiesForKeys: [.isRegularFileKey],
|
||||
options: [.skipsHiddenFiles, .skipsPackageDescendants]
|
||||
) else {
|
||||
throw CocoaError(.fileReadUnknown)
|
||||
}
|
||||
|
||||
var discoveredTracks: [LibraryTrack] = []
|
||||
|
||||
for case let fileURL as URL in enumerator {
|
||||
guard shouldScan(fileURL) else {
|
||||
continue
|
||||
}
|
||||
|
||||
let fallbackTitle = fileURL.deletingPathExtension().lastPathComponent
|
||||
|
||||
do {
|
||||
let metadata = try await metadataReader.readMetadata(for: fileURL)
|
||||
discoveredTracks.append(
|
||||
LibraryTrack(
|
||||
id: fileURL.path,
|
||||
title: metadata.title?.trimmedNonEmpty ?? fallbackTitle,
|
||||
artist: metadata.artist?.trimmedNonEmpty ?? "Unknown Artist",
|
||||
album: metadata.album?.trimmedNonEmpty,
|
||||
durationSeconds: metadata.durationSeconds,
|
||||
localFilePath: fileURL.path,
|
||||
sha256: nil
|
||||
)
|
||||
)
|
||||
} catch {
|
||||
discoveredTracks.append(
|
||||
LibraryTrack(
|
||||
id: fileURL.path,
|
||||
title: fallbackTitle,
|
||||
artist: "Unknown Artist",
|
||||
album: nil,
|
||||
durationSeconds: nil,
|
||||
localFilePath: fileURL.path,
|
||||
sha256: nil
|
||||
)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
return discoveredTracks.sorted { lhs, rhs in
|
||||
let titleOrder = lhs.title.localizedCaseInsensitiveCompare(rhs.title)
|
||||
if titleOrder == .orderedSame {
|
||||
return lhs.localFilePath.localizedCaseInsensitiveCompare(rhs.localFilePath) == .orderedAscending
|
||||
}
|
||||
|
||||
return titleOrder == .orderedAscending
|
||||
}
|
||||
}
|
||||
|
||||
private func shouldScan(_ fileURL: URL) -> Bool {
|
||||
guard fileURL.pathExtension.lowercased() == "mp3" else {
|
||||
return false
|
||||
}
|
||||
|
||||
let resourceValues = try? fileURL.resourceValues(forKeys: [.isRegularFileKey])
|
||||
return resourceValues?.isRegularFile == true
|
||||
}
|
||||
}
|
||||
|
||||
private extension Array where Element == AVMetadataItem {
|
||||
func firstStringValue(for identifier: AVMetadataIdentifier) -> String? {
|
||||
AVMetadataItem
|
||||
.metadataItems(from: self, filteredByIdentifier: identifier)
|
||||
.first?
|
||||
.stringValue?
|
||||
.trimmedNonEmpty
|
||||
}
|
||||
}
|
||||
|
||||
private extension Double {
|
||||
var validDurationSeconds: Double? {
|
||||
guard isFinite, self > 0 else {
|
||||
return nil
|
||||
}
|
||||
|
||||
return self
|
||||
}
|
||||
}
|
||||
|
||||
private extension String {
|
||||
var trimmedNonEmpty: String? {
|
||||
let trimmed = trimmingCharacters(in: .whitespacesAndNewlines)
|
||||
return trimmed.isEmpty ? nil : trimmed
|
||||
}
|
||||
}
|
||||
@ -1,3 +1,4 @@
|
||||
import Foundation
|
||||
import SwiftUI
|
||||
import VelodyDomain
|
||||
|
||||
@ -5,52 +6,91 @@ struct MacLibraryView: View {
|
||||
@State private var viewModel = MacLibraryViewModel()
|
||||
|
||||
var body: some View {
|
||||
NavigationSplitView {
|
||||
VStack(alignment: .leading, spacing: 16) {
|
||||
Text("Private Library Foundation")
|
||||
.font(.largeTitle)
|
||||
|
||||
Text("Selected folder")
|
||||
.font(.headline)
|
||||
|
||||
Text(viewModel.selectedFolderPath)
|
||||
.textSelection(.enabled)
|
||||
.foregroundStyle(.secondary)
|
||||
|
||||
HStack(spacing: 12) {
|
||||
Button("Choose Music Folder") {
|
||||
viewModel.chooseFolder()
|
||||
}
|
||||
|
||||
Button("Scan MP3 Files") {
|
||||
Task {
|
||||
await viewModel.scanMP3Files()
|
||||
}
|
||||
}
|
||||
.disabled(viewModel.selectedFolderPath == "No folder selected" || viewModel.isScanning)
|
||||
}
|
||||
|
||||
HStack(spacing: 12) {
|
||||
Text("Discovered tracks: \(viewModel.discoveredTrackCount)")
|
||||
.font(.headline)
|
||||
|
||||
if viewModel.isScanning {
|
||||
ProgressView()
|
||||
.controlSize(.small)
|
||||
}
|
||||
}
|
||||
|
||||
Text(viewModel.scanStatus)
|
||||
.foregroundStyle(.secondary)
|
||||
|
||||
List(viewModel.tracks) { track in
|
||||
VStack(alignment: .leading, spacing: 4) {
|
||||
Text(track.title)
|
||||
.font(.headline)
|
||||
Text(track.artist)
|
||||
.foregroundStyle(.secondary)
|
||||
|
||||
if let album = track.album {
|
||||
Text(album)
|
||||
.font(.caption)
|
||||
.foregroundStyle(.secondary)
|
||||
}
|
||||
|
||||
if let durationSeconds = track.durationSeconds {
|
||||
Text("Duration: \(format(durationSeconds: durationSeconds))")
|
||||
.font(.caption2)
|
||||
.foregroundStyle(.tertiary)
|
||||
}
|
||||
|
||||
Text(track.localFilePath)
|
||||
.font(.caption2)
|
||||
.foregroundStyle(.tertiary)
|
||||
.lineLimit(1)
|
||||
}
|
||||
.padding(.vertical, 4)
|
||||
}
|
||||
.navigationTitle("Velody")
|
||||
} detail: {
|
||||
VStack(alignment: .leading, spacing: 16) {
|
||||
Text("Private Library Foundation")
|
||||
.font(.largeTitle)
|
||||
Text("Selected folder")
|
||||
.font(.headline)
|
||||
Text(viewModel.selectedFolderPath)
|
||||
.textSelection(.enabled)
|
||||
Text("Sync status")
|
||||
.font(.headline)
|
||||
Text(viewModel.syncStatus)
|
||||
.foregroundStyle(.secondary)
|
||||
|
||||
HStack {
|
||||
Button("Choose Watched Folder") {
|
||||
viewModel.chooseFolder()
|
||||
}
|
||||
Button("Refresh Placeholder Sync") {
|
||||
Task {
|
||||
await viewModel.refreshSyncStatus()
|
||||
}
|
||||
}
|
||||
.overlay {
|
||||
if viewModel.tracks.isEmpty && !viewModel.isScanning {
|
||||
ContentUnavailableView(
|
||||
"No MP3 Files Discovered",
|
||||
systemImage: "music.note.list",
|
||||
description: Text("Choose a folder, then run a manual scan.")
|
||||
)
|
||||
}
|
||||
|
||||
Spacer()
|
||||
}
|
||||
.padding(24)
|
||||
|
||||
Spacer(minLength: 0)
|
||||
}
|
||||
.padding(24)
|
||||
.task {
|
||||
await viewModel.loadIfNeeded()
|
||||
}
|
||||
}
|
||||
|
||||
private func format(durationSeconds: Double) -> String {
|
||||
let totalSeconds = Int(durationSeconds.rounded())
|
||||
let minutes = totalSeconds / 60
|
||||
let seconds = totalSeconds % 60
|
||||
return String(format: "%d:%02d", minutes, seconds)
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,59 +1,76 @@
|
||||
import Foundation
|
||||
import Observation
|
||||
import VelodyDomain
|
||||
import VelodyNetworking
|
||||
import VelodyPersistence
|
||||
import VelodySync
|
||||
import VelodyUtilities
|
||||
|
||||
@MainActor
|
||||
@Observable
|
||||
final class MacLibraryViewModel {
|
||||
var tracks: [LibraryTrack] = []
|
||||
var selectedFolderPath = "No folder selected"
|
||||
var syncStatus = "Sync not started"
|
||||
var scanStatus = "Choose a folder to begin local discovery."
|
||||
var discoveredTrackCount = 0
|
||||
var isScanning = false
|
||||
|
||||
private let folderAccessService = FolderAccessService()
|
||||
private let keychainService = MemoryKeychainService()
|
||||
private let folderAccessService: any VelodyPersistence.FolderAccessService
|
||||
private let localMusicScanner: any LocalMusicScanner
|
||||
private let store = InMemoryLocalLibraryStore()
|
||||
private let syncCoordinator: PlaceholderSyncCoordinator
|
||||
private var hasLoaded = false
|
||||
|
||||
init() {
|
||||
let environment = ServerEnvironment(
|
||||
baseURL: URL(string: "http://localhost:3000")!,
|
||||
appVersion: "0.1.0"
|
||||
)
|
||||
let apiClient = StubVelodyAPIClient(environment: environment)
|
||||
self.syncCoordinator = PlaceholderSyncCoordinator(
|
||||
apiClient: apiClient,
|
||||
store: store
|
||||
let folderAccessService = FolderAccessService()
|
||||
let localMusicScanner = FileSystemLocalMusicScanner(
|
||||
metadataReader: AVFoundationMetadataReader()
|
||||
)
|
||||
|
||||
self.folderAccessService = folderAccessService
|
||||
self.localMusicScanner = localMusicScanner
|
||||
|
||||
if let url = folderAccessService.storedFolderURL() {
|
||||
selectedFolderPath = url.path
|
||||
scanStatus = "Folder restored. Run a manual scan to discover MP3 files."
|
||||
}
|
||||
}
|
||||
|
||||
func loadIfNeeded() async {
|
||||
guard !hasLoaded else { return }
|
||||
hasLoaded = true
|
||||
await refreshSyncStatus()
|
||||
await keychainService.save("placeholder-bootstrap-token", forKey: "bootstrap-token")
|
||||
}
|
||||
|
||||
func refreshSyncStatus() async {
|
||||
do {
|
||||
let result = try await syncCoordinator.performInitialSync()
|
||||
tracks = result.tracks
|
||||
syncStatus = result.statusMessage
|
||||
} catch {
|
||||
syncStatus = "Sync placeholder failed: \(error.localizedDescription)"
|
||||
}
|
||||
tracks = await store.loadTracks()
|
||||
discoveredTrackCount = tracks.count
|
||||
}
|
||||
|
||||
func chooseFolder() {
|
||||
if let url = folderAccessService.chooseFolder() {
|
||||
selectedFolderPath = url.path
|
||||
scanStatus = "Folder selected. Run a manual scan to discover MP3 files."
|
||||
tracks = []
|
||||
discoveredTrackCount = 0
|
||||
Task {
|
||||
await store.replaceTracks([])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func scanMP3Files() async {
|
||||
guard let folderURL = folderAccessService.storedFolderURL() else {
|
||||
scanStatus = "Choose a folder before scanning."
|
||||
return
|
||||
}
|
||||
|
||||
isScanning = true
|
||||
scanStatus = "Scanning MP3 files..."
|
||||
defer {
|
||||
isScanning = false
|
||||
}
|
||||
|
||||
do {
|
||||
let discoveredTracks = try await localMusicScanner.scanFolder(at: folderURL)
|
||||
await store.replaceTracks(discoveredTracks)
|
||||
tracks = await store.loadTracks()
|
||||
discoveredTrackCount = tracks.count
|
||||
scanStatus = "Scan finished. Found \(discoveredTrackCount) MP3 file(s)."
|
||||
} catch {
|
||||
scanStatus = "Scan failed: \(error.localizedDescription)"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,48 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405596000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 491412
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1772775407000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,68 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405610000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 179160
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1772775407000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1771712577000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1771712453000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
- mtime: 1776563970000000000
|
||||
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22494
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,36 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405583000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 77504
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1772775407000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,64 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405605000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 210900
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1772775407000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1771712577000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1771712453000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,100 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405644000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 3785860
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1772775407000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1771712577000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1771712453000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
- mtime: 1776563970000000000
|
||||
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22494
|
||||
sdk_relative: true
|
||||
- mtime: 1772774440000000000
|
||||
path: 'usr/include/XPC.apinotes'
|
||||
size: 123
|
||||
sdk_relative: true
|
||||
- mtime: 1772776850000000000
|
||||
path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes'
|
||||
size: 162
|
||||
sdk_relative: true
|
||||
- mtime: 1772253432000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes'
|
||||
size: 81098
|
||||
sdk_relative: true
|
||||
- mtime: 1776563957000000000
|
||||
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 45109
|
||||
sdk_relative: true
|
||||
- mtime: 1776564143000000000
|
||||
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 3690
|
||||
sdk_relative: true
|
||||
- mtime: 1776561853000000000
|
||||
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 5150
|
||||
sdk_relative: true
|
||||
- mtime: 1776563484000000000
|
||||
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 95431
|
||||
sdk_relative: true
|
||||
- mtime: 1776564811000000000
|
||||
path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1155103
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,72 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405613000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 30136
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1772775407000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1771712577000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1771712453000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
- mtime: 1776563970000000000
|
||||
path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22494
|
||||
sdk_relative: true
|
||||
- mtime: 1776564143000000000
|
||||
path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 3690
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,52 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405587000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 50836
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1772775407000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1771712577000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,44 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405589000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 30876
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1772775407000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776561853000000000
|
||||
path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 5150
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,12 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405569000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 15012500
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,16 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405573000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 18524
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776559148000000000
|
||||
path: 'usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1411
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,48 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405596000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 401660
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1772775407000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563484000000000
|
||||
path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 95431
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,72 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405609000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 117716
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1772775407000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
- mtime: 1776561805000000000
|
||||
path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 19539
|
||||
sdk_relative: true
|
||||
- mtime: 1771712577000000000
|
||||
path: 'usr/include/ObjectiveC.apinotes'
|
||||
size: 11147
|
||||
sdk_relative: true
|
||||
- mtime: 1771712453000000000
|
||||
path: 'usr/include/Dispatch.apinotes'
|
||||
size: 19
|
||||
sdk_relative: true
|
||||
- mtime: 1772774440000000000
|
||||
path: 'usr/include/XPC.apinotes'
|
||||
size: 123
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
- mtime: 1776563522000000000
|
||||
path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 167873
|
||||
sdk_relative: true
|
||||
- mtime: 1776563516000000000
|
||||
path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 6636
|
||||
sdk_relative: true
|
||||
- mtime: 1776563739000000000
|
||||
path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 57506
|
||||
sdk_relative: true
|
||||
- mtime: 1776563957000000000
|
||||
path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 45109
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,16 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405573000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 23716
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776559222000000000
|
||||
path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 4363
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,16 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405583000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 748656
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776559177000000000
|
||||
path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 280495
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,16 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405578000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 92188
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,24 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405579000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 23256
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1772775407000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,28 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405580000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 20564
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1772775407000000000
|
||||
path: 'usr/include/_DarwinFoundation2.apinotes'
|
||||
size: 1145
|
||||
sdk_relative: true
|
||||
- mtime: 1776561783000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 18805
|
||||
sdk_relative: true
|
||||
- mtime: 1776561789000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2677
|
||||
sdk_relative: true
|
||||
- mtime: 1776561795000000000
|
||||
path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 1573
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,16 +0,0 @@
|
||||
---
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
dependencies:
|
||||
- mtime: 1777405576000000000
|
||||
path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule'
|
||||
size: 84172
|
||||
- mtime: 1776558630000000000
|
||||
path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 2193647
|
||||
sdk_relative: true
|
||||
- mtime: 1776562794000000000
|
||||
path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface'
|
||||
size: 22987
|
||||
sdk_relative: true
|
||||
version: 1
|
||||
...
|
||||
@ -1,9 +0,0 @@
|
||||
{
|
||||
"ABIRoot": {
|
||||
"kind": "Root",
|
||||
"name": "NO_MODULE",
|
||||
"printedName": "NO_MODULE",
|
||||
"json_format_version": 8
|
||||
},
|
||||
"ConstValues": []
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,4 +0,0 @@
|
||||
/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
||||
/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
||||
/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
||||
/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes
|
||||
Binary file not shown.
@ -1,376 +0,0 @@
|
||||
// Generated by Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
#ifndef VELODYDOMAIN_SWIFT_H
|
||||
#define VELODYDOMAIN_SWIFT_H
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wgcc-compat"
|
||||
|
||||
#if !defined(__has_include)
|
||||
# define __has_include(x) 0
|
||||
#endif
|
||||
#if !defined(__has_attribute)
|
||||
# define __has_attribute(x) 0
|
||||
#endif
|
||||
#if !defined(__has_feature)
|
||||
# define __has_feature(x) 0
|
||||
#endif
|
||||
#if !defined(__has_warning)
|
||||
# define __has_warning(x) 0
|
||||
#endif
|
||||
|
||||
#if __has_include(<swift/objc-prologue.h>)
|
||||
# include <swift/objc-prologue.h>
|
||||
#endif
|
||||
|
||||
#pragma clang diagnostic ignored "-Wauto-import"
|
||||
#if defined(__OBJC__)
|
||||
#include <Foundation/Foundation.h>
|
||||
#endif // defined(__OBJC__)
|
||||
#if defined(__cplusplus)
|
||||
#include <cstdint>
|
||||
#include <cstddef>
|
||||
#include <cstdbool>
|
||||
#include <cstring>
|
||||
#include <stdlib.h>
|
||||
#include <new>
|
||||
#include <type_traits>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
#include <stdbool.h>
|
||||
#include <string.h>
|
||||
#endif
|
||||
#if defined(__cplusplus)
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module"
|
||||
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
|
||||
# include <ptrauth.h>
|
||||
#else
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
|
||||
# ifndef __ptrauth_swift_value_witness_function_pointer
|
||||
# define __ptrauth_swift_value_witness_function_pointer(x)
|
||||
# endif
|
||||
# ifndef __ptrauth_swift_class_method_pointer
|
||||
# define __ptrauth_swift_class_method_pointer(x)
|
||||
# endif
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
#if !defined(SWIFT_TYPEDEFS)
|
||||
# define SWIFT_TYPEDEFS 1
|
||||
# if __has_include(<uchar.h>)
|
||||
# include <uchar.h>
|
||||
# elif !defined(__cplusplus)
|
||||
typedef unsigned char char8_t;
|
||||
typedef uint_least16_t char16_t;
|
||||
typedef uint_least32_t char32_t;
|
||||
# endif
|
||||
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
|
||||
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
|
||||
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
|
||||
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
|
||||
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
|
||||
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
|
||||
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
|
||||
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
|
||||
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
|
||||
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
|
||||
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
|
||||
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
|
||||
#endif
|
||||
|
||||
#if !defined(SWIFT_PASTE)
|
||||
# define SWIFT_PASTE_HELPER(x, y) x##y
|
||||
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
|
||||
#endif
|
||||
#if !defined(SWIFT_METATYPE)
|
||||
# define SWIFT_METATYPE(X) Class
|
||||
#endif
|
||||
#if !defined(SWIFT_CLASS_PROPERTY)
|
||||
# if __has_feature(objc_class_property)
|
||||
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
|
||||
# else
|
||||
# define SWIFT_CLASS_PROPERTY(...)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_RUNTIME_NAME)
|
||||
# if __has_attribute(objc_runtime_name)
|
||||
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
|
||||
# else
|
||||
# define SWIFT_RUNTIME_NAME(X)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_COMPILE_NAME)
|
||||
# if __has_attribute(swift_name)
|
||||
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
|
||||
# else
|
||||
# define SWIFT_COMPILE_NAME(X)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_METHOD_FAMILY)
|
||||
# if __has_attribute(objc_method_family)
|
||||
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
|
||||
# else
|
||||
# define SWIFT_METHOD_FAMILY(X)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_NOESCAPE)
|
||||
# if __has_attribute(noescape)
|
||||
# define SWIFT_NOESCAPE __attribute__((noescape))
|
||||
# else
|
||||
# define SWIFT_NOESCAPE
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_RELEASES_ARGUMENT)
|
||||
# if __has_attribute(ns_consumed)
|
||||
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
|
||||
# else
|
||||
# define SWIFT_RELEASES_ARGUMENT
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_WARN_UNUSED_RESULT)
|
||||
# if __has_attribute(warn_unused_result)
|
||||
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
||||
# else
|
||||
# define SWIFT_WARN_UNUSED_RESULT
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_NORETURN)
|
||||
# if __has_attribute(noreturn)
|
||||
# define SWIFT_NORETURN __attribute__((noreturn))
|
||||
# else
|
||||
# define SWIFT_NORETURN
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_CLASS_EXTRA)
|
||||
# define SWIFT_CLASS_EXTRA
|
||||
#endif
|
||||
#if !defined(SWIFT_PROTOCOL_EXTRA)
|
||||
# define SWIFT_PROTOCOL_EXTRA
|
||||
#endif
|
||||
#if !defined(SWIFT_ENUM_EXTRA)
|
||||
# define SWIFT_ENUM_EXTRA
|
||||
#endif
|
||||
#if !defined(SWIFT_CLASS)
|
||||
# if __has_attribute(objc_subclassing_restricted)
|
||||
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
|
||||
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
||||
# else
|
||||
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
||||
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_RESILIENT_CLASS)
|
||||
# if __has_attribute(objc_class_stub)
|
||||
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
|
||||
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
||||
# else
|
||||
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
|
||||
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_PROTOCOL)
|
||||
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
||||
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
|
||||
#endif
|
||||
#if !defined(SWIFT_EXTENSION)
|
||||
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
|
||||
#endif
|
||||
#if !defined(OBJC_DESIGNATED_INITIALIZER)
|
||||
# if __has_attribute(objc_designated_initializer)
|
||||
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
|
||||
# else
|
||||
# define OBJC_DESIGNATED_INITIALIZER
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_ENUM_ATTR)
|
||||
# if __has_attribute(enum_extensibility)
|
||||
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
|
||||
# else
|
||||
# define SWIFT_ENUM_ATTR(_extensibility)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_ENUM)
|
||||
# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum)
|
||||
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
||||
# if __has_feature(generalized_swift_name)
|
||||
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
|
||||
# else
|
||||
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
|
||||
# endif
|
||||
# else
|
||||
# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum
|
||||
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_ENUM_TAG)
|
||||
# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum)
|
||||
# define SWIFT_ENUM_TAG enum
|
||||
# else
|
||||
# define SWIFT_ENUM_TAG
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_ENUM_FWD_DECL)
|
||||
# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum)
|
||||
# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type;
|
||||
# else
|
||||
# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name;
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_UNAVAILABLE)
|
||||
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
|
||||
#endif
|
||||
#if !defined(SWIFT_UNAVAILABLE_MSG)
|
||||
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
|
||||
#endif
|
||||
#if !defined(SWIFT_AVAILABILITY)
|
||||
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
|
||||
#endif
|
||||
#if !defined(SWIFT_AVAILABILITY_DOMAIN)
|
||||
# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__)))
|
||||
#endif
|
||||
#if !defined(SWIFT_WEAK_IMPORT)
|
||||
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
|
||||
#endif
|
||||
#if !defined(SWIFT_DEPRECATED)
|
||||
# define SWIFT_DEPRECATED __attribute__((deprecated))
|
||||
#endif
|
||||
#if !defined(SWIFT_DEPRECATED_MSG)
|
||||
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
|
||||
#endif
|
||||
#if !defined(SWIFT_DEPRECATED_OBJC)
|
||||
# if __has_feature(attribute_diagnose_if_objc)
|
||||
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
|
||||
# else
|
||||
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
|
||||
# endif
|
||||
#endif
|
||||
#if defined(__OBJC__)
|
||||
#if !defined(IBSegueAction)
|
||||
# define IBSegueAction
|
||||
#endif
|
||||
#endif
|
||||
#if !defined(SWIFT_EXTERN)
|
||||
# if defined(__cplusplus)
|
||||
# define SWIFT_EXTERN extern "C"
|
||||
# else
|
||||
# define SWIFT_EXTERN extern
|
||||
# endif
|
||||
#endif
|
||||
#if !defined(SWIFT_CALL)
|
||||
# define SWIFT_CALL __attribute__((swiftcall))
|
||||
#endif
|
||||
#if !defined(SWIFT_INDIRECT_RESULT)
|
||||
# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
|
||||
#endif
|
||||
#if !defined(SWIFT_CONTEXT)
|
||||
# define SWIFT_CONTEXT __attribute__((swift_context))
|
||||
#endif
|
||||
#if !defined(SWIFT_ERROR_RESULT)
|
||||
# define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
|
||||
#endif
|
||||
#if defined(__cplusplus)
|
||||
# define SWIFT_NOEXCEPT noexcept
|
||||
#else
|
||||
# define SWIFT_NOEXCEPT
|
||||
#endif
|
||||
#if !defined(SWIFT_C_INLINE_THUNK)
|
||||
# if __has_attribute(always_inline)
|
||||
# if __has_attribute(nodebug)
|
||||
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
|
||||
# else
|
||||
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
|
||||
# endif
|
||||
# else
|
||||
# define SWIFT_C_INLINE_THUNK inline
|
||||
# endif
|
||||
#endif
|
||||
#if defined(_WIN32)
|
||||
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
|
||||
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
|
||||
#endif
|
||||
#else
|
||||
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
|
||||
# define SWIFT_IMPORT_STDLIB_SYMBOL
|
||||
#endif
|
||||
#endif
|
||||
#if !__has_feature(nullability)
|
||||
# define _Nonnull
|
||||
# define _Nullable
|
||||
# define _Null_unspecified
|
||||
#elif !defined(__OBJC__)
|
||||
# pragma clang diagnostic ignored "-Wnullability-extension"
|
||||
#endif
|
||||
#if !__has_feature(nullability_nullable_result)
|
||||
# define _Nullable_result _Nullable
|
||||
#endif
|
||||
#if __has_feature(objc_modules)
|
||||
#if __has_warning("-Watimport-in-framework-header")
|
||||
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
|
||||
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
|
||||
#if __has_warning("-Wpragma-clang-attribute")
|
||||
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
|
||||
#endif
|
||||
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
||||
#pragma clang diagnostic ignored "-Wnullability"
|
||||
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
|
||||
#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
|
||||
|
||||
#if __has_attribute(external_source_symbol)
|
||||
# pragma push_macro("any")
|
||||
# undef any
|
||||
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyDomain",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
|
||||
# pragma pop_macro("any")
|
||||
#endif
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#if defined(__cplusplus)
|
||||
} // extern "C"
|
||||
#endif
|
||||
#if __has_attribute(external_source_symbol)
|
||||
# pragma clang attribute pop
|
||||
#endif
|
||||
#if defined(__OBJC__)
|
||||
#if __has_feature(objc_modules)
|
||||
#if __has_warning("-Watimport-in-framework-header")
|
||||
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif // defined(__OBJC__)
|
||||
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
|
||||
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
|
||||
#if __has_warning("-Wpragma-clang-attribute")
|
||||
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
|
||||
#endif
|
||||
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
||||
#pragma clang diagnostic ignored "-Wnullability"
|
||||
#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
|
||||
#pragma clang diagnostic ignored "-Wunsafe-buffer-usage"
|
||||
|
||||
#if __has_attribute(external_source_symbol)
|
||||
# pragma push_macro("any")
|
||||
# undef any
|
||||
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyDomain",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
|
||||
# pragma pop_macro("any")
|
||||
#endif
|
||||
|
||||
#if defined(__OBJC__)
|
||||
|
||||
#endif // defined(__OBJC__)
|
||||
#if __has_attribute(external_source_symbol)
|
||||
# pragma clang attribute pop
|
||||
#endif
|
||||
#if defined(__cplusplus)
|
||||
#endif
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
@ -1,3 +0,0 @@
|
||||
module VelodyDomain {
|
||||
header "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h"
|
||||
}
|
||||
@ -1,12 +0,0 @@
|
||||
{
|
||||
"": {
|
||||
"swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.swiftdeps"
|
||||
},
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift": {
|
||||
"dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d",
|
||||
"object": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o",
|
||||
"swiftmodule": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models~partial.swiftmodule",
|
||||
"swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps",
|
||||
"diagnostics": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia"
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@ -1 +0,0 @@
|
||||
/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift
|
||||
@ -1,223 +0,0 @@
|
||||
{
|
||||
"builtTestProducts" : [
|
||||
|
||||
],
|
||||
"copyCommands" : {
|
||||
|
||||
},
|
||||
"explicitTargetDependencyImportCheckingMode" : {
|
||||
"none" : {
|
||||
|
||||
}
|
||||
},
|
||||
"generatedSourceTargetSet" : [
|
||||
|
||||
],
|
||||
"pluginDescriptions" : [
|
||||
|
||||
],
|
||||
"swiftCommands" : {
|
||||
"C.VelodyDomain-arm64-apple-macosx-debug.module" : {
|
||||
"executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc",
|
||||
"fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources",
|
||||
"importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules",
|
||||
"inputs" : [
|
||||
{
|
||||
"kind" : "file",
|
||||
"name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift"
|
||||
},
|
||||
{
|
||||
"kind" : "file",
|
||||
"name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"
|
||||
},
|
||||
{
|
||||
"kind" : "file",
|
||||
"name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"
|
||||
}
|
||||
],
|
||||
"isLibrary" : true,
|
||||
"moduleName" : "VelodyDomain",
|
||||
"moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule",
|
||||
"objects" : [
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o"
|
||||
],
|
||||
"otherArguments" : [
|
||||
"-target",
|
||||
"arm64-apple-macosx14.0",
|
||||
"-incremental",
|
||||
"-enable-batch-mode",
|
||||
"-serialize-diagnostics",
|
||||
"-index-store-path",
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store",
|
||||
"-Onone",
|
||||
"-enable-testing",
|
||||
"-j10",
|
||||
"-DSWIFT_PACKAGE",
|
||||
"-DDEBUG",
|
||||
"-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE",
|
||||
"-module-cache-path",
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache",
|
||||
"-parseable-output",
|
||||
"-parse-as-library",
|
||||
"-emit-objc-header",
|
||||
"-emit-objc-header-path",
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h",
|
||||
"-swift-version",
|
||||
"5",
|
||||
"-plugin-path",
|
||||
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing",
|
||||
"-sdk",
|
||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk",
|
||||
"-F",
|
||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks",
|
||||
"-I",
|
||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib",
|
||||
"-L",
|
||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib",
|
||||
"-g",
|
||||
"-Xcc",
|
||||
"-isysroot",
|
||||
"-Xcc",
|
||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk",
|
||||
"-Xcc",
|
||||
"-F",
|
||||
"-Xcc",
|
||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks",
|
||||
"-Xcc",
|
||||
"-fPIC",
|
||||
"-Xcc",
|
||||
"-g",
|
||||
"-package-name",
|
||||
"velodydomain"
|
||||
],
|
||||
"outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json",
|
||||
"outputs" : [
|
||||
{
|
||||
"kind" : "file",
|
||||
"name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o"
|
||||
},
|
||||
{
|
||||
"kind" : "file",
|
||||
"name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"
|
||||
}
|
||||
],
|
||||
"prepareForIndexing" : false,
|
||||
"sources" : [
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift"
|
||||
],
|
||||
"tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build",
|
||||
"wholeModuleOptimization" : false
|
||||
}
|
||||
},
|
||||
"swiftFrontendCommands" : {
|
||||
|
||||
},
|
||||
"swiftTargetScanArgs" : {
|
||||
"VelodyDomain" : [
|
||||
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc",
|
||||
"-module-name",
|
||||
"VelodyDomain",
|
||||
"-package-name",
|
||||
"velodydomain",
|
||||
"-c",
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift",
|
||||
"-I",
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules",
|
||||
"-target",
|
||||
"arm64-apple-macosx14.0",
|
||||
"-incremental",
|
||||
"-enable-batch-mode",
|
||||
"-serialize-diagnostics",
|
||||
"-index-store-path",
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store",
|
||||
"-Onone",
|
||||
"-enable-testing",
|
||||
"-j10",
|
||||
"-DSWIFT_PACKAGE",
|
||||
"-DDEBUG",
|
||||
"-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE",
|
||||
"-module-cache-path",
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache",
|
||||
"-parseable-output",
|
||||
"-parse-as-library",
|
||||
"-emit-objc-header",
|
||||
"-emit-objc-header-path",
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h",
|
||||
"-swift-version",
|
||||
"5",
|
||||
"-plugin-path",
|
||||
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing",
|
||||
"-sdk",
|
||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk",
|
||||
"-F",
|
||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks",
|
||||
"-I",
|
||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib",
|
||||
"-L",
|
||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib",
|
||||
"-g",
|
||||
"-Xcc",
|
||||
"-isysroot",
|
||||
"-Xcc",
|
||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk",
|
||||
"-Xcc",
|
||||
"-F",
|
||||
"-Xcc",
|
||||
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks",
|
||||
"-Xcc",
|
||||
"-fPIC",
|
||||
"-Xcc",
|
||||
"-g",
|
||||
"-package-name",
|
||||
"velodydomain",
|
||||
"-driver-use-frontend-path",
|
||||
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"
|
||||
]
|
||||
},
|
||||
"targetDependencyMap" : {
|
||||
"VelodyDomain" : [
|
||||
|
||||
]
|
||||
},
|
||||
"testDiscoveryCommands" : {
|
||||
|
||||
},
|
||||
"testEntryPointCommands" : {
|
||||
|
||||
},
|
||||
"traitConfiguration" : {
|
||||
"default" : {
|
||||
|
||||
}
|
||||
},
|
||||
"writeCommands" : {
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" : {
|
||||
"alwaysOutOfDate" : false,
|
||||
"inputs" : [
|
||||
{
|
||||
"kind" : "virtual",
|
||||
"name" : "<sources-file-list>"
|
||||
},
|
||||
{
|
||||
"kind" : "file",
|
||||
"name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift"
|
||||
}
|
||||
],
|
||||
"outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"
|
||||
},
|
||||
"/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : {
|
||||
"alwaysOutOfDate" : true,
|
||||
"inputs" : [
|
||||
{
|
||||
"kind" : "virtual",
|
||||
"name" : "<swift-get-version>"
|
||||
},
|
||||
{
|
||||
"kind" : "file",
|
||||
"name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"
|
||||
}
|
||||
],
|
||||
"outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user