summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-03-04 17:47:29 +0000
committerManolo Gouy <Manolo>2016-03-04 17:47:29 +0000
commita9c986752e4864835e01c866b286f7bf2956d7ef (patch)
treefcd15bc329d859c10985ece5b886ec7e6bd38f4f /src/CMakeLists.txt
parent35214afddfdee40e96d7f14ee751f6ef7c741ad8 (diff)
Complete driver-based implementation of Fl_Image_Surface.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11283 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index b4a105db0..2dca3db10 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -181,6 +181,7 @@ if (USE_X11)
drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.cxx
drivers/Xlib/Fl_Translated_Xlib_Graphics_Driver.cxx
drivers/Xlib/Fl_Xlib_Copy_Surface.cxx
+ drivers/Xlib/Fl_Xlib_Image_Surface.cxx
)
if (USE_XFT)
set(DRIVER_FILES ${DRIVER_FILES}
@@ -197,6 +198,7 @@ if (USE_X11)
drivers/X11/Fl_X11_Window_Driver.H
drivers/Quartz/Fl_Quartz_Graphics_Driver.H
drivers/Xlib/Fl_Xlib_Copy_Surface.H
+ drivers/Xlib/Fl_Xlib_Image_Surface.H
)
elseif (USE_SDL)
@@ -244,6 +246,7 @@ elseif (APPLE)
drivers/Quartz/Fl_Quartz_Graphics_Driver_arci.cxx
drivers/Quartz/Fl_Quartz_Graphics_Driver_line_style.cxx
drivers/Quartz/Fl_Quartz_Copy_Surface.cxx
+ drivers/Quartz/Fl_Quartz_Image_Surface.cxx
drivers/Cocoa/Fl_Cocoa_Window_Driver.cxx
drivers/Cocoa/Fl_Cocoa_Screen_Driver.cxx
drivers/Darwin/Fl_Darwin_System_Driver.cxx
@@ -254,6 +257,7 @@ elseif (APPLE)
drivers/Cocoa/Fl_Cocoa_Window_Driver.H
drivers/Quartz/Fl_Quartz_Graphics_Driver.H
drivers/Quartz/Fl_Quartz_Copy_Surface.H
+ drivers/Quartz/Fl_Quartz_Image_Surface.H
)
else ()
@@ -273,6 +277,7 @@ else ()
drivers/GDI/Fl_GDI_Graphics_Driver_rect.cxx
drivers/GDI/Fl_GDI_Graphics_Driver_vertex.cxx
drivers/GDI/Fl_GDI_Copy_Surface.cxx
+ drivers/GDI/Fl_GDI_Image_Surface.cxx
)
set(DRIVER_HEADER_FILES
drivers/WinAPI/Fl_WinAPI_System_Driver.H
@@ -280,6 +285,7 @@ else ()
drivers/WinAPI/Fl_WinAPI_Window_Driver.H
drivers/GDI/Fl_GDI_Graphics_Driver.H
drivers/GDI/Fl_GDI_Copy_Surface.H
+ drivers/GDI/Fl_GDI_Image_Surface.H
)
endif (USE_X11)