mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-14 05:55:13 +01:00
07089cfb3c
Covering basic operations like mapping, unmapping, reprotecting and changing memory state.
29 lines
799 B
CMake
29 lines
799 B
CMake
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
|
|
core/memory/vm_manager.cpp
|
|
glad.cpp
|
|
tests.cpp
|
|
)
|
|
|
|
if (ARCHITECTURE_x86_64)
|
|
target_sources(tests
|
|
PRIVATE
|
|
video_core/shader/shader_jit_x64_compiler.cpp
|
|
)
|
|
endif()
|
|
|
|
create_target_directory_groups(tests)
|
|
|
|
target_link_libraries(tests PRIVATE common core video_core)
|
|
target_link_libraries(tests PRIVATE glad) # To support linker work-around
|
|
target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} catch-single-include nihstro-headers Threads::Threads)
|
|
|
|
add_test(NAME tests COMMAND tests)
|