mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 20:23:21 +02:00
fix some build blockers in test directory
This commit is contained in:
parent
0449660f66
commit
27419b7b6b
6 changed files with 15 additions and 5 deletions
|
@ -12,6 +12,7 @@
|
|||
#ifndef hifi_MovingMinMaxAvg_h
|
||||
#define hifi_MovingMinMaxAvg_h
|
||||
|
||||
#include <cassert>
|
||||
#include <limits>
|
||||
|
||||
#include "RingBufferHistory.h"
|
||||
|
|
|
@ -2,6 +2,8 @@ set(TARGET_NAME metavoxel-tests)
|
|||
|
||||
auto_mtc(${TARGET_NAME} "${ROOT_DIR}")
|
||||
|
||||
include_glm(${TARGET_NAME})
|
||||
|
||||
setup_hifi_project(${TARGET_NAME} Network Script Widgets)
|
||||
|
||||
# link in the shared libraries
|
||||
|
|
|
@ -9,11 +9,12 @@
|
|||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
|
||||
#include "SequenceNumberStatsTests.h"
|
||||
|
||||
#include "SharedUtil.h"
|
||||
#include <cassert>
|
||||
#include <limits>
|
||||
|
||||
#include <SharedUtil.h>
|
||||
|
||||
#include "SequenceNumberStatsTests.h"
|
||||
|
||||
void SequenceNumberStatsTests::runAllTests() {
|
||||
rolloverTest();
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
set(TARGET_NAME octree-tests)
|
||||
|
||||
setup_hifi_project(${TARGET_NAME})
|
||||
setup_hifi_project(${TARGET_NAME} Script Network)
|
||||
|
||||
include_glm(${TARGET_NAME})
|
||||
|
||||
# link in the shared libraries
|
||||
link_hifi_libraries(${TARGET_NAME} octree)
|
||||
link_hifi_libraries(${TARGET_NAME} animation fbx models networking octree shared)
|
||||
|
||||
# link any shared dependencies
|
||||
link_shared_dependencies_to_target(${TARGET_NAME})
|
|
@ -2,6 +2,8 @@ set(TARGET_NAME physics-tests)
|
|||
|
||||
setup_hifi_project(${TARGET_NAME})
|
||||
|
||||
include_glm(${TARGET_NAME})
|
||||
|
||||
# link in the shared libraries
|
||||
link_hifi_libraries(${TARGET_NAME} shared)
|
||||
|
||||
|
|
|
@ -2,6 +2,8 @@ set(TARGET_NAME shared-tests)
|
|||
|
||||
setup_hifi_project(${TARGET_NAME})
|
||||
|
||||
include_glm(${TARGET_NAME})
|
||||
|
||||
# link in the shared libraries
|
||||
link_hifi_libraries(${TARGET_NAME} shared)
|
||||
|
||||
|
|
Loading…
Reference in a new issue