summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2016-01-31 00:39:57 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2016-01-31 00:39:57 +0000
commit5c32d3b24ceec2005c38ec7e3335fead43b26d1d (patch)
tree1453890859ba59b6ccc35715730045a91965d5cf /src/CMakeLists.txt
parent6cc67c18f24d76ce890e16fb9e55217b8665680b (diff)
Update build system to compile all drivers as indiviual objects.
Removed obsolete files that served only one purpose: to #include different driver files. Updated CMake and Makefiles to reflect the changes. Build tested with: - MinGW + configure/make - MinGW + CMake/make - Visual Studio 2010 generated by CMake git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11092 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r--src/CMakeLists.txt16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index cc8c7e59b..feda5cabb 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -105,7 +105,6 @@ set(CPPFILES
filename_match.cxx
filename_setext.cxx
fl_arc.cxx
- fl_arci.cxx
fl_ask.cxx
fl_boxtype.cxx
fl_color.cxx
@@ -114,7 +113,6 @@ set(CPPFILES
fl_diamond_box.cxx
fl_dnd.cxx
fl_draw.cxx
- fl_draw_image.cxx
fl_draw_pixmap.cxx
fl_engraved_label.cxx
fl_file_dir.cxx
@@ -133,7 +131,6 @@ set(CPPFILES
fl_round_box.cxx
fl_rounded_box.cxx
fl_set_font.cxx
- fl_set_fonts.cxx
fl_scroll_area.cxx
fl_shadow_box.cxx
fl_shortcut.cxx
@@ -153,7 +150,6 @@ if (USE_X11)
# X11 (including APPLE with X11)
- # FILE(GLOB DRIVER_FILES drivers/Xlib/Fl_Xlib_Graphics_Driver_*.cxx)
set(DRIVER_FILES
drivers/Xlib/Fl_Xlib_Graphics_Driver_arci.cxx
drivers/Xlib/Fl_Xlib_Graphics_Driver_color.cxx
@@ -176,7 +172,6 @@ elseif (APPLE)
# Apple Quartz
- # FILE(GLOB DRIVER_FILES drivers/Quartz/Fl_Quartz_Graphics_Driver_*.cxx)
set(DRIVER_FILES
drivers/Quartz/Fl_Quartz_Display_Device.cxx
drivers/Quartz/Fl_Quartz_Graphics_Driver.cxx
@@ -193,7 +188,16 @@ elseif (APPLE)
else ()
# Windows (GDI)
- # not yet "converted"
+
+ set(DRIVER_FILES
+ drivers/GDI/Fl_GDI_Graphics_Driver_arci.cxx
+ drivers/GDI/Fl_GDI_Graphics_Driver_color.cxx
+ drivers/GDI/Fl_GDI_Graphics_Driver_font.cxx
+ drivers/GDI/Fl_GDI_Graphics_Driver_image.cxx
+ drivers/GDI/Fl_GDI_Graphics_Driver_line_style.cxx
+ drivers/GDI/Fl_GDI_Graphics_Driver_rect.cxx
+ drivers/GDI/Fl_GDI_Graphics_Driver_vertex.cxx
+ )
endif (USE_X11)