Removes unused function params and extern enums

This changes were necessary to bring the library
compatible with zig 0.9.0-dev.400+6c11e9bb0
This commit is contained in:
Maurizio Crocci 2021-07-10 03:23:05 +01:00
parent 1e4b02ad1b
commit ab5431403c
2 changed files with 29 additions and 29 deletions

View file

@ -2,7 +2,7 @@ const std = @import("std");
const Builder = std.build.Builder;
const LibExeObjStep = std.build.LibExeObjStep;
pub fn Pkg(pkgdir: comptime []const u8) type {
pub fn Pkg(pkgdir: []const u8) type {
return struct {
var ran_git = false;
pub fn link(exe: *LibExeObjStep, system_lib: bool) void {
@ -103,11 +103,11 @@ pub fn Pkg(pkgdir: comptime []const u8) type {
}
}
pub fn addAsPackage(name: comptime []const u8, to: *LibExeObjStep) void {
pub fn addAsPackage(name: []const u8, to: *LibExeObjStep) void {
to.addPackagePath(name, pkgdir ++ "/lib/raylib-zig.zig");
}
pub const math = struct {
pub fn addAsPackage(name: comptime []const u8, to: *LibExeObjStep) void {
pub fn addAsPackage(name: []const u8, to: *LibExeObjStep) void {
to.addPackagePath(name, pkgdir ++ "/lib/raylib-zig-math.zig");
}
};