remove Dart

This commit is contained in:
Niels Lohmann 2021-01-26 12:59:09 +01:00
parent f4ea5bce25
commit 46a243bbd7
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69
2 changed files with 2 additions and 3 deletions

View File

@ -116,7 +116,6 @@ CONFIGURE_FILE(
## create and configure the unit test target ## create and configure the unit test target
## ##
if (JSON_BuildTests) if (JSON_BuildTests)
include(Dart)
include(CTest) include(CTest)
enable_testing() enable_testing()
add_subdirectory(test) add_subdirectory(test)

View File

@ -373,9 +373,9 @@ add_custom_target(ci_test_clang_sanitizer
############################################################################### ###############################################################################
add_custom_target(ci_test_valgrind add_custom_target(ci_test_valgrind
COMMAND CXX=${GCC_TOOL} ${CMAKE_COMMAND} -DCMAKE_BUILD_TYPE=Debug -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_valgrind -DJSON_BuildTests=ON -GNinja -DMEMORYCHECK_COMMAND=${VALGRIND_TOOL} -DMEMORYCHECK_COMMAND_OPTIONS="--error-exitcode=1 --leak-check=full" COMMAND CXX=${GCC_TOOL} ${CMAKE_COMMAND} -DCMAKE_BUILD_TYPE=Debug -S${PROJECT_SOURCE_DIR} -B${PROJECT_BINARY_DIR}/build_valgrind -DJSON_BuildTests=ON -DJSON_Valgrind=ON -GNinja
COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_valgrind COMMAND ${CMAKE_COMMAND} --build ${PROJECT_BINARY_DIR}/build_valgrind
COMMAND cd ${PROJECT_BINARY_DIR}/build_valgrind/test && ${CMAKE_CTEST_COMMAND} -T memcheck -j10 COMMAND cd ${PROJECT_BINARY_DIR}/build_valgrind/test && ${CMAKE_CTEST_COMMAND} -j10
COMMENT "Compile and test with Valgrind" COMMENT "Compile and test with Valgrind"
) )