Skip to content

Commit d4c05eb

Browse files
committed
cmake: rename clar-related variables to avoid confusion
In c3de556 (Makefile: rename clar-related variables to avoid confusion, 2024-09-10) some `Makefile` variables were renamed that were partially used by the CMake definition. Adapt the latter to the new lay of the land. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent c3de556 commit d4c05eb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

contrib/buildsystems/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1004,14 +1004,14 @@ foreach(unit_test ${unit_test_PROGRAMS})
10041004
endif()
10051005
endforeach()
10061006

1007-
parse_makefile_for_scripts(unit_tests_SUITES "UNIT_TESTS_SUITES" "")
1007+
parse_makefile_for_scripts(clar_test_SUITES "CLAR_TEST_SUITES" "")
10081008

10091009
set(clar_decls "")
10101010
set(clar_cbs "")
10111011
set(clar_cbs_count 0)
10121012
set(clar_suites "static struct clar_suite _clar_suites[] = {\n")
1013-
list(LENGTH unit_tests_SUITES clar_suites_count)
1014-
foreach(suite ${unit_tests_SUITES})
1013+
list(LENGTH clar_test_SUITES clar_suites_count)
1014+
foreach(suite ${clar_test_SUITES})
10151015
file(STRINGS "${CMAKE_SOURCE_DIR}/t/unit-tests/${suite}.c" decls
10161016
REGEX "^void test_${suite}__[a-zA-Z_0-9][a-zA-Z_0-9]*\\(void\\)$")
10171017

@@ -1042,9 +1042,9 @@ string(APPEND clar_suites
10421042
file(WRITE "${CMAKE_BINARY_DIR}/t/unit-tests/clar-decls.h" "${clar_decls}")
10431043
file(WRITE "${CMAKE_BINARY_DIR}/t/unit-tests/clar.suite" "${clar_decls}" "${clar_cbs}" "${clar_suites}")
10441044

1045-
list(TRANSFORM unit_tests_SUITES PREPEND "${CMAKE_SOURCE_DIR}/t/unit-tests/")
1046-
list(TRANSFORM unit_tests_SUITES APPEND ".c")
1047-
add_library(unit-tests-lib ${unit_tests_SUITES} "${CMAKE_SOURCE_DIR}/t/unit-tests/clar/clar.c")
1045+
list(TRANSFORM clar_test_SUITES PREPEND "${CMAKE_SOURCE_DIR}/t/unit-tests/")
1046+
list(TRANSFORM clar_test_SUITES APPEND ".c")
1047+
add_library(unit-tests-lib ${clar_test_SUITES} "${CMAKE_SOURCE_DIR}/t/unit-tests/clar/clar.c")
10481048
target_include_directories(unit-tests-lib PRIVATE "${CMAKE_SOURCE_DIR}/t/unit-tests")
10491049
add_executable(unit-tests "${CMAKE_SOURCE_DIR}/t/unit-tests/unit-test.c")
10501050
target_link_libraries(unit-tests unit-tests-lib common-main)

0 commit comments

Comments
 (0)