Warning, /plasma/breeze-gtk/cmake/FindPythonCairo.cmake is written in an unsupported language. File is not indexed.

0001 find_package(Python3 COMPONENTS Interpreter REQUIRED)
0002 
0003 # Check for python cairo
0004 execute_process(COMMAND ${Python3_EXECUTABLE} -c "import cairo"
0005                 RESULT_VARIABLE PYTHON_CAIRO_RESULT)
0006 if (PYTHON_CAIRO_RESULT EQUAL 0)
0007     set(PYTHONCAIRO_FOUND 1)
0008 endif()