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

fix : re enabled pip release build option

parent 9380941b
No related branches found
No related tags found
2 merge requests!38version 0.3.0,!19feat : release_pip
......@@ -50,16 +50,11 @@ class CMakeBuild(build_ext):
os.chdir(str(build_temp))
# Impose to use the executable of the python
# used to launch setup.py to setup PythonInterp
# see issue https://gitlab.eclipse.org/eclipse/aidge/aidge_backend_cuda/-/issues/18
compile_type = "Debug"
# compile_type = (
# "Release"
# if "AIDGE_PYTHON_BUILD_TYPE" not in os.environ
# else os.environ["AIDGE_PYTHON_BUILD_TYPE"]
# )
compile_type = (
"Release"
if "AIDGE_PYTHON_BUILD_TYPE" not in os.environ
else os.environ["AIDGE_PYTHON_BUILD_TYPE"]
)
install_path = (
os.path.join(sys.prefix, "lib", "libAidge")
......
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