CMakeLists.txt 596 B

123456789101112131415161718192021
  1. add_executable(tests
  2. common/bit_field.cpp
  3. common/cityhash.cpp
  4. common/fibers.cpp
  5. common/host_memory.cpp
  6. common/param_package.cpp
  7. common/ring_buffer.cpp
  8. common/unique_function.cpp
  9. core/core_timing.cpp
  10. core/internal_network/network.cpp
  11. tests.cpp
  12. video_core/buffer_base.cpp
  13. input_common/calibration_configuration_job.cpp
  14. )
  15. create_target_directory_groups(tests)
  16. target_link_libraries(tests PRIVATE common core input_common)
  17. target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Catch2::Catch2 Threads::Threads)
  18. add_test(NAME tests COMMAND tests)