From 578d193b62663f0b54084a46f5c58ccd7227e23f Mon Sep 17 00:00:00 2001 From: Neal Probert Date: Tue, 19 Apr 2022 13:41:30 -0400 Subject: [PATCH] Added Qt to bashrc --- dot/bashrc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dot/bashrc b/dot/bashrc index 522d3b3..fda32c5 100644 --- a/dot/bashrc +++ b/dot/bashrc @@ -1,5 +1,13 @@ # NTCNA V2X development +# QT +QTVER=5.15.2 +#QTVER=6.3.0 +if [ -d /opt/Qt/$QTVER ]; then + export PATH=/opt/Qt/$QTVER/gcc_64/bin:$PATH + export LD_LIBRARY_PATH=/opt/Qt/$QTVER/gcc_64/lib +fi + # Python and VirtualEnv if [ -d ~/.local/bin ]; then export PATH=~/.local/bin:$PATH