summaryrefslogtreecommitdiffstats
path: root/doc/tutorial.doc
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/tutorial.doc
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/tutorial.doc')
-rw-r--r--doc/tutorial.doc14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/tutorial.doc b/doc/tutorial.doc
index e20cd775c..12c2cb2ca 100644
--- a/doc/tutorial.doc
+++ b/doc/tutorial.doc
@@ -185,14 +185,14 @@ You should now try to compile and run this program.
To compile a C++ application you need to create a makefile. The
easiest way to create a makefile for TQt is to use the \link
-qmake-manual.book qmake\endlink build tool supplied with Qt. If you've
+tqmake-manual.book tqmake\endlink build tool supplied with Qt. If you've
saved \c main.cpp in its own directory, all you have to do is:
\code
-qmake -project
-qmake
+tqmake -project
+tqmake
\endcode
-The first command tells \link qmake-manual.book qmake\endlink to
+The first command tells \link tqmake-manual.book tqmake\endlink to
create a \c .pro (project) file. The second command tells it to create
a (platform-specific) makefile based on the project file. You should
now be able to type \c make (or \c nmake if you're using Visual
@@ -829,11 +829,11 @@ Creating a makefile for a multi-file application is no different from
creating one for a single-file application. If you've saved all the
files in this example in their own directory, all you have to do is:
\code
-qmake -project
-qmake
+tqmake -project
+tqmake
\endcode
-The first command tells \link qmake-manual.book qmake\endlink to
+The first command tells \link tqmake-manual.book tqmake\endlink to
create a \c .pro (project) file. The second command tells it to create
a (platform-specific) makefile based on the project file. You should
now be able to type \c make (or \c nmake if you're using Visual