freetype: install test exe and move all tests to src/main.zig

This commit is contained in:
Ali Chraghi 2022-07-23 13:53:22 +04:30 committed by Stephen Gutekanst
parent 956e07b2ba
commit a6a678b912
20 changed files with 72 additions and 1107 deletions

View file

@ -5,7 +5,6 @@ pub usingnamespace @import("face.zig");
pub usingnamespace @import("font.zig");
pub usingnamespace @import("shape.zig");
pub usingnamespace @import("shape_plan.zig");
pub const c = @import("c");
const std = @import("std");
@ -13,13 +12,3 @@ const std = @import("std");
comptime {
_ = @import("utils");
}
test {
std.testing.refAllDeclsRecursive(@import("blob.zig"));
std.testing.refAllDeclsRecursive(@import("buffer.zig"));
std.testing.refAllDeclsRecursive(@import("common.zig"));
std.testing.refAllDeclsRecursive(@import("face.zig"));
std.testing.refAllDeclsRecursive(@import("font.zig"));
std.testing.refAllDeclsRecursive(@import("shape.zig"));
std.testing.refAllDeclsRecursive(@import("shape_plan.zig"));
}