Changes
1 changed files (+1/-5)
-
-
@@ -33,12 +33,9 @@ .target = target,.optimize = optimize, }), }); lib.installHeader(b.path("src/c.h"), "sood.h"); b.installArtifact(lib); b.default_step.dependOn(&lib.step); // Install include/sood.h const install_header = b.addInstallFileWithDir(b.path("src/c.h"), .header, "sood.h"); b.getInstallStep().dependOn(&install_header.step); // Install WASM build. const wasm_step = b.step("wasm", "Build WebAssembly module");
-
@@ -75,7 +72,6 @@ });example_c.addCSourceFile(.{ .file = b.path("examples/basic.c") }); example_c.linkLibrary(lib); example_c.addIncludePath(.{ .cwd_relative = b.h_dir }); example_c_step.dependOn(&install_header.step); example_c_step.dependOn(&b.addInstallArtifact(example_c, .{}).step); // Unit tests.
-