fixing lz4 includes path

This commit is contained in:
2026-01-15 15:55:02 +01:00
parent 60a8268090
commit 0bdfc32311
2 changed files with 3 additions and 1 deletions

View File

@@ -1 +1,3 @@
# NZigSL # NZigSL
Simple Zig bindings for [CNZSL](https://github.com/NazaraEngine/ShaderLang).

View File

@@ -124,7 +124,7 @@ fn buildNzsl(
lib.addSystemIncludePath(fmt.path("include")); lib.addSystemIncludePath(fmt.path("include"));
lib.addSystemIncludePath(ordered_map.path("include")); lib.addSystemIncludePath(ordered_map.path("include"));
lib.addSystemIncludePath(fast_float.path("include")); lib.addSystemIncludePath(fast_float.path("include"));
lib.addSystemIncludePath(lz4.path("include")); lib.addSystemIncludePath(lz4.path("lib"));
const flags = [_][]const u8{ const flags = [_][]const u8{
if (shared) "-DNZSL_DYNAMIC" else "-DNZSL_STATIC", if (shared) "-DNZSL_DYNAMIC" else "-DNZSL_STATIC",