From 248d4b0c9394ed7ae346e466d962e90b73b08f94 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Mon, 14 Mar 2022 20:57:37 -0400 Subject: [PATCH] update fxtool for GTK3/GTKx separate engines --- fxtool | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/fxtool b/fxtool index f4582399..9d07b25b 100755 --- a/fxtool +++ b/fxtool @@ -22,16 +22,16 @@ ######## DEFINITIONS APP="MBS.Framework.UserInterface" -USAGE_STATEMENT="Usage: $0 {install|remove} {gtk|wf}" +USAGE_STATEMENT="Usage: $0 {install|remove} {gtk3|wf}" EC_INVALID_CHOICE=1 ######## IMPLEMENTATION case "$1" in install) case "$2" in - gtk) + gtk3) for ext in dll dll.config pdb xml; do - cp "../$APP/Output/Debug/$APP.Engines.GTK.$ext" "Output/Debug/" + cp "../$APP/Output/Debug/$APP.Engines.GTK3.$ext" "Output/Debug/" done ;; wf) @@ -46,9 +46,9 @@ case "$1" in ;; remove) case "$2" in - gtk) + gtk3) for ext in dll dll.config pdb xml; do - rm "Output/Debug/$APP.Engines.GTK.$ext" + rm "Output/Debug/$APP.Engines.GTK3.$ext" done ;; wf)