diff options
Diffstat (limited to 'doc/tutorial.doc')
-rw-r--r-- | doc/tutorial.doc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/tutorial.doc b/doc/tutorial.doc index 57f1482bb..f36706190 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 |