Zig bindings for orca (still WIP) #140

Open
rdunnington wants to merge 24 commits from zig_ffi into main
7 changed files with 2 additions and 2 deletions
Showing only changes of commit 5999429838 - Show all commits

View File

@ -1,4 +1,4 @@
Calc
Sample
zig-out
zig-cache
liborca.a

View File

@ -93,7 +93,7 @@ pub fn build(b: *std.Build) !void {
b.installArtifact(wasm_lib);
// Runs the orca build command
const bundle_cmd_str = [_][]const u8{ "orca", "bundle", "--orca-dir", "../..", "--name", "Calc", "--icon", "icon.png", "--resource-dir", "data", "zig-out/lib/module.wasm" };
const bundle_cmd_str = [_][]const u8{ "orca", "bundle", "--orca-dir", "../..", "--name", "Sample", "--icon", "icon.png", "--resource-dir", "data", "zig-out/lib/module.wasm" };
var bundle_cmd = b.addSystemCommand(&bundle_cmd_str);
bundle_cmd.step.dependOn(b.getInstallStep());

View File

After

Width:  |  Height:  |  Size: 2.7 KiB