typo in comment

This commit is contained in:
Viktor Szakats 2025-08-06 23:55:33 +02:00
parent b1a22add88
commit 797a737992
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -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")