Added note on gdi32 as non-defaultlib on MinGW.
Some versions of MinGW do not include gdi32 among the default libraries for Win32 subsystem binaries.
This commit is contained in:
parent
4eea3175f1
commit
b17bed28c8
@ -85,8 +85,10 @@ The static version of the GLFW library is named `glfw3`. When using this
|
|||||||
version, it is also necessary to link with some libraries that GLFW uses.
|
version, it is also necessary to link with some libraries that GLFW uses.
|
||||||
|
|
||||||
When linking a program under Windows that uses the static version of GLFW, you
|
When linking a program under Windows that uses the static version of GLFW, you
|
||||||
must link with `opengl32`. If you are using GLU, you must also link with
|
must link with `opengl32`. On some versions of MinGW, you must also explicitly
|
||||||
`glu32`.
|
link with `gdi32`, while other versions of MinGW include it in the set of
|
||||||
|
default libraries along with other dependencies like `user32` and `kernel32`.
|
||||||
|
If you are using GLU, you must also link with `glu32`.
|
||||||
|
|
||||||
The link library for the GLFW DLL is named `glfw3dll`. When compiling a program
|
The link library for the GLFW DLL is named `glfw3dll`. When compiling a program
|
||||||
that uses the DLL version of GLFW, you need to define the `GLFW_DLL` macro
|
that uses the DLL version of GLFW, you need to define the `GLFW_DLL` macro
|
||||||
|
Loading…
Reference in New Issue
Block a user