diff options
author | nat-goodspeed <nat@lindenlab.com> | 2023-10-12 12:03:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-12 12:03:07 -0400 |
commit | cc41888af3260cb5398c7a7a3db1e318d3af048c (patch) | |
tree | 2b3ce2216e75e1b8ca74d6e7fb01c70888ce0e60 | |
parent | cebbdf2d129c0c039385125454d9198f42e7e596 (diff) | |
parent | e9f493cea08a9114cb48d05820e7b4d4fb5aa741 (diff) |
Merge pull request #427 from secondlife/signal/py312
Add python 3.12 to FindPython search path
-rw-r--r-- | indra/cmake/Python.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/Python.cmake b/indra/cmake/Python.cmake index 2167fb7864..da5d2ef22c 100644 --- a/indra/cmake/Python.cmake +++ b/indra/cmake/Python.cmake @@ -13,7 +13,7 @@ elseif (WINDOWS) foreach(hive HKEY_CURRENT_USER HKEY_LOCAL_MACHINE) # prefer more recent Python versions to older ones, if multiple versions # are installed - foreach(pyver 3.11 3.10 3.9 3.8 3.7) + foreach(pyver 3.12 3.11 3.10 3.9 3.8 3.7) list(APPEND regpaths "[${hive}\\SOFTWARE\\Python\\PythonCore\\${pyver}\\InstallPath]") endforeach() endforeach() |