Files
XCEngine/tests/Rendering/CMakeLists.txt
ssdfasd 12b71a319f chore: snapshot editor work and restore tests
Key points:\n- restore the tests tree removed by bc47e6e\n- capture current editor workspace, scene, and docs reshuffle changes\n- keep local cloud.nvdb resources ignored from this commit
2026-04-25 22:11:47 +08:00

38 lines
1.2 KiB
CMake

cmake_minimum_required(VERSION 3.15)
project(XCEngine_RenderingTests)
add_subdirectory(unit)
add_subdirectory(integration)
add_custom_target(rendering_unit_test_targets
DEPENDS
rendering_unit_tests
)
add_custom_target(rendering_integration_tests
DEPENDS
rendering_integration_textured_quad_scene
rendering_integration_unlit_scene
rendering_integration_object_id_scene
rendering_integration_directional_shadow_scene
rendering_integration_backpack_scene
rendering_integration_backpack_lit_scene
rendering_integration_camera_stack_scene
rendering_integration_transparent_material_scene
rendering_integration_cull_material_scene
rendering_integration_depth_sort_scene
rendering_integration_material_state_scene
rendering_integration_offscreen_scene
rendering_integration_skybox_scene
rendering_integration_post_process_scene
rendering_integration_volume_performance_suite
rendering_integration_nahida_preview_scene
)
add_custom_target(rendering_all_tests
DEPENDS
rendering_unit_test_targets
rendering_integration_tests
)