Skip to content
Snippets Groups Projects
Commit b7519aec authored by Eleni Mathioulaki's avatar Eleni Mathioulaki
Browse files

setup dependent run env (for wf packages to work)

parent 3e6bd238
No related branches found
No related tags found
No related merge requests found
......@@ -153,6 +153,9 @@ class Hxtorch(WafPackage):
def setup_run_environment(self, env):
self._setup_common_env(env)
def setup_dependent_run_environment(self, env, dependent_spec):
self._setup_common_env(env)
# override configure step as we perform a project setup first
def configure(self, spec, prefix):
"""Setup and configure the project."""
......
......@@ -130,6 +130,9 @@ class PynnBrainscales(WafPackage):
def setup_run_environment(self, env):
self._setup_common_env(env)
def setup_dependent_run_environment(self, env, dependent_spec):
self._setup_common_env(env)
# override configure step as we perform a project setup first
def configure(self, spec, prefix):
"""Setup and configure the project."""
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment