[xcodegen] Allow absolute path for output in compile commands

Looks like in newer versions of CMake this can be an absolute path.
This commit is contained in:
Hamish Knight
2025-08-12 14:57:33 +01:00
parent 364dbf8553
commit 56178cd97c
2 changed files with 2 additions and 2 deletions

View File

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