source: archive/setqt.xml@ 45ab6c7

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 45ab6c7 was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • Property mode set to 100644
File size: 1.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE note PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect3>
9 <title>Choosing Qt Program Versions</title>
10
11 <para>If you install both Qt4 and Qt5, you can use some simple
12 scripts to select the currently active set of Qt programs. As the
13 <systemitem class="username">root</systemitem> user, create
14 the following scripts:</para>
15
16<screen role="root"><userinput>cat &gt; /usr/bin/setqt4 &lt;&lt; 'EOF'
17<literal>if [ "x$QT5DIR" != "x/usr" ] &amp;&amp; [ "x$QT5DIR" != "x" ]; then pathremove $QT5DIR/bin; fi
18if [ "x$QT4DIR" != "x/usr" ]; then pathprepend $QT4DIR/bin; fi
19echo $PATH</literal>
20EOF</userinput></screen>
21
22<screen role="root"><userinput>cat &gt; /usr/bin/setqt5 &lt;&lt; 'EOF'
23<literal>if [ "x$QT4DIR" != "x/usr" ] &amp;&amp; [ "x$QT4DIR" != "x" ]; then pathremove $QT4DIR/bin; fi
24if [ "x$QT5DIR" != "x/usr" ]; then pathprepend $QT5DIR/bin; fi
25echo $PATH</literal>
26EOF</userinput></screen>
27
28 <para>You should now be able to use the appropriate Qt version by running
29 <command>source setqt4</command> or <command>source setqt5</command> as
30 desired. (Setting the PATH wont work in a subshell.) Another technique that
31 can be used is to create appropriate alias additions to your ~/.bashrc like
32 <command>alias setqt4='source setqt4'</command>.</para>
33
34</sect3>
Note: See TracBrowser for help on using the repository browser.