diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-09-27 16:03:48 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-09-27 16:03:48 +0900 |
commit | 3e98ce7f85f06e95ad121c6f541d14464d85919e (patch) | |
tree | f02992c00911ec6ba24f243aebf96d98fa0d39a1 /INSTALL | |
parent | 9f5d59f33644aaadd7af43db86734a3294250a02 (diff) | |
download | tqt3-3e98ce7f85f06e95ad121c6f541d14464d85919e.tar.gz tqt3-3e98ce7f85f06e95ad121c6f541d14464d85919e.zip |
qt -> tqt conversion:
QTDIR -> TQTDIR
QTDOC -> TQTDOC
INCDIR_QT -> INCDIR_TQT
LIBDIR_QT -> LIBDIR_TQT
QT_INC -> TQT_INC
QT_LIB -> TQT_LIB
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -25,7 +25,7 @@ the directories where you choose to install Qt. depending on your shell) in your home directory. Create the file if it is not there already. - QTDIR - the directory in which you're building Qt + TQTDIR - the directory in which you're building Qt PATH - to locate the moc program and other TQt tools MANPATH - to access the TQt man pages LD_LIBRARY_PATH - for the shared TQt library @@ -41,22 +41,22 @@ the directories where you choose to install Qt. In .profile (if your shell is bash, ksh, zsh or sh), add the following lines: - QTDIR=/usr/local/qt - PATH=$QTDIR/bin:$PATH - MANPATH=$QTDIR/doc/man:$MANPATH - LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH + TQTDIR=/usr/local/qt + PATH=$TQTDIR/bin:$PATH + MANPATH=$TQTDIR/doc/man:$MANPATH + LD_LIBRARY_PATH=$TQTDIR/lib:$LD_LIBRARY_PATH - export QTDIR PATH MANPATH LD_LIBRARY_PATH + export TQTDIR PATH MANPATH LD_LIBRARY_PATH In .login (in case your shell is csh or tcsh), add the following lines: - setenv QTDIR /usr/local/qt - setenv PATH $QTDIR/bin:$PATH - setenv MANPATH $QTDIR/doc/man:$MANPATH - setenv LD_LIBRARY_PATH $QTDIR/lib:$LD_LIBRARY_PATH + setenv TQTDIR /usr/local/qt + setenv PATH $TQTDIR/bin:$PATH + setenv MANPATH $TQTDIR/doc/man:$MANPATH + setenv LD_LIBRARY_PATH $TQTDIR/lib:$LD_LIBRARY_PATH After you have done this, you will need to login again, or - re-source the profile before continuing, so that at least $QTDIR + re-source the profile before continuing, so that at least $TQTDIR and $PATH are set. Without these the installation will halt with an error message. @@ -93,7 +93,7 @@ the directories where you choose to install Qt. information on known issues. - At this point you have binaries created in $QTDIR (eg. $QTDIR/lib/ + At this point you have binaries created in $TQTDIR (eg. $TQTDIR/lib/ contains libtqt.so). If, however, you would like to have your Qt installed in a non-local installation you can run configure with options splitting TQt into different areas for example: @@ -108,7 +108,7 @@ the directories where you choose to install Qt. This will install TQt onto your machine using the paths you've set. (See ./configure -help for more information). If you choose to install TQt like this, remember that you must set your - LD_LIBRARY_PATH to match your -libdir and your QTDIR to your + LD_LIBRARY_PATH to match your -libdir and your TQTDIR to your -headerdir (as described in (2) above). |