forked from GillesDebunne/libQGLViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
30 lines (16 loc) · 759 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
l i b Q G L V i e w e r I n s t a l l a t i o n
libQGLViewer requires the Qt library, available from Digia.
In order to compile the library from its sources:
- On UNIX platforms, using qmake, simply type (see doc/installUnix.html for details):
> qmake
> make
> make install [optional]
- On UNIX platforms, using cmake, simply type:
> mkdir build; cd build
> cmake ..
> make all install
Note: cmake will install a pkg-config file, that allows you to easily link with
libQGLViewer setting `PKG_CONFIG_PATH` and relying on `pkg-config`
(https://en.wikipedia.org/wiki/Pkg-config).
- For Windows installation, see doc/installWindows.html.
See doc/compilation.html for details on compiling programs that use libQGLViewer.