mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 17:29:16 +02:00
This is enabled with the VIRCADIA_THREAD_DEBUGGING environment variable. It's incompatible with VIRCADIA_MEMORY_DEBUGGING, so only one of those can be enabled for a build.
39 lines
1,005 B
CMake
39 lines
1,005 B
CMake
|
|
set(TARGET_NAME render-perf-test)
|
|
|
|
if (WIN32)
|
|
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /ignore:4049 /ignore:4217")
|
|
endif()
|
|
|
|
setup_memory_debugger()
|
|
setup_thread_debugger()
|
|
|
|
# This is not a testcase -- just set it up as a regular hifi project
|
|
setup_hifi_project(Quick Gui)
|
|
set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "Tests/manual-tests/")
|
|
|
|
# link in the shared libraries
|
|
link_hifi_libraries(
|
|
shared task workload networking animation
|
|
ktx image octree
|
|
shaders gl gpu ${PLATFORM_GL_BACKEND}
|
|
render render-utils
|
|
graphics hfm fbx model-networking graphics-scripting
|
|
entities entities-renderer audio avatars script-engine
|
|
physics procedural midi qml ui
|
|
${PLATFORM_GL_BACKEND}
|
|
)
|
|
|
|
if (WIN32)
|
|
target_link_libraries(${TARGET_NAME} Winmm.lib)
|
|
add_dependency_external_projects(wasapi)
|
|
endif()
|
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "Linux")
|
|
target_link_libraries(${TARGET_NAME} atomic)
|
|
endif()
|
|
|
|
package_libraries_for_deployment()
|
|
|
|
|
|
target_bullet()
|