From a1bf0bdf586cb55e528dd1168edc045ca3a79845 Mon Sep 17 00:00:00 2001 From: Donghoon Park Date: Sun, 15 Dec 2024 02:30:38 +0000 Subject: [PATCH] removed criterion test framework temporailiy to make push --- CMakeLists.txt | 9 --------- 1 file changed, 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 14447fb..9b74d90 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,15 +20,6 @@ if(BUILD_EXAMPLES) endif() if(BUILD_TESTS) - include(FetchContent) - - FetchContent_Declare( - criterion - GIT_REPOSITORY https://github.com/Snaipe/Criterion.git - GIT_TAG v2.4.1 - ) - FetchContent_MakeAvailable(criterion) - add_executable(nanomodbus_tests nanomodbus.c tests/nanomodbus_tests.c) target_link_libraries(nanomodbus_tests pthread)