Better LILV/LV2 integration #15

Merged
luna merged 3 commits from better-lilv into master 2020-06-09 22:38:09 +00:00
3 changed files with 3 additions and 1 deletions
Showing only changes of commit 8d312cd987 - Show all commits

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 {