yuzu/src/tests/CMakeLists.txt

21 lines
529 B
CMake
Raw Normal View History

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