mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
ce6acd3ecd
Configures and loads OpenCV bindings extension including 3rdparty dependencies Based on running Python specify: - configure PYTHON_PATH (via "sys.path") - configure LD_LIBRARY_PATH / PATH
10 lines
262 B
Python
10 lines
262 B
Python
# flake8: noqa
|
|
import os
|
|
import sys
|
|
|
|
if sys.version_info[:2] >= (3, 0):
|
|
def exec_file_wrapper(fpath, g_vars, l_vars):
|
|
with open(fpath) as f:
|
|
code = compile(f.read(), os.path.basename(fpath), 'exec')
|
|
exec(code, g_vars, l_vars)
|