19 lines
357 B
CMake
19 lines
357 B
CMake
|
|
cmake_minimum_required(VERSION 3.15)
|
||
|
|
|
||
|
|
project(XCEngine_EditorUITests)
|
||
|
|
|
||
|
|
add_subdirectory(integration/shared)
|
||
|
|
add_subdirectory(unit)
|
||
|
|
add_subdirectory(integration)
|
||
|
|
|
||
|
|
add_custom_target(editor_ui_unit_tests
|
||
|
|
DEPENDS
|
||
|
|
editor_ui_tests
|
||
|
|
)
|
||
|
|
|
||
|
|
add_custom_target(editor_ui_all_tests
|
||
|
|
DEPENDS
|
||
|
|
editor_ui_unit_tests
|
||
|
|
editor_ui_integration_tests
|
||
|
|
)
|