CMakeLists.txt 694 B

123456789101112131415161718192021222324
  1. # SPDX-FileCopyrightText: 2018 yuzu Emulator Project
  2. # SPDX-License-Identifier: GPL-2.0-or-later
  3. add_executable(tests
  4. common/bit_field.cpp
  5. common/cityhash.cpp
  6. common/fibers.cpp
  7. common/host_memory.cpp
  8. common/param_package.cpp
  9. common/ring_buffer.cpp
  10. common/unique_function.cpp
  11. core/core_timing.cpp
  12. core/internal_network/network.cpp
  13. tests.cpp
  14. video_core/buffer_base.cpp
  15. input_common/calibration_configuration_job.cpp
  16. )
  17. create_target_directory_groups(tests)
  18. target_link_libraries(tests PRIVATE common core input_common)
  19. target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Catch2::Catch2 Threads::Threads)
  20. add_test(NAME tests COMMAND tests)