From f7b807d3a50b6b76a4d0e1cde9c49eeb2a97ef99 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sun, 16 Mar 2025 15:32:41 -0400 Subject: [PATCH] Include example scene header if needed. --- src/app/main.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/main.cpp b/src/app/main.cpp index d09f34d..58fbca7 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -9,7 +9,13 @@ #include #include "qtkmainwindow.h" + +#ifdef QTK_GUI_SCENE #include "qtkscene.h" +using AppScene = QtkScene; +#else +using AppScene = EmptyScene; +#endif int main(int argc, char * argv[]) { @@ -24,11 +30,7 @@ int main(int argc, char * argv[]) // NOTE: We set the scene here and not in QtkMainWindow to detach the scene // from the QtkWidget plugin (qtk_plugin_library build target). // Once we can save / load scenes, this call, and QtkScene, can be removed. -#ifdef QTK_GUI_SCENE - window->setScene(new QtkScene); -#else - window->setScene(new EmptyScene); -#endif + window->setScene(new AppScene); window->show();