The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

cmake: Make sure we are looking for Python 3.8 and 3.9

+2
+2
CMakeLists.txt
··· 43 43 find_package(Systemd) 44 44 find_package(OpenGLES COMPONENTS V3) 45 45 46 + # Android SDK doesn't look for 3.8 and 3.9, which is what new distros ship with. 47 + set(Python_ADDITIONAL_VERSIONS 3.8 3.9) 46 48 if(NOT CMAKE_VERSION VERSION_LESS 3.12) 47 49 find_package(Python3 REQUIRED Interpreter) 48 50 set(PYTHON_EXECUTABLE Python3::Interpreter)