Skip to content

Commit 11d22cd

Browse files
committed
[cmake] Rename swift-api-digester to its new name.
In #36381 the swift-api-digester changed from being a standalone tool to be a symlink of the frontend. With the symlink, the target swift-api-checker disappeared. In order to keep depending on symlink_abi_checker_data for the tests, change the mentions of swift-api-checker to swift-frontend (which is the actual target that creates the symlink).
1 parent c0ccec3 commit 11d22cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/api_checker/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ add_custom_command(OUTPUT "${dest}"
2828
add_custom_target("symlink_abi_checker_data" ALL
2929
DEPENDS "${dest}"
3030
COMMENT "Symlinking ABI checker baseline data to ${dest}")
31-
if(TARGET swift-api-digester)
32-
add_dependencies(swift-api-digester symlink_abi_checker_data)
31+
if(TARGET swift-frontend)
32+
add_dependencies(swift-frontend symlink_abi_checker_data)
3333
endif()

0 commit comments

Comments
 (0)