add main engine library + minimal glfw linking example

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2021-07-06 20:58:46 -07:00
parent 68556c9318
commit 7fcd051870
2 changed files with 27 additions and 0 deletions

8
src/main.zig Normal file
View file

@ -0,0 +1,8 @@
const std = @import("std");
const testing = std.testing;
const glfw = @import("glfw");
test "glfw_basic" {
glfw.basicTest();
}