forked from mirrors/rustdesk
feat: macos, audio, loopback (#10025)
Signed-off-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
parent
02b046bdbf
commit
0973f51df9
9 changed files with 105 additions and 21 deletions
9
build.py
9
build.py
|
|
@ -143,6 +143,12 @@ def make_parser():
|
|||
"--package",
|
||||
type=str
|
||||
)
|
||||
if osx:
|
||||
parser.add_argument(
|
||||
'--screencapturekit',
|
||||
action='store_true',
|
||||
help='Enable feature screencapturekit'
|
||||
)
|
||||
return parser
|
||||
|
||||
|
||||
|
|
@ -274,6 +280,9 @@ def get_features(args):
|
|||
features.append('flutter')
|
||||
if args.unix_file_copy_paste:
|
||||
features.append('unix-file-copy-paste')
|
||||
if osx:
|
||||
if args.screencapturekit:
|
||||
features.append('screencapturekit')
|
||||
print("features:", features)
|
||||
return features
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue