1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-10-06 09:07:19 +02:00

spelling: seperate -> separate

This commit is contained in:
Anonymous Maarten 2017-11-03 23:59:02 +01:00 committed by Daniel Evans
parent f14bf308cf
commit c758160d09
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ set(CTEST_BUILD_NAME "experimental_script-${SHORT_COMMIT}")
ctest_start("Experimental")
ctest_configure(
OPTIONS
"-DBUILD_VIEWER=1;-DBUILD_TESTS=1;-DTEST_COVERAGE=1;-DRW_VERBOSE_DEBUG_MESSAGES=1;-DSEPERATE_TEST_SUITES=1;-DCHECK_INCLUDES=1"
"-DBUILD_VIEWER=1;-DBUILD_TESTS=1;-DTEST_COVERAGE=1;-DRW_VERBOSE_DEBUG_MESSAGES=1;-DSEPARATE_TEST_SUITES=1;-DCHECK_INCLUDES=1"
)
ctest_build()
ctest_test()

View File

@ -24,4 +24,4 @@ endif()
option(CHECK_INCLUDES "Analyze #includes in C and C++ source files")
option(TEST_COVERAGE "Enable coverage analysis (implies CMAKE_BUILD_TYPE=Debug)")
option(SEPERATE_TEST_SUITES "Add each test suite as seperate test")
option(SEPARATE_TEST_SUITES "Add each test suite as separate test to CTest")

View File

@ -88,7 +88,7 @@ target_link_libraries(run_tests
openrw_target_apply_options(TARGET run_tests)
if(SEPERATE_TEST_SUITES)
if(SEPARATE_TEST_SUITES)
foreach(TEST ${TESTS})
add_test(
NAME "${TEST}"