Skip to content

Commit 9709163

Browse files
dschogitster
authored andcommitted
cmake: generalize the handling of the CLAR_TEST_OBJS list
A late-comer to the v2.49.0 party, `sk/unit-test-oid`, added yet another array item to `CLAR_TEST_OBJS`, causing the `win+VS build` job to fail with symptoms like this one: unit-tests-lib.lib(u-oid-array.obj) : error LNK2019: unresolved external symbol cl_parse_any_oid referenced in function fill_array This is a similar scenario to the one that forced me to write 8afda42 (cmake: generalize the handling of the `UNIT_TEST_OBJS` list, 2024-09-18): The hard-coded echo of `CLAR_TEST_OBJS` in `CMakeLists.txt` that recapitulates faithfully what was already hard-coded in `Makefile` would either have to be updated whack-a-mole style, or generalized. Just like I chose the latter option for `UNIT_TEST_OBJS`, I now do the same for `CLAR_TEST_OBJS`. Signed-off-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 31761f3 commit 9709163

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

contrib/buildsystems/CMakeLists.txt

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1001,10 +1001,14 @@ parse_makefile_for_sources(unit-test_SOURCES ${CMAKE_SOURCE_DIR}/Makefile "UNIT_
10011001
list(TRANSFORM unit-test_SOURCES REPLACE "\\$\\(UNIT_TEST_DIR\\)/" "${CMAKE_SOURCE_DIR}/t/unit-tests/")
10021002
add_library(unit-test-lib STATIC ${unit-test_SOURCES})
10031003

1004+
parse_makefile_for_sources(clar-test_SOURCES ${CMAKE_SOURCE_DIR}/Makefile "CLAR_TEST_OBJS")
1005+
list(TRANSFORM clar-test_SOURCES REPLACE "\\$\\(UNIT_TEST_DIR\\)/" "${CMAKE_SOURCE_DIR}/t/unit-tests/")
1006+
add_library(clar-test-lib STATIC ${clar-test_SOURCES})
1007+
10041008
parse_makefile_for_scripts(unit_test_PROGRAMS "UNIT_TEST_PROGRAMS" "")
10051009
foreach(unit_test ${unit_test_PROGRAMS})
10061010
add_executable("${unit_test}" "${CMAKE_SOURCE_DIR}/t/unit-tests/${unit_test}.c")
1007-
target_link_libraries("${unit_test}" unit-test-lib common-main)
1011+
target_link_libraries("${unit_test}" unit-test-lib clar-test-lib common-main)
10081012
set_target_properties("${unit_test}"
10091013
PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/t/unit-tests/bin)
10101014
if(MSVC)
@@ -1046,13 +1050,13 @@ add_custom_command(OUTPUT "${CMAKE_BINARY_DIR}/t/unit-tests/clar.suite"
10461050
VERBATIM)
10471051

10481052
add_library(unit-tests-lib ${clar_test_SUITES}
1049-
"${CMAKE_SOURCE_DIR}/t/unit-tests/clar/clar.c"
10501053
"${CMAKE_BINARY_DIR}/t/unit-tests/clar-decls.h"
10511054
"${CMAKE_BINARY_DIR}/t/unit-tests/clar.suite"
10521055
)
1056+
target_include_directories(clar-test-lib PUBLIC "${CMAKE_BINARY_DIR}/t/unit-tests")
10531057
target_include_directories(unit-tests-lib PUBLIC "${CMAKE_BINARY_DIR}/t/unit-tests")
1054-
add_executable(unit-tests "${CMAKE_SOURCE_DIR}/t/unit-tests/unit-test.c")
1055-
target_link_libraries(unit-tests unit-tests-lib common-main)
1058+
add_executable(unit-tests)
1059+
target_link_libraries(unit-tests unit-tests-lib clar-test-lib common-main)
10561060
set_target_properties(unit-tests
10571061
PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/t/unit-tests/bin)
10581062
if(MSVC)

0 commit comments

Comments
 (0)