@@ -126,18 +126,21 @@ pub const CSourceFiles = struct {
126
126
files : []const []const u8 ,
127
127
lang : ? CSourceLang = null ,
128
128
flags : []const []const u8 ,
129
+ precompiled_header : ? LazyPath = null ,
129
130
};
130
131
131
132
pub const CSourceFile = struct {
132
133
file : LazyPath ,
133
134
lang : ? CSourceLang = null ,
134
135
flags : []const []const u8 = &.{},
136
+ precompiled_header : ? LazyPath = null ,
135
137
136
138
pub fn dupe (file : CSourceFile , b : * std.Build ) CSourceFile {
137
139
return .{
138
140
.file = file .file .dupe (b ),
139
141
.lang = file .lang ,
140
142
.flags = b .dupeStrings (file .flags ),
143
+ .precompiled_header = file .precompiled_header ,
141
144
};
142
145
}
143
146
};
@@ -529,6 +532,7 @@ pub const AddCSourceFilesOptions = struct {
529
532
files : []const []const u8 ,
530
533
lang : ? CSourceLang = null ,
531
534
flags : []const []const u8 = &.{},
535
+ precompiled_header : ? LazyPath = null ,
532
536
};
533
537
534
538
/// Handy when you have many C/C++ source files and want them all to have the same flags.
@@ -551,9 +555,14 @@ pub fn addCSourceFiles(m: *Module, options: AddCSourceFilesOptions) void {
551
555
.files = b .dupeStrings (options .files ),
552
556
.lang = options .lang ,
553
557
.flags = b .dupeStrings (options .flags ),
558
+ .precompiled_header = options .precompiled_header ,
554
559
};
555
560
m .link_objects .append (allocator , .{ .c_source_files = c_source_files }) catch @panic ("OOM" );
556
561
addLazyPathDependenciesOnly (m , c_source_files .root );
562
+
563
+ if (options .precompiled_header ) | pch | {
564
+ addLazyPathDependenciesOnly (m , pch );
565
+ }
557
566
}
558
567
559
568
pub fn addCSourceFile (m : * Module , source : CSourceFile ) void {
@@ -563,6 +572,10 @@ pub fn addCSourceFile(m: *Module, source: CSourceFile) void {
563
572
c_source_file .* = source .dupe (b );
564
573
m .link_objects .append (allocator , .{ .c_source_file = c_source_file }) catch @panic ("OOM" );
565
574
addLazyPathDependenciesOnly (m , source .file );
575
+
576
+ if (source .precompiled_header ) | pch | {
577
+ addLazyPathDependenciesOnly (m , pch );
578
+ }
566
579
}
567
580
568
581
/// Resource files must have the extension `.rc`.
0 commit comments