From f6960a5e89fd9642a4d379857430c9d9b16313c3 Mon Sep 17 00:00:00 2001 From: Stephan Lachnit Date: Mon, 30 Sep 2024 14:50:25 +0200 Subject: [PATCH] cmake/traceparser: fix typo --- mesonbuild/cmake/traceparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/cmake/traceparser.py b/mesonbuild/cmake/traceparser.py index bc18b51a5b4d..38a2d31a595a 100644 --- a/mesonbuild/cmake/traceparser.py +++ b/mesonbuild/cmake/traceparser.py @@ -637,7 +637,7 @@ def _cmake_target_link_options(self, tline: CMakeTraceLine) -> None: def _cmake_target_link_libraries(self, tline: CMakeTraceLine) -> None: # DOC: https://cmake.org/cmake/help/latest/command/target_link_libraries.html - self._parse_common_target_options('target_link_options', 'LINK_LIBRARIES', 'INTERFACE_LINK_LIBRARIES', tline) + self._parse_common_target_options('target_link_libraries', 'LINK_LIBRARIES', 'INTERFACE_LINK_LIBRARIES', tline) def _cmake_message(self, tline: CMakeTraceLine) -> None: # DOC: https://cmake.org/cmake/help/latest/command/message.html