mirror of
https://github.com/fairyglade/ly.git
synced 2026-05-06 07:10:36 +00:00
Remove further & all @cImport() usage in interop
Signed-off-by: AnErrupTion <anerruption@disroot.org>
This commit is contained in:
@@ -36,6 +36,14 @@ pub fn build(b: *std.Build) void {
|
||||
addCImport(b, mod, translate_c, target, optimize, "system_time", "#include <sys/time.h>");
|
||||
addCImport(b, mod, translate_c, target, optimize, "time", "#include <time.h>");
|
||||
|
||||
if (target.result.os.tag == .linux) {
|
||||
addCImport(b, mod, translate_c, target, optimize, "kd", "#include <sys/kd.h>");
|
||||
addCImport(b, mod, translate_c, target, optimize, "vt", "#include <sys/vt.h>");
|
||||
} else if (target.result.os.tag == .freebsd) {
|
||||
addCImport(b, mod, translate_c, target, optimize, "kbio", "#include <sys/kbio.h>");
|
||||
addCImport(b, mod, translate_c, target, optimize, "consio", "#include <sys/consio.h>");
|
||||
}
|
||||
|
||||
const mod_tests = b.addTest(.{
|
||||
.root_module = mod,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user