Fix mis-matching argument in closing tag for cmake macro (#1714) (#1715)

Co-authored-by: Iakov Sergeev <yahontu@gmail.com>
This commit is contained in:
IS 2023-12-20 09:54:55 +00:00 committed by GitHub
parent 9a0422eb23
commit 6b7e86c5c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -56,6 +56,7 @@ Gergő Szitár <szitar.gergo@gmail.com>
Hannes Hauswedell <h2@fsfe.org>
Henrique Bucher <hbucher@gmail.com>
Ismael Jimenez Martinez <ismael.jimenez.martinez@gmail.com>
Iakov Sergeev <yahontu@gmail.com>
Jern-Kuan Leong <jernkuan@gmail.com>
JianXiong Zhou <zhoujianxiong2@gmail.com>
Joao Paulo Magalhaes <joaoppmagalhaes@gmail.com>

View File

@ -70,7 +70,7 @@ macro(benchmark_add_test)
cmake_parse_arguments(TEST "" "NAME" "" ${ARGN})
set_tests_properties(${TEST_NAME} PROPERTIES ENVIRONMENT_MODIFICATION "PATH=path_list_prepend:$<TARGET_FILE_DIR:benchmark::benchmark>")
endif()
endmacro(compile_output_test)
endmacro(benchmark_add_test)
# Demonstration executable
compile_benchmark_test(benchmark_test)