summaryrefslogtreecommitdiff
path: root/src/fl_set_fonts.cxx
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/fl_set_fonts.cxx
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/fl_set_fonts.cxx')
-rw-r--r--src/fl_set_fonts.cxx43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/fl_set_fonts.cxx b/src/fl_set_fonts.cxx
deleted file mode 100644
index f65d6f85e..000000000
--- a/src/fl_set_fonts.cxx
+++ /dev/null
@@ -1,43 +0,0 @@
-//
-// "$Id$"
-//
-// More font utilities for the Fast Light Tool Kit (FLTK).
-//
-// Copyright 1998-2010 by Bill Spitzak and others.
-//
-// This library is free software. Distribution and use rights are outlined in
-// the file "COPYING" which should have been included with this file. If this
-// file is missing or damaged, see the license at:
-//
-// http://www.fltk.org/COPYING.php
-//
-// Please report all bugs and problems on the following page:
-//
-// http://www.fltk.org/str.php
-//
-
-#include <FL/Fl.H>
-#include <FL/x.H>
-#include "Fl_Font.H"
-#include "flstring.h"
-#include <stdlib.h>
-
-#ifdef WIN32
-//# include "fl_set_fonts_win32.cxx"
-// now included for fl_font.cxx, but will be its own source code module in drivers/Xlib/Fl_Xlib_Graphics_Driver_font..."
-#elif defined(__APPLE__)
-# include "fl_set_fonts_mac.cxx"
-// now included for fl_font.cxx, but will be its own source code module in drivers/Xlib/Fl_Xlib_Graphics_Driver_font..."
-#elif USE_XFT
-//# include "fl_set_fonts_xft.cxx"
-// now included for fl_font.cxx, but will be its own source code module in drivers/Xlib/Fl_Xlib_Graphics_Driver_font..."
-#elif defined(FL_PORTING)
-# pragma message "FL_PORTING: implement changes in font in its own file"
-#else
-//# include "fl_set_fonts_x.cxx"
-// now included for fl_font.cxx, but will be its own source code module in drivers/Xlib/Fl_Xlib_Graphics_Driver_font..."
-#endif // WIN32
-
-//
-// End of "$Id$".
-//