Removing semi-colon at the end of namespace
[qt-netbsd.git] / INSTALL
blob092dea00f02d3b0e26c61a7e1846b85abcbdc2b2
1         INSTALLING Qt Source Package Version %VERSION%.
3 1.  If you have the commercial edition of Qt, install your license
4     file as $HOME/.qt-license if you are on Unix. If you are on
5     Windows, copy the license file into your home directory
6     (this may be known as the userprofile environment variable) and
7     rename it to .qt-license. For example on Windows XP,
8     %USERPROFILE% should be something like C:\Documents and
9     Settings\username.
11     For the open source version you do not need a license file.
13 2.  Unpack the archive if you have not done so already:
15     On Unix (X11 and Mac):
16         cd /tmp
17         gunzip %DISTNAME%.tar.gz        # uncompress the archive
18         tar xvf %DISTNAME%.tar          # unpack it
20     This creates the directory /tmp/%DISTNAME% containing the files
21     from the archive. We only support the GNU version of the tar
22     archiving utility. Note that on some systems it is called gtar.
24     On Windows, uncompress the files into the directory you want Qt
25     installed, e.g. C:\Qt\%VERSION%.
27     NOTE: The install path must not contain any spaces.
29 4. Environment variables
31    In order to build and use Qt, the PATH environment variable needs
32    to be extended to locate qmake, moc and other Qt tools
34    On Windows, this is done by adding C:\Qt\%VERSION%\bin
35    to the PATH variable. On Unix, this is done by adding
36    /tmp/%DISTNAME%.
38    For newer versions of Windows, PATH can be extended through
39    "Control Panel->System->Advanced->Environment variables" and for
40    older versions by editing C:\autoexec.bat.
42    In .profile (if your Unix shell is bash), add the following lines:
44         PATH=/usr/local/Trolltech/Qt-%VERSION%/bin:$PATH
45         export PATH
47    In .login (in case your Unix shell is csh or tcsh), add the following line:
49         setenv PATH /usr/local/Trolltech/Qt-%VERSION%/bin:$PATH
51    If you use a different Unix shell, please modify your environment
52    variables accordingly.
54    For some X11 compilers that do not support rpath you must also
55    extended the LD_LIBRARY_PATH environment variable to include
56    /usr/local/Trolltech/Qt-%VERSION%/lib. On Linux or Mac with GCC
57    this step is not needed.
59 4.  Building
61 4.1 Building on Unix
63     To configure the Qt library for your machine type, run the
64     ./configure script in the package directory.
66     By default, Qt is configured for installation in the
67     /usr/local/Trolltech/Qt-%VERSION% directory, but this can be
68     changed by using the -prefix option.
70         cd /tmp/%DISTNAME%
71         ./configure
73     Type "./configure -help" to get a list of all available options.
75     To create the library and compile all the demos, examples, tools,
76     and tutorials, type:
78         make
80     If you did not configure Qt using the -prefix-install option,
81     you need to install the library, demos, examples, tools, and
82     tutorials in the appropriate place. To do this, type:
84         su -c "make install"
86     and enter the root password. On some systems, you have to use the
87     sudo command as follows:
89         sudo make install
91     and enter your password, this requires that you have administrator access
92     to your machine.
94     Note that on some systems the make utility is named differently,
95     e.g. gmake. The configure script tells you which make utility to
96     use.
98     If you need to reconfigure and rebuild Qt from the same location,
99     ensure that all traces of the previous configuration are removed
100     by entering the build directory and typing
102         make confclean
104     before running the configure script again.
106 4.2 Building on Windows
108     To configure the Qt library for your machine type:
110         C:
111         cd \Qt\%VERSION%
112         configure
114     Type "configure -help" to get a list of all available options.
116     If you are using the "-direct3d" option, make sure that you have
117     the Direct3D SDK installed, and that you have run the
118     %DXSDK_DIR%\Utilities\Bin\dx_setenv.cmd command, before attempting
119     to run configure.
121     The actual commands needed to build Qt depends on your development
122     system. For Microsoft Visual Studio to create the library and
123     compile all the demos, examples, tools and tutorials type:
125         nmake
127     If you need to reconfigure and rebuild Qt from the same location,
128     ensure that all traces of the previous configuration are removed
129     by entering the build directory and typing
131         nmake confclean
133     before running the configure script again.
135 5.  That's all. Qt is now installed.
137     If you are new to Qt, we suggest that you take a look at the demos
138     and examples to see Qt in action. Run the Qt Examples and Demos
139     either by typing 'qtdemo' on the command line or through the
140     desktop's Start menu.
142     You might also want to try the following links:
144         http://qt.nokia.com/doc/%VERSION%/how-to-learn-qt.html
145         http://qt.nokia.com/doc/%VERSION%/tutorial.html
146         http://qt.nokia.com/developer
148     We hope you will enjoy using Qt. Good luck!