fix one flatpak feature missing

This commit is contained in:
rustdesk 2024-05-03 02:52:41 +08:00
parent d18810b612
commit b5f6a9c91a
4 changed files with 16 additions and 30 deletions

View file

@ -134,16 +134,6 @@ def make_parser():
action='store_true',
help='Build with unix file copy paste feature'
)
parser.add_argument(
'--flatpak',
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',
@ -296,10 +286,6 @@ def get_features(args):
features.append('flutter')
if not args.disable_flutter_texture_render:
features.append('flutter_texture_render')
if args.flatpak:
features.append('flatpak')
if args.appimage:
features.append('appimage')
if args.unix_file_copy_paste:
features.append('unix-file-copy-paste')
if windows: