From: S. Pomarede Date: Thu, 13 Oct 2016 10:11:21 +0000 (+0200) Subject: add generated modules to the EDF appli X-Git-Tag: 5.0.0a1~77 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=f2b1c7f24cb85625cd03f16759b61c1ed15c56ff;p=tools%2Fsat.git add generated modules to the EDF appli --- 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