* tests: add Sanity test for SplitFilename83 fix test fix test * disable `C4715:not all control paths return a value` for nihstro includes nihstro: no warn * Chore: Enable warnings as errors on msvc + fix warnings fixes some more warnings clang-format * more fixes * Externals: Add target_compile_options `/W0` nihstro-headers and ... Revert "disable `C4715:not all control paths return a value` for nihstro includes" This reverts commit 606d79b55d3044b744fb835025b8eb0f4ea5b757. * src\citra\config.cpp: ReadSetting: simplify type casting * settings.cpp: Get*Name: remove superflous logs
29 lines
885 B
CMake
29 lines
885 B
CMake
add_executable(tests
|
|
common/bit_field.cpp
|
|
common/file_util.cpp
|
|
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
|
|
precompiled_headers.h
|
|
audio_core/audio_fixures.h
|
|
audio_core/decoder_tests.cpp
|
|
video_core/shader/shader_jit_x64_compiler.cpp
|
|
)
|
|
|
|
create_target_directory_groups(tests)
|
|
|
|
target_link_libraries(tests PRIVATE citra_common citra_core video_core audio_core)
|
|
target_link_libraries(tests PRIVATE ${PLATFORM_LIBRARIES} Catch2::Catch2WithMain nihstro-headers Threads::Threads)
|
|
|
|
add_test(NAME tests COMMAND tests)
|
|
|
|
if (CITRA_USE_PRECOMPILED_HEADERS)
|
|
target_precompile_headers(tests PRIVATE precompiled_headers.h)
|
|
endif()
|