summaryrefslogtreecommitdiff
path: root/CMake
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2018-06-19 10:33:41 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2018-06-19 10:33:41 +0000
commitba58edb33c3e8665cb872548270ee4e98c4ec150 (patch)
treeb797ca5788667ca44c7f48ed32af49ef44408066 /CMake
parente34c06ffc90fc20258fcf9def7b820fd71a36055 (diff)
Add missing winsock dll to variables.cmake (fixes fltk-config).
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12948 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'CMake')
-rw-r--r--CMake/variables.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMake/variables.cmake b/CMake/variables.cmake
index ed4308cf9..4edf8b749 100644
--- a/CMake/variables.cmake
+++ b/CMake/variables.cmake
@@ -45,7 +45,7 @@ endif (DEBUG_VARIABLES_CMAKE)
# FIXME: check fontconfig conditions (only if Xft is used or ...)
if (WIN32)
- list (APPEND FLTK_LDLIBS -lole32 -luuid -lcomctl32)
+ list (APPEND FLTK_LDLIBS -lole32 -luuid -lcomctl32 -lws2_32)
elseif (APPLE AND OPTION_APPLE_SDL)
# FIXME: do nothing?
elseif (APPLE AND NOT OPTION_APPLE_X11)