1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-17 21:30:15 -06:00
suyu-mirror/src/tests/CMakeLists.txt

18 lines
442 B
CMake
Raw Normal View History

add_executable(tests
common/bit_field.cpp
2021-02-17 21:43:42 -06:00
common/cityhash.cpp
common/fibers.cpp
common/param_package.cpp
2018-09-08 08:28:39 -05:00
common/ring_buffer.cpp
core/core_timing.cpp
tests.cpp
video_core/buffer_base.cpp
)
2016-03-20 09:58:24 -05:00
create_target_directory_groups(tests)
2016-03-20 09:58:24 -05:00
target_link_libraries(tests PRIVATE common core)
target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} catch-single-include Threads::Threads)
2016-05-19 12:54:50 -05:00
add_test(NAME tests COMMAND tests)