summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-10-19 16:26:51 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-10-19 16:26:51 +0000
commitf31fe66f8cc45b6a641a6271e8fee0f74f7a3053 (patch)
tree9bb5695133e6d31d00c10640e9ecc76696b4ac86
parent461002c3ad062ea4a34c2694cce40a6a7190967e (diff)
Put all OpenGL stuff back in FLTKDLL; no separate shared
libraries under WIN32 since WIN32 is so braindead about export/import crap anyways... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1642 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--CHANGES8
-rw-r--r--src/fl_line_style.cxx4
-rw-r--r--visualc/fltk.dsw12
-rw-r--r--visualc/fltkdll.dsp211
-rw-r--r--visualc/fltkgldll.dsp232
5 files changed, 183 insertions, 284 deletions
diff --git a/CHANGES b/CHANGES
index 7c9cbf590..4b01dd924 100644
--- a/CHANGES
+++ b/CHANGES
@@ -42,6 +42,14 @@ CHANGES IN FLTK 1.1.0b4
png_destroy_read_struct() if the older
png_read_destroy() function is not available.
+ - The WIN32 DLL library now includes the OpenGL widgets.
+ This is a simpler solution for the export/import
+ dillemma under WIN32, as OpenGL and non-OpenGL symbols
+ need to be exported at different times with the
+ separate library scheme. Since OpenGL is standard
+ under Windows, this is less of a problem than under
+ UNIX...
+
CHANGES IN FLTK 1.1.0b3
diff --git a/src/fl_line_style.cxx b/src/fl_line_style.cxx
index 65993abe1..9122a2f5f 100644
--- a/src/fl_line_style.cxx
+++ b/src/fl_line_style.cxx
@@ -12,7 +12,7 @@ void fl_line_style(int style, int width, char* dashes) {
// they should be different (same graphics cards, etc., right?) MRS
static DWORD Cap[4]= {PS_ENDCAP_FLAT, PS_ENDCAP_FLAT, PS_ENDCAP_ROUND, PS_ENDCAP_SQUARE};
static DWORD Join[4]={PS_JOIN_ROUND, PS_JOIN_MITER, PS_JOIN_ROUND, PS_JOIN_BEVEL};
- int s1 = PS_GEOMETRIC | Cap[(style>>8)&3] | Join[(style>>12)&3];
+ int s1 = Cap[(style>>8)&3] | Join[(style>>12)&3];
DWORD a[16]; int n = 0;
if (dashes && dashes[0]) {
s1 |= PS_USERSTYLE;
@@ -21,6 +21,8 @@ void fl_line_style(int style, int width, char* dashes) {
s1 |= style & 0xff; // allow them to pass any low 8 bits for style
}
if ((style || n) && !width) width = 1; // fix cards that do nothing for 0?
+ if (width > 1) s1 |= PS_GEOMETRIC;
+ else s1 |= PS_COSMETIC;
LOGBRUSH penbrush = {BS_SOLID,fl_RGB(),0}; // can this be fl_brush()?
HPEN newpen = ExtCreatePen(s1, width, &penbrush, n, n ? a : 0);
if (!newpen) {
diff --git a/visualc/fltk.dsw b/visualc/fltk.dsw
index 44c2d485b..e3f7bd7bb 100644
--- a/visualc/fltk.dsw
+++ b/visualc/fltk.dsw
@@ -528,18 +528,6 @@ Package=<4>
###############################################################################
-Project: "fltkgldll"=".\fltkgldll.dsp" - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
Project: "fluid"=".\fluid.dsp" - Package Owner=<4>
Package=<5>
diff --git a/visualc/fltkdll.dsp b/visualc/fltkdll.dsp
index 5b573854d..986be7d4e 100644
--- a/visualc/fltkdll.dsp
+++ b/visualc/fltkdll.dsp
@@ -645,73 +645,72 @@ DEP_CPP_FL_EN=\
# End Source File
# Begin Source File
-SOURCE=..\src\fl_file_dir.cxx
+SOURCE=..\src\Fl_File_Browser.cxx
DEP_CPP_FL_FI=\
"..\fl\enumerations.h"\
+ "..\fl\filename.h"\
"..\fl\fl.h"\
- "..\fl\fl_ask.h"\
"..\fl\fl_browser.h"\
"..\fl\fl_browser_.h"\
- "..\fl\fl_button.h"\
- "..\fl\fl_choice.h"\
+ "..\fl\fl_draw.h"\
"..\fl\fl_export.h"\
- "..\fl\fl_file_chooser.h"\
- "..\fl\fl_filebrowser.h"\
- "..\fl\fl_filechooser.h"\
- "..\fl\fl_fileicon.h"\
+ "..\FL\Fl_File_Browser.H"\
+ "..\FL\Fl_File_Icon.H"\
"..\fl\fl_group.h"\
- "..\fl\fl_input.h"\
- "..\fl\fl_input_.h"\
- "..\fl\fl_menu_.h"\
- "..\fl\fl_menu_item.h"\
- "..\fl\fl_return_button.h"\
"..\fl\fl_scrollbar.h"\
"..\fl\fl_slider.h"\
"..\fl\fl_valuator.h"\
"..\fl\fl_widget.h"\
- "..\fl\fl_window.h"\
".\config.h"\
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_File_Browser.cxx
+SOURCE=..\src\Fl_File_Chooser.cxx
DEP_CPP_FL_FIL=\
"..\fl\enumerations.h"\
- "..\fl\filename.h"\
"..\fl\fl.h"\
+ "..\fl\fl_ask.h"\
+ "..\fl\fl_bitmap.h"\
"..\fl\fl_browser.h"\
"..\fl\fl_browser_.h"\
- "..\fl\fl_draw.h"\
+ "..\fl\fl_button.h"\
+ "..\fl\fl_choice.h"\
"..\fl\fl_export.h"\
- "..\fl\fl_filebrowser.h"\
- "..\fl\fl_fileicon.h"\
+ "..\FL\Fl_File_Browser.H"\
+ "..\fl\fl_file_chooser.h"\
+ "..\FL\Fl_File_Icon.H"\
"..\fl\fl_group.h"\
+ "..\fl\fl_image.h"\
+ "..\fl\fl_input.h"\
+ "..\fl\fl_input_.h"\
+ "..\fl\fl_menu_.h"\
+ "..\fl\fl_menu_item.h"\
+ "..\fl\fl_return_button.h"\
"..\fl\fl_scrollbar.h"\
"..\fl\fl_slider.h"\
"..\fl\fl_valuator.h"\
"..\fl\fl_widget.h"\
- ".\config.h"\
+ "..\fl\fl_window.h"\
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_File_Chooser.cxx
+SOURCE=..\src\Fl_File_Chooser2.cxx
DEP_CPP_FL_FILE=\
"..\fl\enumerations.h"\
+ "..\fl\filename.h"\
"..\fl\fl.h"\
"..\fl\fl_ask.h"\
- "..\fl\fl_bitmap.h"\
"..\fl\fl_browser.h"\
"..\fl\fl_browser_.h"\
"..\fl\fl_button.h"\
"..\fl\fl_choice.h"\
"..\fl\fl_export.h"\
- "..\fl\fl_filebrowser.h"\
- "..\fl\fl_filechooser.h"\
- "..\fl\fl_fileicon.h"\
+ "..\FL\Fl_File_Browser.H"\
+ "..\fl\fl_file_chooser.h"\
+ "..\FL\Fl_File_Icon.H"\
"..\fl\fl_group.h"\
- "..\fl\fl_image.h"\
"..\fl\fl_input.h"\
"..\fl\fl_input_.h"\
"..\fl\fl_menu_.h"\
@@ -722,14 +721,15 @@ DEP_CPP_FL_FILE=\
"..\fl\fl_valuator.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
+ "..\fl\win32.h"\
+ "..\fl\x.h"\
# End Source File
# Begin Source File
-SOURCE=..\src\Fl_File_Chooser2.cxx
-DEP_CPP_FL_FILEC=\
+SOURCE=..\src\fl_file_dir.cxx
+DEP_CPP_FL_FILE_=\
"..\fl\enumerations.h"\
- "..\fl\filename.h"\
"..\fl\fl.h"\
"..\fl\fl_ask.h"\
"..\fl\fl_browser.h"\
@@ -737,9 +737,9 @@ DEP_CPP_FL_FILEC=\
"..\fl\fl_button.h"\
"..\fl\fl_choice.h"\
"..\fl\fl_export.h"\
- "..\fl\fl_filebrowser.h"\
- "..\fl\fl_filechooser.h"\
- "..\fl\fl_fileicon.h"\
+ "..\FL\Fl_File_Browser.H"\
+ "..\fl\fl_file_chooser.h"\
+ "..\FL\Fl_File_Icon.H"\
"..\fl\fl_group.h"\
"..\fl\fl_input.h"\
"..\fl\fl_input_.h"\
@@ -751,20 +751,19 @@ DEP_CPP_FL_FILEC=\
"..\fl\fl_valuator.h"\
"..\fl\fl_widget.h"\
"..\fl\fl_window.h"\
- "..\fl\win32.h"\
- "..\fl\x.h"\
+ ".\config.h"\
# End Source File
# Begin Source File
SOURCE=..\src\Fl_File_Icon.cxx
-DEP_CPP_FL_FILEI=\
+DEP_CPP_FL_FILE_I=\
"..\fl\enumerations.h"\
"..\fl\filename.h"\
"..\fl\fl.h"\
"..\fl\fl_draw.h"\
"..\fl\fl_export.h"\
- "..\fl\fl_fileicon.h"\
+ "..\FL\Fl_File_Icon.H"\
"..\fl\fl_widget.h"\
".\config.h"\
@@ -819,6 +818,59 @@ DEP_CPP_FL_GET=\
# End Source File
# Begin Source File
+SOURCE=..\src\Fl_Gl_Choice.cxx
+DEP_CPP_FL_GL=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl.h"\
+ "..\fl\fl_export.h"\
+ "..\fl\fl_group.h"\
+ "..\fl\fl_widget.h"\
+ "..\fl\fl_window.h"\
+ "..\FL\gl.h"\
+ "..\fl\win32.h"\
+ "..\fl\x.h"\
+ "..\src\Fl_Gl_Choice.H"\
+ ".\config.h"\
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\src\Fl_Gl_Overlay.cxx
+DEP_CPP_FL_GL_=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl.h"\
+ "..\fl\fl_export.h"\
+ "..\fl\fl_gl_window.h"\
+ "..\fl\fl_group.h"\
+ "..\fl\fl_widget.h"\
+ "..\fl\fl_window.h"\
+ "..\FL\gl.h"\
+ "..\fl\win32.h"\
+ "..\fl\x.h"\
+ "..\src\Fl_Gl_Choice.H"\
+ ".\config.h"\
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\src\Fl_Gl_Window.cxx
+DEP_CPP_FL_GL_W=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl.h"\
+ "..\fl\fl_export.h"\
+ "..\fl\fl_gl_window.h"\
+ "..\fl\fl_group.h"\
+ "..\fl\fl_widget.h"\
+ "..\fl\fl_window.h"\
+ "..\FL\gl.h"\
+ "..\fl\win32.h"\
+ "..\fl\x.h"\
+ "..\src\Fl_Gl_Choice.H"\
+ ".\config.h"\
+
+# End Source File
+# Begin Source File
+
SOURCE=..\src\Fl_grab.cxx
DEP_CPP_FL_GR=\
"..\fl\enumerations.h"\
@@ -857,8 +909,8 @@ DEP_CPP_FL_HE=\
"..\fl\fl_draw.h"\
"..\fl\fl_export.h"\
"..\fl\fl_group.h"\
- "..\fl\fl_helpdialog.h"\
- "..\fl\fl_helpview.h"\
+ "..\FL\Fl_Help_Dialog.H"\
+ "..\FL\Fl_Help_View.H"\
"..\fl\fl_scrollbar.h"\
"..\fl\fl_slider.h"\
"..\fl\fl_valuator.h"\
@@ -875,7 +927,7 @@ DEP_CPP_FL_HEL=\
"..\fl\fl_draw.h"\
"..\fl\fl_export.h"\
"..\fl\fl_group.h"\
- "..\fl\fl_helpview.h"\
+ "..\FL\Fl_Help_View.H"\
"..\fl\fl_image.h"\
"..\fl\fl_pixmap.h"\
"..\fl\fl_scrollbar.h"\
@@ -1739,7 +1791,9 @@ DEP_CPP_FORMS=\
"..\fl\fl_dial.h"\
"..\fl\fl_draw.h"\
"..\fl\fl_export.h"\
+ "..\FL\Fl_File_Browser.H"\
"..\fl\fl_file_chooser.h"\
+ "..\FL\Fl_File_Icon.H"\
"..\fl\fl_formsbitmap.h"\
"..\fl\fl_formspixmap.h"\
"..\fl\fl_free.h"\
@@ -1753,6 +1807,7 @@ DEP_CPP_FORMS=\
"..\fl\fl_menu_item.h"\
"..\fl\fl_pixmap.h"\
"..\fl\fl_positioner.h"\
+ "..\fl\fl_return_button.h"\
"..\fl\fl_round_button.h"\
"..\fl\fl_scrollbar.h"\
"..\fl\fl_show_colormap.h"\
@@ -1786,7 +1841,9 @@ DEP_CPP_FORMS_=\
"..\fl\fl_dial.h"\
"..\fl\fl_draw.h"\
"..\fl\fl_export.h"\
+ "..\FL\Fl_File_Browser.H"\
"..\fl\fl_file_chooser.h"\
+ "..\FL\Fl_File_Icon.H"\
"..\fl\fl_formsbitmap.h"\
"..\fl\fl_formspixmap.h"\
"..\fl\fl_free.h"\
@@ -1846,7 +1903,9 @@ DEP_CPP_FORMS_FS=\
"..\fl\fl_dial.h"\
"..\fl\fl_draw.h"\
"..\fl\fl_export.h"\
+ "..\FL\Fl_File_Browser.H"\
"..\fl\fl_file_chooser.h"\
+ "..\FL\Fl_File_Icon.H"\
"..\fl\fl_formsbitmap.h"\
"..\fl\fl_formspixmap.h"\
"..\fl\fl_free.h"\
@@ -1860,6 +1919,7 @@ DEP_CPP_FORMS_FS=\
"..\fl\fl_menu_item.h"\
"..\fl\fl_pixmap.h"\
"..\fl\fl_positioner.h"\
+ "..\fl\fl_return_button.h"\
"..\fl\fl_round_button.h"\
"..\fl\fl_scrollbar.h"\
"..\fl\fl_show_colormap.h"\
@@ -1893,7 +1953,9 @@ DEP_CPP_FORMS_P=\
"..\fl\fl_dial.h"\
"..\fl\fl_draw.h"\
"..\fl\fl_export.h"\
+ "..\FL\Fl_File_Browser.H"\
"..\fl\fl_file_chooser.h"\
+ "..\FL\Fl_File_Icon.H"\
"..\fl\fl_formsbitmap.h"\
"..\fl\fl_formspixmap.h"\
"..\fl\fl_free.h"\
@@ -1907,6 +1969,7 @@ DEP_CPP_FORMS_P=\
"..\fl\fl_menu_item.h"\
"..\fl\fl_pixmap.h"\
"..\fl\fl_positioner.h"\
+ "..\fl\fl_return_button.h"\
"..\fl\fl_round_button.h"\
"..\fl\fl_scrollbar.h"\
"..\fl\fl_show_colormap.h"\
@@ -1933,6 +1996,76 @@ DEP_CPP_FORMS_T=\
# End Source File
# Begin Source File
+SOURCE=..\src\gl_draw.cxx
+DEP_CPP_GL_DR=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl.h"\
+ "..\fl\fl_draw.h"\
+ "..\fl\fl_export.h"\
+ "..\fl\fl_group.h"\
+ "..\fl\fl_widget.h"\
+ "..\fl\fl_window.h"\
+ "..\FL\gl.h"\
+ "..\fl\win32.h"\
+ "..\fl\x.h"\
+ "..\src\fl_font.h"\
+ "..\src\Fl_Gl_Choice.H"\
+ ".\config.h"\
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\src\gl_start.cxx
+DEP_CPP_GL_ST=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl.h"\
+ "..\fl\fl_draw.h"\
+ "..\fl\fl_export.h"\
+ "..\fl\fl_group.h"\
+ "..\fl\fl_widget.h"\
+ "..\fl\fl_window.h"\
+ "..\FL\gl.h"\
+ "..\fl\win32.h"\
+ "..\fl\x.h"\
+ "..\src\Fl_Gl_Choice.H"\
+ ".\config.h"\
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\src\glut_compatability.cxx
+DEP_CPP_GLUT_=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl.h"\
+ "..\fl\fl_export.h"\
+ "..\fl\fl_gl_window.h"\
+ "..\fl\fl_group.h"\
+ "..\fl\fl_menu_item.h"\
+ "..\fl\fl_widget.h"\
+ "..\fl\fl_window.h"\
+ "..\FL\gl.h"\
+ "..\fl\glut.h"\
+ ".\config.h"\
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\src\glut_font.cxx
+DEP_CPP_GLUT_F=\
+ "..\fl\enumerations.h"\
+ "..\fl\fl.h"\
+ "..\fl\fl_export.h"\
+ "..\fl\fl_gl_window.h"\
+ "..\fl\fl_group.h"\
+ "..\fl\fl_widget.h"\
+ "..\fl\fl_window.h"\
+ "..\FL\gl.h"\
+ "..\fl\glut.h"\
+ ".\config.h"\
+
+# End Source File
+# Begin Source File
+
SOURCE=..\src\numericsort.c
DEP_CPP_NUMER=\
"..\fl\filename.h"\
diff --git a/visualc/fltkgldll.dsp b/visualc/fltkgldll.dsp
deleted file mode 100644
index 035c14e8d..000000000
--- a/visualc/fltkgldll.dsp
+++ /dev/null
@@ -1,232 +0,0 @@
-# Microsoft Developer Studio Project File - Name="fltkgldll" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
-
-CFG=fltkgldll - Win32 Release
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE
-!MESSAGE NMAKE /f "fltkgldll.mak".
-!MESSAGE
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE
-!MESSAGE NMAKE /f "fltkgldll.mak" CFG="fltkgldll - Win32 Release"
-!MESSAGE
-!MESSAGE Possible choices for configuration are:
-!MESSAGE
-!MESSAGE "fltkgldll - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "fltkgldll - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=cl.exe
-MTL=midl.exe
-RSC=rc.exe
-
-!IF "$(CFG)" == "fltkgldll - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "fltkgldll0"
-# PROP BASE Intermediate_Dir "fltkgldll0"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "../test"
-# PROP Intermediate_Dir "fltkgldll"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
-# ADD CPP /nologo /MT /W3 /GX /Os /Ob2 /I "." /I ".." /D "FL_DLL" /D "FL_LIBRARY" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "WIN32_LEAN_AND_MEAN" /D "VC_EXTRA_LEAN" /D "WIN32_EXTRA_LEAN" /YX /c
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL"
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o /win32 "NUL"
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /machine:I386
-# ADD LINK32 opengl32.lib wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /version:1.0 /subsystem:windows /dll /pdb:"fltkgldll.pdb" /machine:I386 /out:"fltkgldll.dll"
-# SUBTRACT LINK32 /pdb:none
-
-!ELSEIF "$(CFG)" == "fltkgldll - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "fltkgldll1"
-# PROP BASE Intermediate_Dir "fltkgldll1"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "../test"
-# PROP Intermediate_Dir "fltkgldlld"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
-# ADD CPP /nologo /MTd /GX /ZI /Od /I "." /I ".." /D "FL_DLL" /D "FL_LIBRARY" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "WIN32_LEAN_AND_MEAN" /D "VC_EXTRA_LEAN" /D "WIN32_EXTRA_LEAN" /YX /c
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL"
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o /win32 "NUL"
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 opengl32.lib wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /version:1.0 /subsystem:windows /dll /pdb:"fltkgldlld.pdb" /debug /machine:I386 /out:"fltkgldlld.dll" /pdbtype:sept
-# SUBTRACT LINK32 /pdb:none /incremental:no
-
-!ENDIF
-
-# Begin Target
-
-# Name "fltkgldll - Win32 Release"
-# Name "fltkgldll - Win32 Debug"
-# Begin Source File
-
-SOURCE=..\src\Fl_Gl_Choice.cxx
-DEP_CPP_FL_GL=\
- "..\fl\enumerations.h"\
- "..\fl\fl.h"\
- "..\fl\fl_group.h"\
- "..\fl\fl_widget.h"\
- "..\fl\fl_window.h"\
- "..\FL\gl.h"\
- "..\fl\win32.h"\
- "..\fl\x.h"\
- "..\src\Fl_Gl_Choice.H"\
- ".\config.h"\
-
-NODEP_CPP_FL_GL=\
- ".\L\gl.h"\
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\src\Fl_Gl_Overlay.cxx
-DEP_CPP_FL_GL_=\
- "..\fl\enumerations.h"\
- "..\fl\fl.h"\
- "..\fl\fl_gl_window.h"\
- "..\fl\fl_group.h"\
- "..\fl\fl_widget.h"\
- "..\fl\fl_window.h"\
- "..\FL\gl.h"\
- "..\fl\win32.h"\
- "..\fl\x.h"\
- "..\src\Fl_Gl_Choice.H"\
- ".\config.h"\
-
-NODEP_CPP_FL_GL_=\
- ".\L\gl.h"\
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\src\Fl_Gl_Window.cxx
-DEP_CPP_FL_GL_W=\
- "..\fl\enumerations.h"\
- "..\fl\fl.h"\
- "..\fl\fl_gl_window.h"\
- "..\fl\fl_group.h"\
- "..\fl\fl_widget.h"\
- "..\fl\fl_window.h"\
- "..\FL\gl.h"\
- "..\fl\win32.h"\
- "..\fl\x.h"\
- "..\src\Fl_Gl_Choice.H"\
- ".\config.h"\
-
-NODEP_CPP_FL_GL_W=\
- ".\L\gl.h"\
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\src\gl_draw.cxx
-DEP_CPP_GL_DR=\
- "..\fl\enumerations.h"\
- "..\fl\fl.h"\
- "..\fl\fl_draw.h"\
- "..\fl\fl_group.h"\
- "..\fl\fl_widget.h"\
- "..\fl\fl_window.h"\
- "..\FL\gl.h"\
- "..\fl\win32.h"\
- "..\fl\x.h"\
- "..\src\fl_font.h"\
- "..\src\Fl_Gl_Choice.H"\
- ".\config.h"\
-
-NODEP_CPP_GL_DR=\
- ".\L\gl.h"\
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\src\gl_start.cxx
-DEP_CPP_GL_ST=\
- "..\fl\enumerations.h"\
- "..\fl\fl.h"\
- "..\fl\fl_draw.h"\
- "..\fl\fl_group.h"\
- "..\fl\fl_widget.h"\
- "..\fl\fl_window.h"\
- "..\FL\gl.h"\
- "..\fl\win32.h"\
- "..\fl\x.h"\
- "..\src\Fl_Gl_Choice.H"\
- ".\config.h"\
-
-NODEP_CPP_GL_ST=\
- ".\L\gl.h"\
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\src\glut_compatability.cxx
-DEP_CPP_GLUT_=\
- "..\fl\enumerations.h"\
- "..\fl\fl.h"\
- "..\fl\fl_gl_window.h"\
- "..\fl\fl_group.h"\
- "..\fl\fl_menu_item.h"\
- "..\fl\fl_widget.h"\
- "..\fl\fl_window.h"\
- "..\FL\gl.h"\
- "..\fl\glut.h"\
- ".\config.h"\
-
-NODEP_CPP_GLUT_=\
- ".\L\gl.h"\
- ".\L\glu.h"\
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\src\glut_font.cxx
-DEP_CPP_GLUT_F=\
- "..\fl\enumerations.h"\
- "..\fl\fl.h"\
- "..\fl\fl_gl_window.h"\
- "..\fl\fl_group.h"\
- "..\fl\fl_widget.h"\
- "..\fl\fl_window.h"\
- "..\FL\gl.h"\
- "..\fl\glut.h"\
- ".\config.h"\
-
-NODEP_CPP_GLUT_F=\
- ".\L\gl.h"\
- ".\L\glu.h"\
-
-# End Source File
-# End Target
-# End Project