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.
22 lines
No EOL
679 B
CMake
22 lines
No EOL
679 B
CMake
set(TARGET_NAME recording-test)
|
|
# This is not a testcase -- just set it up as a regular hifi project
|
|
setup_hifi_project(Test)
|
|
set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "Tests/manual-tests/")
|
|
setup_memory_debugger()
|
|
setup_thread_debugger()
|
|
link_hifi_libraries(shared recording)
|
|
if (WIN32)
|
|
target_link_libraries(${TARGET_NAME} Winmm.lib)
|
|
add_dependency_external_projects(wasapi)
|
|
endif()
|
|
package_libraries_for_deployment()
|
|
|
|
# FIXME convert to unit tests
|
|
# Declare dependencies
|
|
#macro (setup_testcase_dependencies)
|
|
# # link in the shared libraries
|
|
# link_hifi_libraries(shared recording)
|
|
#
|
|
# package_libraries_for_deployment()
|
|
#endmacro ()
|
|
#setup_hifi_testcase() |