summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorcosmic-linden <111533034+cosmic-linden@users.noreply.github.com>2024-10-21 09:46:59 -0700
committerGitHub <noreply@github.com>2024-10-21 09:46:59 -0700
commita86c53c212f9c80f710477816dccda9abce576ef (patch)
tree6bbf821a84d6a2e92ea3bf6be7ecf51c3b953fb2 /indra
parent98380ef4265ca5590125ea505e3b8d41de24c049 (diff)
parent7d6e16ff9f4dbc09ee2b8130a66adfff4b9b848f (diff)
Merge pull request #2896 from secondlife/v-2895
secondlife/viewer#2895: Fix Windows cmake not detecting latest python
Diffstat (limited to 'indra')
-rw-r--r--indra/cmake/Python.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/Python.cmake b/indra/cmake/Python.cmake
index da5d2ef22c..39fd21c33f 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.12 3.11 3.10 3.9 3.8 3.7)
+ foreach(pyver 3.14 3.13 3.12 3.11 3.10 3.9 3.8 3.7)
list(APPEND regpaths "[${hive}\\SOFTWARE\\Python\\PythonCore\\${pyver}\\InstallPath]")
endforeach()
endforeach()