Skip to content

Commit

Permalink
Fix clang-tidy executable path (openvinotoolkit#29041)
Browse files Browse the repository at this point in the history
### Details:
 - Fix clang-tidy executable detection

### Tickets:
 - N/A

Co-authored-by: Alina Kladieva <[email protected]>
  • Loading branch information
aobolensk and akladiev authored Feb 18, 2025
1 parent 37775f6 commit 54c2792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/developer_package/plugins/plugins.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function(ov_add_plugin)
if (OV_PLUGIN_ADD_CLANG_TIDY)
if (ENABLE_CLANG_TIDY)
set_target_properties(${OV_PLUGIN_NAME} PROPERTIES
CXX_CLANG_TIDY "clang-tidy-${CLANG_TIDY_REQUIRED_VERSION};--extra-arg=-Wno-unused-command-line-argument")
CXX_CLANG_TIDY "${CLANG_TIDY};--extra-arg=-Wno-unused-command-line-argument")
endif()
endif()

Expand Down

0 comments on commit 54c2792

Please sign in to comment.