Skip to content

Commit

Permalink
set dafault build dir
Browse files Browse the repository at this point in the history
  • Loading branch information
mryzhov committed Oct 18, 2024
1 parent 04ec275 commit 9446bdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bindings/python/wheel/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
WORKING_DIR = Path.cwd()
BUILD_BASE = f"build_{PYTHON_VERSION}"
OPENVINO_SOURCE_DIR = SCRIPT_DIR.parents[3]
OPENVINO_BINARY_DIR = os.getenv("OPENVINO_BINARY_DIR")
OPENVINO_BINARY_DIR = os.getenv("OPENVINO_BINARY_DIR", f'{OPENVINO_SOURCE_DIR}/build_wheel')
OPENVINO_PYTHON_BINARY_DIR = os.getenv("OPENVINO_PYTHON_BINARY_DIR", "python_build")
CONFIG = os.getenv("BUILD_TYPE", "Release")
OV_RUNTIME_LIBS_DIR = os.getenv("OV_RUNTIME_LIBS_DIR", f"runtime/{LIBS_DIR}/{ARCH}/{CONFIG}")
Expand Down

0 comments on commit 9446bdd

Please sign in to comment.