From ba58edb33c3e8665cb872548270ee4e98c4ec150 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Tue, 19 Jun 2018 10:33:41 +0000 Subject: [PATCH] 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 --- CMake/variables.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)