mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 18:46:18 +00:00
42 lines
1.2 KiB
CMake
42 lines
1.2 KiB
CMake
# Copyright 2018-2022, Collabora, Ltd.
|
|
#
|
|
# SPDX-License-Identifier: BSL-1.0
|
|
|
|
# Catch2 main test driver
|
|
add_library(tests_main STATIC tests_main.cpp)
|
|
target_link_libraries(tests_main PUBLIC xrt-external-catch2)
|
|
if(ANDROID)
|
|
target_link_libraries(tests_main PUBLIC log)
|
|
endif()
|
|
|
|
foreach(
|
|
testname
|
|
tests_cxx_wrappers
|
|
tests_generic_callbacks
|
|
tests_history_buf
|
|
tests_id_ringbuffer
|
|
tests_input_transform
|
|
tests_json
|
|
tests_lowpass_float
|
|
tests_lowpass_integer
|
|
tests_pacing
|
|
tests_quatexpmap
|
|
tests_rational
|
|
)
|
|
|
|
add_executable(${testname} ${testname}.cpp)
|
|
target_link_libraries(${testname} PRIVATE tests_main)
|
|
target_link_libraries(${testname} PRIVATE aux_util)
|
|
add_test(NAME ${testname} COMMAND ${testname} --success)
|
|
endforeach()
|
|
|
|
# For tests that require more than just aux_util, link those other libs down here.
|
|
|
|
target_link_libraries(tests_cxx_wrappers PRIVATE xrt-interfaces)
|
|
target_link_libraries(tests_history_buf PRIVATE aux_math)
|
|
target_link_libraries(tests_input_transform PRIVATE st_oxr xrt-interfaces xrt-external-openxr)
|
|
target_link_libraries(tests_lowpass_float PRIVATE aux_math)
|
|
target_link_libraries(tests_lowpass_integer PRIVATE aux_math)
|
|
target_link_libraries(tests_quatexpmap PRIVATE aux_math)
|
|
target_link_libraries(tests_rational PRIVATE aux_math)
|