From ea3b513e71b4b556f16d32498b4f8a5f7fa0e0f1 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Thu, 27 Oct 2016 11:07:46 -0700 Subject: [PATCH] quiet a couple warnings --- tests/gpu-test/CMakeLists.txt | 2 +- tests/gpu-test/src/TestFbx.cpp | 1 + tests/gpu-test/src/TestWindow.cpp | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/gpu-test/CMakeLists.txt b/tests/gpu-test/CMakeLists.txt index 21ae9c5a99..7da4a1a925 100644 --- a/tests/gpu-test/CMakeLists.txt +++ b/tests/gpu-test/CMakeLists.txt @@ -3,7 +3,7 @@ AUTOSCRIBE_SHADER_LIB(gpu model render-utils) # This is not a testcase -- just set it up as a regular hifi project setup_hifi_project(Quick Gui OpenGL Script Widgets) set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "Tests/manual-tests/") -link_hifi_libraries(networking gl gpu gpu-gl procedural shared fbx model model-networking animation script-engine render render-utils ) +link_hifi_libraries(networking gl gpu gpu-gl procedural shared fbx model model-networking animation script-engine render render-utils octree ) package_libraries_for_deployment() target_nsight() diff --git a/tests/gpu-test/src/TestFbx.cpp b/tests/gpu-test/src/TestFbx.cpp index 538bb0a973..11cd60c3f7 100644 --- a/tests/gpu-test/src/TestFbx.cpp +++ b/tests/gpu-test/src/TestFbx.cpp @@ -13,6 +13,7 @@ #include #include +#include struct MyVertex { vec3 position; diff --git a/tests/gpu-test/src/TestWindow.cpp b/tests/gpu-test/src/TestWindow.cpp index 791bed773e..a9f5216991 100644 --- a/tests/gpu-test/src/TestWindow.cpp +++ b/tests/gpu-test/src/TestWindow.cpp @@ -22,6 +22,7 @@ #include #include #include +#include #ifdef DEFERRED_LIGHTING extern void initDeferredPipelines(render::ShapePlumber& plumber);