From ea86d952f170b5e61dfb9f420bb9ef0671b6ffe7 Mon Sep 17 00:00:00 2001 From: alemuntoni Date: Mon, 27 Mar 2023 11:47:27 +0200 Subject: [PATCH] fix qt deployment on linux --- scripts/Linux/0_setup_env.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/Linux/0_setup_env.sh b/scripts/Linux/0_setup_env.sh index f844245cf..f61a4bb0d 100644 --- a/scripts/Linux/0_setup_env.sh +++ b/scripts/Linux/0_setup_env.sh @@ -37,10 +37,12 @@ if [ "$DONT_INSTALL_QT" = false ] ; then sudo apt-get install -y qt5-default qttools5-dev-tools qtdeclarative5-dev else echo "=== jumping installation of qt packages..." - # libraries that qt requires in any case - sudo apt-get install -y libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-render-util0-dev libxcb-xinerama0-dev fi +# libraries that qt requires in any case +echo "=== intalling libraries required for qt deployment..." +sudo apt-get install -y libxkbcommon-x11-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-render-util0-dev libxcb-xinerama0-dev + # possibility to use always system libraries starting from ubuntu 20.04, since cgal is header only if [ "$DONT_INSTALL_CGAL_BOOST" = false ] ; then echo "=== installing cgal and boost..."