From d9c59a04ec87eff59e0832f4d29898f2ec07ab02 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sat, 11 Mar 2023 11:30:17 -0500 Subject: [PATCH] Update CI for new targets --- .github/workflows/all-builds.yml | 4 ++-- src/qtk/scene.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/all-builds.yml b/.github/workflows/all-builds.yml index cf100f4..aeff3eb 100644 --- a/.github/workflows/all-builds.yml +++ b/.github/workflows/all-builds.yml @@ -58,13 +58,13 @@ jobs: - name: Build Qtk Application (OSX / Linux) if: matrix.os != 'windows-latest' shell: bash - run: cmake --build build/ --config Release --target qtk_main -- -j $(nproc) + run: cmake --build build/ --config Release --target qtk_app -- -j $(nproc) # Packaging - name: Install Qtk Application shell: bash - run: cmake --install build/ --config Release --prefix=$(pwd)/install --component qtk_main + run: cmake --install build/ --config Release --prefix=$(pwd)/install --component qtk_app - name: Package Qtk Application shell: bash diff --git a/src/qtk/scene.h b/src/qtk/scene.h index f55ac52..f4298c9 100644 --- a/src/qtk/scene.h +++ b/src/qtk/scene.h @@ -166,7 +166,6 @@ namespace Qtk { */ inline void setSceneName(QString name) { mSceneName = std::move(name); } - std::vector mModels {}; signals: /** * Signal thrown when the scene is modified by adding or removing objects. @@ -191,6 +190,7 @@ namespace Qtk { /* MeshRenderers used simple geometry. */ std::vector mMeshes {}; /* Models used for storing 3D models in the scene. */ + std::vector mModels {}; }; class SceneEmpty : public Scene {