aboutsummaryrefslogtreecommitdiffstats
path: root/src/c.zig
blob: 7b469146ed2a7f7a03ec8e458672bc9b52fc0ef0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const build_config = @import("build_config");

pub usingnamespace @cImport({
    @cInclude("epoxy/gl.h");
    @cInclude("GLFW/glfw3.h");
    @cInclude("yaml.h");
    @cInclude("lo/lo.h");

    if (build_config.have_ffmpeg) {
        @cInclude("libavcodec/avcodec.h");
        @cInclude("libavformat/avformat.h");
        @cInclude("libswscale/swscale.h");
    }
});