yuzu/src/tests/CMakeLists.txt

21 lines
529 B
CMake
Raw Normal View History

2020-12-28 15:15:37 +00:00
add_executable(tests
common/bit_field.cpp
2021-02-18 11:56:11 +01:00
common/cityhash.cpp
2020-12-28 15:15:37 +00:00
common/fibers.cpp
2021-06-07 03:57:28 +02:00
common/host_memory.cpp
2020-12-28 15:15:37 +00:00
common/param_package.cpp
common/ring_buffer.cpp
2021-07-05 23:19:14 +02:00
common/unique_function.cpp
2020-12-28 15:15:37 +00:00
core/core_timing.cpp
2021-03-02 03:20:53 +01:00
core/network/network.cpp
2020-12-28 15:15:37 +00:00
tests.cpp
2021-01-15 01:27:20 +01:00
video_core/buffer_base.cpp
2020-12-28 15:15:37 +00: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)