diff options
author | Brian <[email protected]> | 2007-09-12 10:12:06 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-09-12 10:12:06 -0600 |
commit | 949d0532f05d30cc4b455f027f1ec2b4b3b621da (patch) | |
tree | 181574abe23bde0025745295a69a4084a6241342 /docs | |
parent | 96efc76d7418d1d6591fc89c89e50de6458d339f (diff) |
updated with pkg-config info
Diffstat (limited to 'docs')
-rw-r--r-- | docs/install.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/install.html b/docs/install.html index 0a361430697..041e27b8331 100644 --- a/docs/install.html +++ b/docs/install.html @@ -306,6 +306,26 @@ This is a handy way to compare multiple OpenGL implementations. </p> +<H3>1.5 pkg-config support</H3> + +<p> +Running <code>make install</code> will install package configuration files +for the pkg-config utility. +</p> + +<p> +When compiling your OpenGL application you can use pkg-config to determine +the proper compiler and linker flags. +</p> + +<p> +For example, compiling and linking a GLUT application can be done with: +</p> +<pre> + gcc `pkg-config --cflags --libs glut` mydemo.c -o mydemo +</pre> + +<br> <a name="windows"> <H2>2. Windows Compilation and Installation</H1> |