cmd_opts += ['--style=%s' % args.style]
if args.export_only:
cmd_opts += ['--export-only']
+ if args.with_submodules:
+ cmd_opts += ['--with-submodules']
return cmd_opts
parser.add_argument('--outdir-directly', action='store_true',
help='Use the directory of --outdir parameter directly'
'rather than outdir/pkg-version-release')
+ parser.add_argument('--with-submodules', action='store_true',
+ help='export source code also with submodule code togerther')
parser.set_defaults(alias="ex")
return parser
'either comma separated string or local file location.')
group.add_argument('--profiling', default='',
help='Profiling report location to be used package ordering.')
+ group.add_argument('--with-submodules', action='store_true',
+ help='build project with submodules togerther')
parser.set_defaults(alias="lb")
return parser