2017-12-10 23:55:03 +00:00
|
|
|
add_executable(tests
|
2019-01-25 17:16:23 +00:00
|
|
|
common/bit_field.cpp
|
2023-05-01 19:38:58 +00:00
|
|
|
common/file_util.cpp
|
2017-12-10 23:55:03 +00:00
|
|
|
common/param_package.cpp
|
|
|
|
core/arm/arm_test_common.cpp
|
|
|
|
core/arm/arm_test_common.h
|
|
|
|
core/arm/dyncom/arm_dyncom_vfp_tests.cpp
|
|
|
|
core/core_timing.cpp
|
|
|
|
core/file_sys/path_parser.cpp
|
|
|
|
core/hle/kernel/hle_ipc.cpp
|
|
|
|
core/memory/memory.cpp
|
2017-11-19 16:25:25 +00:00
|
|
|
core/memory/vm_manager.cpp
|
2022-12-17 15:06:38 +00:00
|
|
|
precompiled_headers.h
|
2023-05-21 14:42:49 +00:00
|
|
|
audio_core/hle/hle.cpp
|
|
|
|
audio_core/lle/lle.cpp
|
2019-01-06 04:05:12 +00:00
|
|
|
audio_core/audio_fixures.h
|
2018-12-19 16:12:57 +00:00
|
|
|
audio_core/decoder_tests.cpp
|
2023-01-06 15:28:02 +00:00
|
|
|
video_core/shader/shader_jit_x64_compiler.cpp
|
2017-12-10 23:55:03 +00:00
|
|
|
)
|
2016-03-20 14:58:24 +00:00
|
|
|
|
2017-12-10 23:55:03 +00:00
|
|
|
create_target_directory_groups(tests)
|
2016-03-20 14:58:24 +00:00
|
|
|
|
2023-04-28 20:02:53 +00:00
|
|
|
target_link_libraries(tests PRIVATE citra_common citra_core video_core audio_core)
|
2022-09-21 16:36:12 +00:00
|
|
|
target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Catch2::Catch2WithMain nihstro-headers Threads::Threads)
|
2016-05-19 17:54:50 +00:00
|
|
|
|
2017-05-28 05:46:59 +00:00
|
|
|
add_test(NAME tests COMMAND tests)
|
2022-12-17 15:06:38 +00:00
|
|
|
|
|
|
|
if (CITRA_USE_PRECOMPILED_HEADERS)
|
|
|
|
target_precompile_headers(tests PRIVATE precompiled_headers.h)
|
|
|
|
endif()
|
2023-07-06 00:37:06 +00:00
|
|
|
|
|
|
|
# Bundle in-place on MSVC so dependencies can be resolved by builds.
|
|
|
|
if (MSVC)
|
|
|
|
include(BundleTarget)
|
|
|
|
bundle_target_in_place(tests)
|
|
|
|
endif()
|