diff options
author | Stephan Lachnit <stephanlachnit@debian.org> | 2024-09-30 14:50:25 +0200 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2024-09-30 10:15:30 -0700 |
commit | 9294c81fc134515a7b7d06ed538b66f45993b59d (patch) | |
tree | f3843c823a754671c8f5425094ea871e4f8df7ad | |
parent | 5399d3de02cb0f92e334f3f5f61cf0aa8521ac63 (diff) | |
download | meson-9294c81fc134515a7b7d06ed538b66f45993b59d.zip meson-9294c81fc134515a7b7d06ed538b66f45993b59d.tar.gz meson-9294c81fc134515a7b7d06ed538b66f45993b59d.tar.bz2 |
cmake/traceparser: fix typo
-rw-r--r-- | mesonbuild/cmake/traceparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/cmake/traceparser.py b/mesonbuild/cmake/traceparser.py index bc18b51..38a2d31 100644 --- a/mesonbuild/cmake/traceparser.py +++ b/mesonbuild/cmake/traceparser.py @@ -637,7 +637,7 @@ class CMakeTraceParser: 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 |