* Use FindPython3.cmake
* Fixed compilation on macOS 14 with new core development tools
* Try to use Python3_SOABI instead of PYTHON_MODULE_EXTENSION
* Use Development.Module
* Keep specifying only Python3_EXECUTABLE
* Print PYTHON_MODULE_EXTENSION
* Added check for minimal cmake version for python API
* Returned Python3_INCLUDE_DIR for cross-compilation case
* Try to allow cmake older than 3.18
* Use build python interpreter to check cython dependency
* revert changes in .ci/openvino-onnx/Dockerfile
* removed unused code
* Fixed issue with variables scope
* Experiment: remove include dirs
* Corrected docs
* Use pybind11 function to set extension
* Revert "Experiment: remove include dirs"
This reverts commit 6f7f90211c.
* Refactor ConvolutionBackpropDataLayerTest, ConvolutionLayerTest, DeformableConvolutionLayerTest (#19810)
* Refactor ConvolutionBackpropDataLayerTest
* Refactor ConvolutionLayerTest
* Refactor DeformableConvolutionLayerTest
* Apply comments
* Apply comments
* Fix
* Updated minimum cmake version for Windows
* Simplified check
* Removed useless message status
* Use puiblic option
---------
Co-authored-by: Oleg Pipikin <oleg.pipikin@intel.com>
30 lines
1.1 KiB
CMake
30 lines
1.1 KiB
CMake
# Copyright (C) 2018-2023 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if(EXISTS "${REPORT_DIR}")
|
|
file(REMOVE_RECURSE "${REPORT_DIR}")
|
|
endif()
|
|
|
|
file(MAKE_DIRECTORY "${REPORT_DIR}")
|
|
|
|
execute_process(
|
|
COMMAND
|
|
"${Python3_EXECUTABLE}"
|
|
"${CONVERT_SCRIPT}"
|
|
"--file=${INPUT_FILE}"
|
|
"--report-dir=${REPORT_DIR}"
|
|
"--source-dir=${SOURCE_DIR}"
|
|
"--title=${TITLE}")
|
|
|
|
# Change cppcheck things to cpplint
|
|
|
|
file(READ "${REPORT_DIR}/index.html" cur_file_content)
|
|
|
|
string(REPLACE "Cppcheck" "cpplint" cur_file_content "${cur_file_content}")
|
|
string(REPLACE "a tool for static C/C++ code analysis" "an open source lint-like tool from Google" cur_file_content "${cur_file_content}")
|
|
string(REPLACE "http://cppcheck.sourceforge.net" "http://google-styleguide.googlecode.com/svn/trunk/cpplint/cpplint.py" cur_file_content "${cur_file_content}")
|
|
string(REPLACE "IRC: <a href=\"irc://irc.freenode.net/cppcheck\">irc://irc.freenode.net/cppcheck</a>" " " cur_file_content "${cur_file_content}")
|
|
|
|
file(WRITE "${REPORT_DIR}/index.html" "${cur_file_content}")
|