summaryrefslogtreecommitdiffstats
path: root/doc/html/porting.html
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-11-04 13:01:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-01-04 22:55:45 +0900
commit6b5960c0e9ea768759c03be6532009409fa958ce (patch)
treed9deedd7df48aef68e2b456d3343f634283d0df6 /doc/html/porting.html
parent074d585cc3a076958b986ff7cf31eb15d1e8412a (diff)
downloadtqt-feat/tqmake.tar.gz
tqt-feat/tqmake.zip
rename qmake to tqmakefeat/tqmake
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/html/porting.html')
-rw-r--r--doc/html/porting.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/html/porting.html b/doc/html/porting.html
index 332628e26..8dfeab607 100644
--- a/doc/html/porting.html
+++ b/doc/html/porting.html
@@ -149,13 +149,13 @@ library is static. If you just use the default configuration you
don't need to set certain preprocessor defines. In TQt 3.0, the
default configuration of the TQt library is to build it as a shared
library, therefore the preprocessor define <tt>QT_DLL</tt> is needed.
-<p> If you use tmake with TQt 2.x, and now use qmake with TQt 3.x, then the
+<p> If you use tmake with TQt 2.x, and now use tqmake with TQt 3.x, then the
cause of the problem is with the project file. In the project file,
there is usually line that looks like:
<p> <tt>CONFIG</tt> = ...
<p> this should be changed to
<p> <tt>CONFIG</tt> += ...
-<p> so that qmake can look at the configuration that TQt was built with and
+<p> so that tqmake can look at the configuration that TQt was built with and
set any relevant preprocessor defines in the makefile.
<p> <a name="Headers"></a>
<h2> Header file inclusion changes