CompilationDatabaseEntry

data class CompilationDatabaseEntry(val directory: String?, val command: String? = null, val arguments: List<String>? = null, val file: String, val output: String?)

This is the structure of how each object inside compile_commands.json looks like.

Constructors

Link copied to clipboard
constructor(directory: String?, command: String? = null, arguments: List<String>? = null, file: String, output: String?)

Properties

Link copied to clipboard
val arguments: List<String>? = null
Link copied to clipboard
val command: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard