Add all subfiles to refAllDecls
This commit is contained in:
parent
8e04b7098a
commit
01869ab291
8 changed files with 20 additions and 7 deletions
|
|
@ -5,6 +5,8 @@ pub const cdef = @import("raygui-ext.zig");
|
|||
|
||||
test {
|
||||
std.testing.refAllDecls(@This());
|
||||
std.testing.refAllDecls(cdef);
|
||||
std.testing.refAllDecls(rl);
|
||||
}
|
||||
|
||||
pub const RayguiError = error{GetIcons};
|
||||
|
|
|
|||
|
|
@ -12,6 +12,9 @@ const C = std.builtin.CallingConvention.c;
|
|||
|
||||
test {
|
||||
std.testing.refAllDecls(@This());
|
||||
std.testing.refAllDecls(cdef);
|
||||
std.testing.refAllDecls(gl);
|
||||
std.testing.refAllDecls(math);
|
||||
}
|
||||
|
||||
pub const RaylibError = error{
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ pub const cdef = @import("raymath-ext.zig");
|
|||
|
||||
test {
|
||||
std.testing.refAllDecls(@This());
|
||||
std.testing.refAllDecls(cdef);
|
||||
}
|
||||
|
||||
const Matrix = rl.Matrix;
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ pub const cdef = @import("rlgl-ext.zig");
|
|||
|
||||
test {
|
||||
std.testing.refAllDecls(@This());
|
||||
std.testing.refAllDecls(cdef);
|
||||
}
|
||||
|
||||
const Matrix = rl.Matrix;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue