cmake: Set LABELS property for tests

This commit is contained in:
Hennadii Stepanov
2026-01-13 17:26:47 +00:00
parent 29f26ec3cf
commit 8354618e02
2 changed files with 8 additions and 0 deletions

View File

@@ -9,6 +9,9 @@ function(add_example name)
$<$<PLATFORM_ID:Windows>:bcrypt>
)
add_test(NAME secp256k1.example.${name} COMMAND ${target_name})
set_tests_properties(secp256k1.example.${name} PROPERTIES
LABELS secp256k1_example
)
endfunction()
add_example(ecdsa)