2020-12-28 10:15:37 -05:00
|
|
|
add_executable(tests
|
|
|
|
common/bit_field.cpp
|
2021-02-18 05:56:11 -05:00
|
|
|
common/cityhash.cpp
|
2020-12-28 10:15:37 -05:00
|
|
|
common/fibers.cpp
|
2021-06-06 21:57:28 -04:00
|
|
|
common/host_memory.cpp
|
2020-12-28 10:15:37 -05:00
|
|
|
common/param_package.cpp
|
|
|
|
common/ring_buffer.cpp
|
2021-07-05 17:19:14 -04:00
|
|
|
common/unique_function.cpp
|
2020-12-28 10:15:37 -05:00
|
|
|
core/core_timing.cpp
|
2021-03-01 21:20:53 -05:00
|
|
|
core/network/network.cpp
|
2020-12-28 10:15:37 -05:00
|
|
|
tests.cpp
|
2021-01-14 19:27:20 -05:00
|
|
|
video_core/buffer_base.cpp
|
2020-12-28 10:15:37 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
create_target_directory_groups(tests)
|
|
|
|
|
|
|
|
target_link_libraries(tests PRIVATE common core)
|
|
|
|
target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} catch-single-include Threads::Threads)
|
|
|
|
|
|
|
|
add_test(NAME tests COMMAND tests)
|