mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 15:08:24 +00:00
Allow using CMake extra generator.
This commit is contained in:
parent
c11442471e
commit
80bf93817c
1 changed files with 2 additions and 2 deletions
|
|
@ -203,12 +203,12 @@ def main(argv=None):
|
|||
retcode = 0
|
||||
return retcode
|
||||
#only generated makefile if we are using Ninja or Makefile
|
||||
if args.generator == 'Ninja':
|
||||
if args.generator.endswith('Ninja'):
|
||||
if not check_is_installed("ninja", "it"):
|
||||
return 1
|
||||
generate_makefile('ninja -C')
|
||||
print("You can now run 'make' to build.")
|
||||
elif args.generator == "Unix Makefiles":
|
||||
elif args.generator.endswith("Unix Makefiles"):
|
||||
generate_makefile('$(MAKE) -C')
|
||||
print("You can now run 'make' to build.")
|
||||
elif args.generator == "Xcode":
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue