Commit 412b1af2 authored by Ghislain MARY's avatar Ghislain MARY

Add option to build only submodules + default to grouping external source path builders.

parent edb78a54
...@@ -175,22 +175,34 @@ def main(argv=None): ...@@ -175,22 +175,34 @@ def main(argv=None):
'-L', '--list-cmake-variables', help="List non-advanced CMake cache variables.", action='store_true', dest='list_cmake_variables') '-L', '--list-cmake-variables', help="List non-advanced CMake cache variables.", action='store_true', dest='list_cmake_variables')
argparser.add_argument( argparser.add_argument(
'-m', '--minimal', help="Build a minimal version of Linphone.", action='store_true') '-m', '--minimal', help="Build a minimal version of Linphone.", action='store_true')
argparser.add_argument(
'-os', '--only-submodules', help="Build only submodules (finding all dependencies on the system.", action='store_true')
argparser.add_argument( argparser.add_argument(
'-t', '--tunnel', help="Enable Tunnel.", action='store_true') '-t', '--tunnel', help="Enable Tunnel.", action='store_true')
args, additional_args = argparser.parse_known_args() args, additional_args = argparser.parse_known_args()
additional_args += ["-G", args.generator] additional_args += ["-G", args.generator]
additional_args += ["-DLINPHONE_BUILDER_GROUP_EXTERNAL_SOURCE_PATH_BUILDERS=YES"]
if args.debug_verbose: if args.debug_verbose:
additional_args += ["-DENABLE_DEBUG_LOGS=YES"] additional_args += ["-DENABLE_DEBUG_LOGS=YES"]
if args.only_submodules:
additional_args += ["-DLINPHONE_BUILDER_BUILD_ONLY_EXTERNAL_SOURCE_PATH=YES"]
if args.minimal: if args.minimal:
additional_args = ["-DLINPHONE_BUILDER_BUILD_ONLY_EXTERNAL_SOURCE_PATH=YES", additional_args += ["-DENABLE_VIDEO=NO",
"-DLINPHONE_BUILDER_GROUP_EXTERNAL_SOURCE_PATH_BUILDERS=YES", "-DENABLE_MKV=NO",
"-DENABLE_MKV=NO", "-DENABLE_GSM=NO",
"-DENABLE_ZRTP=NO", "-DENABLE_ILBC=NO",
"-DENABLE_PACKAGING=NO"] + additional_args "-DENABLE_ISAC=NO",
"-DENABLE_OPUS=NO",
"-DENABLE_SILK=NO",
"-DENABLE_SPEEX=NO",
"-DENABLE_SRTP=NO",
"-DENABLE_ZRTP=NO",
"-DENABLE_PACKAGING=NO"]
if check_tools() != 0: if check_tools() != 0:
return 1 return 1
......
Markdown is supported
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