use lv2.h provided at root of /usr/include

fixes ubuntu issues
This commit is contained in:
Luna 2020-06-02 22:24:43 -03:00
parent c80a6d0df7
commit 8d312cd987
3 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
zig-cache/
*.mp3
*.wav
build_runner.zig

View File

@ -19,6 +19,7 @@ fn setupLinks(step: *builds.LibExeObjStep) void {
"/usr/include/lilv-0/lilv",
"/usr/include/lilv-0",
};
var found_any_lilv = false;
for (possible_lilv_include_dirs) |possible_lilv_dir| {

View File

@ -4,7 +4,7 @@ const plugin = @import("plugin.zig");
pub const c = @cImport({
@cInclude("sndfile.h");
@cInclude("lilv/lilv.h");
@cInclude("lv2/core/lv2.h");
@cInclude("lv2.h");
});
pub fn Lv2Core(comptime ns: []const u8) []const u8 {