Files
XCEngine/tests/RHI/D3D12/CMakeLists.txt
ssdfasd fae520854e refactor: reorganize unit tests into separate folder
- Move test_*.cpp and fixtures/ to tests/RHI/D3D12/unit/
- Create unit/CMakeLists.txt with proper test configuration
- Simplify parent CMakeLists.txt to use add_subdirectory
- Integration tests remain in integration/ folder
2026-03-20 02:58:33 +08:00

12 lines
203 B
CMake

cmake_minimum_required(VERSION 3.15)
project(D3D12EngineTests)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_subdirectory(unit)
# Integration tests
add_subdirectory(integration)