diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
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 <spdlog/spdlog.h> // #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(); |