From 3e98ce7f85f06e95ad121c6f541d14464d85919e Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 27 Sep 2018 16:03:48 +0900 Subject: 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 --- doc/html/qmake-manual-8.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/html/qmake-manual-8.html') diff --git a/doc/html/qmake-manual-8.html b/doc/html/qmake-manual-8.html index bfa3cb044..b22e6dce5 100644 --- a/doc/html/qmake-manual-8.html +++ b/doc/html/qmake-manual-8.html @@ -383,7 +383,7 @@ app {

This list will go before all builtin dependencies.

QMAKE_INCDIR_OPENGL

This variable contains the location of OpenGL header files to be added to INCLUDEPATH when building an application with OpenGL support. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified.

-
QMAKE_INCDIR_QT
+
QMAKE_INCDIR_TQT

This variable contains the location of all known header file paths to be added to INCLUDEPATH when building a TQt application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified.

QMAKE_INCDIR_THREAD

This variable contains the location of all known header file paths to be added to INCLUDEPATH when building a multi-threaded application. The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified.

@@ -430,7 +430,7 @@ app {

This variable contains the list of all directories to look in to resolve dependencies. This will be used when crawling through 'included' files.

QMAKE_LIBDIR_OPENGL

This variable contains the location of the OpenGL library directory.The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified.

-
QMAKE_LIBDIR_QT
+
QMAKE_LIBDIR_TQT

This variable contains the location of the TQt library directory.The value of this variable is typically handled by qmake or qmake.conf and rarely needs to be modified.

QMAKE_LIBDIR_X11

This is used on Unix platforms only

@@ -571,7 +571,7 @@ OPTIONS = standard custom

This function will test if file exists. If the file exists, then it will succeed; otherwise it will fail. You can specify a regular expression in file and it will succeed if any file matches the regular expression specified.

For example:

-exists( $(QTDIR)/lib/libtqt-mt* ) {
+exists( $(TQTDIR)/lib/libtqt-mt* ) {
       message( "Configuring for multi-threaded TQt..." )
       CONFIG += thread
 }
@@ -645,7 +645,7 @@ QMAKE_VERS = $$[QMAKE_VERSION]
 

qmake requires a platform and compiler description file which contains many default values used to generate appropriate makefiles. The standard TQt distribution comes with many of these files, located in the 'mkspecs' subdirectory of the TQt installation.

The QMAKESPEC environment variable can contain any of the following:

  • A complete path to a directory containing a qmake.conf file. In this case qmake will open the qmake.conf file from within that directory. If the file does not exist, qmake will exit with an error.

    -
  • The name of a platform-compiler combination. In this case, qmake will search in the directory specified by the QTDIR environment variable.

    +
  • The name of a platform-compiler combination. In this case, qmake will search in the directory specified by the TQTDIR environment variable.

Note: the QMAKESPEC path will automatically be added to the INCLUDEPATH system variable.

INSTALLS

It is common on UNIX to be able to install from the same utility as you build with (e.g make install). For this qmake has introduce the concept of an install set. The notation for this is quite simple, first you fill in an "object" in qmake for example:

-- cgit v1.2.1