From cae8b633fc8723bcc35944298335ad48844d2bf0 Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Mon, 23 Sep 2024 22:47:28 -0500 Subject: Work on standing up gui. --- src/main.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index f933426..90aef42 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2,6 +2,9 @@ #include // #include "main_window.hpp" +#include "stb_image.h" +#include "demo.hpp" + void setupLogging() { spdlog::cfg::load_env_levels(); @@ -16,6 +19,9 @@ int main(int argc, char* argv[]) setupLogging(); + fud::String filename{"Excel Saga Vol. 01/000.jpg"}; + return bookworm::demo(filename); + #if 0 bookmouse::BookmouseApp bookmouse{}; @@ -31,7 +37,8 @@ int main(int argc, char* argv[]) return 0; } -void load_levels_example() { +void load_levels_example() +{ // Set the log level to "info" and mylogger to "trace": // SPDLOG_LEVEL=info,mylogger=trace && ./example spdlog::cfg::load_env_levels(); -- cgit v1.2.3