Skip to content

ikskuh/zig-assimp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OpenAssetImporter Library Binding for Zig

This repo is a build sdk for Assimp to be used with the Zig build system:

const std = @import("std");

// Import the SDK
const Assimp = @import("Sdk.zig");

pub fn build(b: *std.build.Builder) void {
    const mode = b.standardReleaseOptions();

    const exe = b.addExecutable("static-example", null);
    exe.setBuildMode(mode);
    exe.addCSourceFile("src/example.cpp", &[_][]const u8{"-std=c++17"});
    exe.linkLibC();
    exe.linkLibCpp();
    exe.install();
    
    // Create a new instance
    var sdk = Assimp.init(b);

    // And link Assimp statically to our exe and enable a default set of
    // formats.
    sdk.addTo(exe, .static, Assimp.FormatSet.default);
}

Releases

No releases published

Sponsor this project

Contributors 4

  •  
  •  
  •  
  •