X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=commands%2Fconfigure.py;h=2fa43e715ffe59d1e27b428ea8864f4a43be9dae;hb=c3d7c3fee7ab10fcc24de57d3dcfe1d6eb2bec8d;hp=2fe672c9662bfddf46e5cc82a38e4fc91ba72399;hpb=941eef63102ae0968d7133997c76b34d53457612;p=tools%2Fsat.git diff --git a/commands/configure.py b/commands/configure.py index 2fe672c..2fa43e7 100644 --- a/commands/configure.py +++ b/commands/configure.py @@ -23,10 +23,10 @@ import src # Define all possible option for configure command : sat configure parser = src.options.Options() parser.add_option('p', 'products', 'list2', 'products', - _('products to configure. This option can be' + _('Optional: products to configure. This option can be' ' passed several time to configure several products.')) parser.add_option('o', 'option', 'string', 'option', - _('Option to add to the configure or cmake command.'), "") + _('Optional: Option to add to the configure or cmake command.'), "") def get_products_list(options, cfg, logger): '''method that gives the product list with their informations from @@ -177,11 +177,12 @@ def description(): :rtype: str ''' return _("The configure command executes in the build directory" - " the configure commands corresponding to the compilation mode" + " the configure commands corresponding\nto the compilation mode" " of the application products.\nThe possible compilation modes" " are \"cmake\", \"autotools\", or a script.\n\nHere are the " "commands to be run :\nautotools: build_configure and configure\n" - "cmake: cmake\nscript: N\A") + "cmake: cmake\nscript: do nothing\n\nexample:\nsat configure " + "SALOME-master --products KERNEL,GUI,PARAVIS") def run(args, runner, logger): '''method that is called when salomeTools is called with make parameter.