structstd.Build.Module.CSourceFiles[src]

Fields

root: LazyPath
files: []const []const u8

files is relative to root, which is the build root by default

flags: []const []const u8
language: ?CSourceLanguage

By default, determines language of each file individually based on its file extension

Source Code

Source code
pub const CSourceFiles = struct {
    root: LazyPath,
    /// `files` is relative to `root`, which is
    /// the build root by default
    files: []const []const u8,
    flags: []const []const u8,
    /// By default, determines language of each file individually based on its file extension
    language: ?CSourceLanguage,
}