[xcodegen] Allow output to be missing in compile_commands.json

This may not always be present for CI builds.
This commit is contained in:
Hamish Knight
2024-11-05 22:51:32 +00:00
parent a9efa842a9
commit 43be5456b1
3 changed files with 5 additions and 6 deletions

View File

@@ -27,7 +27,7 @@ extension CompileCommands {
struct Element: Decodable {
var directory: AbsolutePath
var file: AbsolutePath
var output: RelativePath
var output: RelativePath?
var command: Command
}
}