Skip to content
Snippets Groups Projects
Commit 4524b72b authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

chore : AIDGE_BUILD_TYPE -> AIDGE_PYTHON_BUILD_TYPE

parent d4450875
No related branches found
No related tags found
2 merge requests!93Release v0.3.0,!64Feat/release pip
Pipeline #46463 canceled
...@@ -44,15 +44,15 @@ class CMakeBuild(build_ext): ...@@ -44,15 +44,15 @@ class CMakeBuild(build_ext):
os.chdir(str(build_temp)) os.chdir(str(build_temp))
# Impose to use the executable of the python # Impose to use the executable of the python
# used to launch setup.py to setup PythonInterp # used to launch setup.py to setup PythonInterp
python_executable = sys.executable python_executable = sys.executable
print(f"python executable :\t{python_executable}") print(f"python executable :\t{python_executable}")
compile_type = ( compile_type = (
"Release" "Release"
if "AIDGE_BUILD_TYPE" not in os.environ if "AIDGE_PYTHON_BUILD_TYPE" not in os.environ
else os.environ["AIDGE_BUILD_TYPE"] else os.environ["AIDGE_PYTHON_BUILD_TYPE"]
) )
install_path = ( install_path = (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment