summaryrefslogtreecommitdiff
path: root/CMake
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2024-08-06 17:27:10 +0200
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2024-08-06 17:27:10 +0200
commit713f0b0f64992de8eace6f97d95f4d582f31d9ad (patch)
tree7cfcfb2e7f2e3a11f7e0bd322c740329a470426b /CMake
parent44a8508ffe16672f1873e3a15e64c748cc536cf0 (diff)
Add -lwinspool necessary for new class Fl_PDF_File_Surface
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 cb5d62481..4d1be9f2d 100644
--- a/CMake/variables.cmake
+++ b/CMake/variables.cmake
@@ -40,7 +40,7 @@ endif(DEBUG_VARIABLES_CMAKE)
# FIXME: check fontconfig conditions (only if Xft is used or ...)
if(WIN32)
- list(APPEND FLTK_LDLIBS -lole32 -luuid -lcomctl32 -lws2_32)
+ list(APPEND FLTK_LDLIBS -lole32 -luuid -lcomctl32 -lws2_32 -lwinspool)
elseif(APPLE AND NOT FLTK_BACKEND_X11)
list(APPEND FLTK_LDLIBS ${FLTK_COCOA_FRAMEWORKS})
elseif(FLTK_BACKEND_WAYLAND)