gdi32 was missing from the dependencies of sfml-window in CMake files

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1551 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
LaurentGom 2010-08-25 06:06:27 +00:00
parent a991fe8e4d
commit dda69de7e9

View File

@ -71,7 +71,7 @@ endif()
# build the list of external libraries to link
set(WINDOW_EXT_LIBS ${OPENGL_gl_LIBRARY})
if(WINDOWS)
set(WINDOW_EXT_LIBS ${WINDOW_EXT_LIBS} winmm)
set(WINDOW_EXT_LIBS ${WINDOW_EXT_LIBS} winmm gdi32)
else(LINUX)
set(WINDOW_EXT_LIBS ${WINDOW_EXT_LIBS} ${X11_X11_LIB} ${X11_Xrandr_LIB})
endif()