Merge pull request #9756 from pranitbauva1997:doc-typo-faster
[platform/upstream/opencv.git] / cmake / FindPylint.cmake
1 # - Find Pylint
2 # Find the Pylint executable and extract the version number
3 #
4 # OUTPUT Variables
5 #
6 #   PYLINT_FOUND
7 #       True if the pylint package was found
8 #   PYLINT_EXECUTABLE
9 #       The pylint executable location
10 #   PYLINT_VERSION
11 #       A string denoting the version of pylint that has been found
12
13 find_host_program(PYLINT_EXECUTABLE pylint PATHS /usr/bin)
14
15 if(PYLINT_EXECUTABLE)
16   execute_process(COMMAND ${PYLINT_EXECUTABLE} --version OUTPUT_VARIABLE PYLINT_VERSION_RAW ERROR_QUIET)
17   if(PYLINT_VERSION_RAW MATCHES "pylint([^,]*) ([0-9\\.]+[0-9])")
18     set(PYLINT_VERSION "${CMAKE_MATCH_2}")
19   else()
20     set(PYLINT_VERSION "unknown")
21   endif()
22 endif()
23
24 include(FindPackageHandleStandardArgs)
25 FIND_PACKAGE_HANDLE_STANDARD_ARGS(Pylint DEFAULT_MSG PYLINT_EXECUTABLE)
26
27 mark_as_advanced(PYLINT_EXECUTABLE PYLINT_VERSION)