2017-12-11 00:55:03 +01:00
|
|
|
add_executable(tests
|
|
|
|
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 17:25:25 +01:00
|
|
|
core/memory/vm_manager.cpp
|
2017-12-11 00:55:03 +01:00
|
|
|
glad.cpp
|
|
|
|
tests.cpp
|
|
|
|
)
|
2016-03-20 15:58:24 +01:00
|
|
|
|
2017-11-25 04:17:30 +01:00
|
|
|
if (ARCHITECTURE_x86_64)
|
2017-12-11 00:55:03 +01:00
|
|
|
target_sources(tests
|
|
|
|
PRIVATE
|
2017-11-25 04:17:30 +01:00
|
|
|
video_core/shader/shader_jit_x64_compiler.cpp
|
2017-12-11 00:55:03 +01:00
|
|
|
)
|
2017-11-25 04:17:30 +01:00
|
|
|
endif()
|
|
|
|
|
2017-12-11 00:55:03 +01:00
|
|
|
create_target_directory_groups(tests)
|
2016-03-20 15:58:24 +01:00
|
|
|
|
2017-11-25 04:17:30 +01:00
|
|
|
target_link_libraries(tests PRIVATE common core video_core)
|
2017-05-28 03:26:55 +02:00
|
|
|
target_link_libraries(tests PRIVATE glad) # To support linker work-around
|
2017-11-25 04:17:30 +01:00
|
|
|
target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} catch-single-include nihstro-headers Threads::Threads)
|
2016-05-19 19:54:50 +02:00
|
|
|
|
2017-05-28 07:46:59 +02:00
|
|
|
add_test(NAME tests COMMAND tests)
|