diff options
author | sanine <sanine.not@pm.me> | 2022-08-24 11:14:51 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-08-24 11:14:51 -0500 |
commit | e172f568e3a04ba97cf48e20dc8ee555b4ac29dc (patch) | |
tree | 73eb302a523420c5bd3e460645398f4a12dfe5e1 /src/main.c | |
parent | 2cb3c3df4099297b0a0554bb482e2de04fe86b5c (diff) |
add logging bindings
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6,6 +6,7 @@ #include "image/image.h" #include "glm/glm.h" #include "options/options.h" +#include "logging/logging.h" int main(int argc, char **argv) @@ -27,6 +28,7 @@ int main(int argc, char **argv) setup_window(L, honey_index); setup_image(L, honey_index); setup_glm(L, honey_index); + setup_logging(L, honey_index); lua_setglobal(L, "honey"); /* load main script */ |