mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-20 04:58:09 +00:00
Default to "Unix Makefiles" generator if none is set.
This commit is contained in:
parent
50ddc9826d
commit
c9412d35fb
1 changed files with 3 additions and 0 deletions
|
|
@ -228,6 +228,9 @@ def main(argv=None):
|
|||
target = DesktopTarget()
|
||||
if args.generator is not None:
|
||||
target.generator = args.generator
|
||||
if target.generator is None:
|
||||
# Default to "Unix Makefiles" if no target specific generator is set and the user has not defined one
|
||||
target.generator = "Unix Makefiles"
|
||||
|
||||
if args.clean or args.veryclean:
|
||||
if args.veryclean:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue