18 lines
326 B
CMake
18 lines
326 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
|
|
project(XCEngine_RuntimeUITests)
|
|
|
|
add_subdirectory(unit)
|
|
add_subdirectory(integration)
|
|
|
|
add_custom_target(runtime_ui_unit_tests
|
|
DEPENDS
|
|
runtime_ui_tests
|
|
)
|
|
|
|
add_custom_target(runtime_ui_all_tests
|
|
DEPENDS
|
|
runtime_ui_unit_tests
|
|
runtime_ui_integration_tests
|
|
)
|