From f2b1c7f24cb85625cd03f16759b61c1ed15c56ff Mon Sep 17 00:00:00 2001 From: "S. Pomarede" Date: Thu, 13 Oct 2016 12:11:21 +0200 Subject: [PATCH 1/1] add generated modules to the EDF appli --- commands/application.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/commands/application.py b/commands/application.py index 78c8e39..971278d 100644 --- a/commands/application.py +++ b/commands/application.py @@ -89,7 +89,7 @@ def create_config_file(config, modules, env_file, logger): if src.product.product_is_smesh_plugin(mm): continue - if 'install_dir' in mm and bool(mm.install_dir) : + if 'install_dir' in mm and bool(mm.install_dir): if src.product.product_is_cpp(mm): # cpp module for aa in src.product.get_product_components(mm): @@ -244,7 +244,8 @@ def get_SALOME_modules(config): l_modules = [] for product in config.APPLICATION.products: product_info = src.product.get_product_config(config, product) - if src.product.product_is_SALOME(product_info): + if (src.product.product_is_SALOME(product_info) or + src.product.product_is_generated(product_info)): l_modules.append(product) return l_modules -- 2.30.2