- 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
12 lines
203 B
CMake
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)
|