mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-05-11 02:16:00 +02:00
fix: use appimage feature
This commit is contained in:
parent
3bf2d749fe
commit
9245e13057
2 changed files with 21 additions and 2 deletions
7
build.py
7
build.py
|
@ -99,6 +99,11 @@ def make_parser():
|
|||
action='store_true',
|
||||
help='Build rustdesk libs with the flatpak feature enabled'
|
||||
)
|
||||
parser.add_argument(
|
||||
'--appimage',
|
||||
action='store_true',
|
||||
help='Build rustdesk libs with the appimage feature enabled'
|
||||
)
|
||||
parser.add_argument(
|
||||
'--skip-cargo',
|
||||
action='store_true',
|
||||
|
@ -236,6 +241,8 @@ def get_features(args):
|
|||
features.append('flutter')
|
||||
if args.flatpak:
|
||||
features.append('flatpak')
|
||||
if args.appimage:
|
||||
features.append('appimage')
|
||||
print("features:", features)
|
||||
return features
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue