From 797a737992c18c69c4ff4b1b33c9ceaf47d7e25e Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 6 Aug 2025 23:55:33 +0200 Subject: [PATCH] typo in comment --- docs/examples/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/CMakeLists.txt b/docs/examples/CMakeLists.txt index 66e3fd10cc..091e2dfe83 100644 --- a/docs/examples/CMakeLists.txt +++ b/docs/examples/CMakeLists.txt @@ -40,7 +40,7 @@ foreach(_target IN LISTS check_PROGRAMS _all) # keep '_all' last list(TRANSFORM _example_c APPEND ".c") add_library(${_target_name} STATIC EXCLUDE_FROM_ALL ${_example_c}) add_custom_target(curl-examples-build) # Special target to compile all tests quickly and build a single test to probe linkage - add_dependencies(curl-examples-build ${_target_name} ${_all_plus_one}) # Include a full built of a single test + add_dependencies(curl-examples-build ${_target_name} ${_all_plus_one}) # Include a full build of a single test else() set(_all_plus_one ${_target_name}) # Save the last test for the curl-examples-build target add_executable(${_target_name} EXCLUDE_FROM_ALL "${_target}.c")