cmake/traceparser: fix typo

pull/13735/head
Stephan Lachnit 2 months ago committed by Dylan Baker
parent 5399d3de02
commit 9294c81fc1
  1. 2
      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

Loading…
Cancel
Save