-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathFindPythonVirtualEnv.cmake
69 lines (59 loc) · 2.69 KB
/
FindPythonVirtualEnv.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
###############################################################################
# Top contributors (to current version):
# Makai Mann
#
# This file is part of the smt-switch project.
#
# Copyright (c) 2025 by the authors listed in the file AUTHORS
# in the top-level source directory) and their institutional affiliations.
# All rights reserved. See the file LICENSE in the top-level source
# directory for licensing information.\endverbatim
#
# #############################################################################
#
# File: FindPythonVirtualEnv.cmake
# Purpose: Detect and prefer Python from a virtual environment
# Use include guard to prevent multiple inclusions
include_guard(GLOBAL)
# Function to detect and set Python from virtual environment
function(find_python_in_virtualenv)
# Debugging: Print initial environment information
message(STATUS "Detecting Python Virtual Environment...")
# List to store potential Python paths
set(VENV_PATHS)
# 1. Standard virtualenv/venv path
if(DEFINED ENV{VIRTUAL_ENV})
list(APPEND VENV_PATHS "$ENV{VIRTUAL_ENV}/bin/python")
message(STATUS "Detected VIRTUAL_ENV: $ENV{VIRTUAL_ENV}")
endif()
# 2. Conda environment path
if(DEFINED ENV{CONDA_PREFIX})
list(APPEND VENV_PATHS "$ENV{CONDA_PREFIX}/bin/python")
message(STATUS "Detected CONDA_PREFIX: $ENV{CONDA_PREFIX}")
endif()
# Iterate through potential paths to find a valid Python interpreter
foreach(POTENTIAL_PYTHON IN LISTS VENV_PATHS)
if(EXISTS "${POTENTIAL_PYTHON}")
# Verify Python version
execute_process(
COMMAND "${POTENTIAL_PYTHON}" -c "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')"
OUTPUT_VARIABLE PYTHON_VERSION
OUTPUT_STRIP_TRAILING_WHITESPACE
RESULT_VARIABLE PYTHON_VERSION_RESULT
)
if(PYTHON_VERSION_RESULT EQUAL 0)
# Check if version meets minimum requirements
if(PYTHON_VERSION VERSION_GREATER_EQUAL "3.9")
message(STATUS "Found Virtual Environment Python: ${POTENTIAL_PYTHON}")
message(STATUS "Virtual Environment Python Version: ${PYTHON_VERSION}")
# Set variables for CMake to use
set(Python_EXECUTABLE "${POTENTIAL_PYTHON}" PARENT_SCOPE)
set(PYTHON_EXECUTABLE "${POTENTIAL_PYTHON}" PARENT_SCOPE)
return()
endif()
endif()
endif()
endforeach()
# If no suitable virtual environment Python found, log a message
message(STATUS "No suitable Python virtual environment found")
endfunction()