diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2016-02-10 19:49:35 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2016-02-10 19:49:35 +0000 |
| commit | e83bc2527fd412bc235f1f8743659e31b12bdc31 (patch) | |
| tree | 8c807e8b0c7af5f8ec1c67da1eec8e17bf4ad963 /src/Makefile | |
| parent | 478d6336200d18630abd0d77c512e28fb2b931d0 (diff) | |
Basic Screen Driver Structure. LIMBO!
Creating the basic structure for a screen driver system.
OS X works X11 and WinAPI are in limbo and will be fixed in the next hour or so.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11148 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index 8740353fd..b6edb372d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -74,6 +74,7 @@ CPPFILES = \ Fl_Return_Button.cxx \ Fl_Roller.cxx \ Fl_Round_Button.cxx \ + Fl_Screen_Driver.cxx \ Fl_Scroll.cxx \ Fl_Scrollbar.cxx \ Fl_Shared_Image.cxx \ @@ -231,7 +232,10 @@ QUARTZCPPFILES = \ drivers/Quartz/Fl_Quartz_Graphics_Driver_image.cxx \ drivers/Quartz/Fl_Quartz_Printer_Graphics_Driver.cxx \ drivers/Quartz/Fl_Quartz_Graphics_Driver_arci.cxx \ - drivers/Quartz/Fl_Quartz_Graphics_Driver_line_style.cxx + drivers/Quartz/Fl_Quartz_Graphics_Driver_line_style.cxx \ + drivers/Cocoa/Fl_Cocoa_Window_Driver.cxx \ + drivers/Cocoa/Fl_Cocoa_Screen_Driver.cxx \ + drivers/Darwin/Fl_Darwin_System_Driver.cxx XLIBCPPFILES = \ drivers/Xlib/Fl_Xlib_Graphics_Driver.cxx \ @@ -240,7 +244,8 @@ XLIBCPPFILES = \ drivers/Xlib/Fl_Xlib_Graphics_Driver_image.cxx \ drivers/Xlib/Fl_Xlib_Graphics_Driver_line_style.cxx \ drivers/Xlib/Fl_Xlib_Graphics_Driver_rect.cxx \ - drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.cxx + drivers/Xlib/Fl_Xlib_Graphics_Driver_vertex.cxx \ + drivers/X11/Fl_X11_Screen_Driver.cxx XLIBFONTFILES = \ drivers/Xlib/Fl_Xlib_Graphics_Driver_font_x.cxx @@ -256,7 +261,8 @@ GDICPPFILES = \ 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 + drivers/GDI/Fl_GDI_Graphics_Driver_vertex.cxx \ + drivers/WinAPI/Fl_WinAPI_Screen_Driver.cxx ################################################################ FLTKFLAGS = -DFL_LIBRARY |
