From 381c519631510735d1538765114c689feae4588d Mon Sep 17 00:00:00 2001 From: FlightlessMango Date: Thu, 15 Jun 2023 06:13:03 +0200 Subject: [PATCH] meson: disable mangoapp by default [skip ci] --- build.sh | 2 -- meson_options.txt | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 5c41b242..b674e539 100755 --- a/build.sh +++ b/build.sh @@ -197,7 +197,6 @@ uninstall() { rm -fv "/usr/bin/mangohud" rm -fv "/usr/bin/mangoplot" rm -fv "/usr/bin/mangohud.x86" - rm -fv "/usr/bin/mangoapp" } install() { @@ -238,7 +237,6 @@ install() { /usr/bin/install -Dvm644 ./build/release/usr/share/doc/mangohud/MangoHud.conf.example /usr/share/doc/mangohud/MangoHud.conf.example /usr/bin/install -vm755 ./build/release/usr/bin/mangohud /usr/bin/mangohud /usr/bin/install -vm755 ./build/release/usr/bin/mangoplot /usr/bin/mangoplot - /usr/bin/install -vm755 ./build/release/usr/bin/mangoapp /usr/bin/mangoapp ln -sv $DEFAULTLIB /usr/lib/mangohud/lib diff --git a/meson_options.txt b/meson_options.txt index 47bba248..5f7d11bd 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -8,7 +8,7 @@ option('with_x11', type : 'feature', value : 'enabled') option('with_wayland', type : 'feature', value : 'disabled') option('with_dbus', type : 'feature', value : 'enabled') option('loglevel', type: 'combo', choices : ['trace', 'debug', 'info', 'warn', 'err', 'critical', 'off'], value : 'info', description: 'Max log level in non-debug build') -option('mangoapp', type: 'boolean', value : true) +option('mangoapp', type: 'boolean', value : false) option('mangohudctl', type: 'boolean', value : false) option('mangoapp_layer', type: 'boolean', value : false) option('tests', type: 'feature', value: 'auto', description: 'Run tests')