Lines Matching +full:pkg +full:- +full:config
44 - Do _not_ include the OpenGL headers yourself, as GLFW does this for you
45 - Do _not_ include `windows.h` or other platform-specific headers unless you
47 - If you _do_ need to include such headers, do it _before_ including
116 GLFW is essentially a wrapper of various platform-specific APIs and therefore
123 hard-coded into your build environment. See the section for your development
124 environment below. On Linux and other Unix-like operating systems, the list
180 This adds all link-time dependencies of GLFW as it is currently configured,
261 @subsection build_link_pkgconfig With makefiles and pkg-config on Unix
263 GLFW supports [pkg-config](http://www.freedesktop.org/wiki/Software/pkg-config/),
264 and the `glfw3.pc` pkg-config file is generated when the GLFW library is built
265 and is installed along with it. A pkg-config file describes all necessary
266 compile-time and link-time flags and dependencies needed to use a library. When
270 A typical compile and link command-line when using the static version of the
274 cc `pkg-config --cflags glfw3` -o myprog myprog.c `pkg-config --static --libs glfw3`
278 `--static` flag.
281 cc `pkg-config --cflags glfw3` -o myprog myprog.c `pkg-config --libs glfw3`
288 env PKG_CONFIG_PATH=path/to/glfw/src cc `pkg-config --cflags glfw3` -o myprog myprog.c `pkg-config …
295 `glu` pkg-config package.
298 cc `pkg-config --cflags glfw3 glu` -o myprog myprog.c `pkg-config --libs glfw3 glu`
308 cc `pkg-config --cflags glfw3 glu` -o myprog myprog.c `pkg-config --static --libs glfw3` `pkg-confi…
322 @subsection build_link_osx With command-line on OS X
324 It is recommended that you use [pkg-config](@ref build_link_pkgconfig) when
327 to add the required frameworks and libraries to your command-line yourself using
328 the `-l` and `-framework` switches.
333 cc -o myprog myprog.c -lglfw -framework Cocoa -framework OpenGL -framework IOKit -framework CoreVid…
336 If you are using the static library, named `libglfw3.a`, substitute `-lglfw3`
337 for `-lglfw`.
340 against it from the command-line.
344 `libGL`-style OpenGL libraries, they are for use with the X Window System and