mirror of
https://github.com/starr-dusT/yuzu-mainline
synced 2024-03-05 21:12:25 -08:00
![Zach Hilman](/assets/img/avatar_default.png)
* Virtual Filesystem * Fix delete bug and documentate * Review fixes + other stuff * Fix puyo regression
18 lines
491 B
CMake
18 lines
491 B
CMake
add_executable(tests
|
|
common/param_package.cpp
|
|
core/arm/arm_test_common.cpp
|
|
core/arm/arm_test_common.h
|
|
core/core_timing.cpp
|
|
core/memory/memory.cpp
|
|
glad.cpp
|
|
tests.cpp
|
|
)
|
|
|
|
create_target_directory_groups(tests)
|
|
|
|
target_link_libraries(tests PRIVATE common core)
|
|
target_link_libraries(tests PRIVATE glad) # To support linker work-around
|
|
target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} catch-single-include Threads::Threads)
|
|
|
|
add_test(NAME tests COMMAND tests)
|