diff --git a/misc/launch_qet.sh b/misc/launch_qet.sh index d05fba587..bcefb3cad 100755 --- a/misc/launch_qet.sh +++ b/misc/launch_qet.sh @@ -5,6 +5,7 @@ current_dir=$(dirname "$0") # configuration QET_EXE=$(readlink -f "${current_dir}/../qelectrotech") QET_ELEMENTS_DIR=$(readlink -f "${current_dir}/../elements/") +QET_TBT_DIR=$(readlink -f "${current_dir}/../titleblocks/") QET_CONFIG_DIR="" QET_LANG_DIR=$(readlink -f "${current_dir}/../lang/") # REDEFINE_LANG="es" @@ -22,6 +23,10 @@ if [ -d "${QET_ELEMENTS_DIR}" ]; then OPTIONS="${OPTIONS} --common-elements-dir=${QET_ELEMENTS_DIR}" fi +if [ -d "${QET_TBT_DIR}" ]; then + OPTIONS="${OPTIONS} --common-tbt-dir=${QET_TBT_DIR}" +fi + if [ -d "${QET_CONFIG_DIR}" ]; then OPTIONS="${OPTIONS} --config-dir=${QET_CONFIG_DIR}" fi