mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
11 lines
393 B
Python
11 lines
393 B
Python
import os
|
|
|
|
|
|
def add_implementation_envs(env, _app):
|
|
"""Modify environments to contain all required for implementation."""
|
|
openharmony_path = os.path.join(
|
|
os.environ["OPENPYPE_REPOS_ROOT"], "openpype", "hosts",
|
|
"harmony", "vendor", "OpenHarmony"
|
|
)
|
|
# TODO check if is already set? What to do if is already set?
|
|
env["LIB_OPENHARMONY_PATH"] = openharmony_path
|