diff --git a/samples/font/font.rc b/samples/font/font.rc new file mode 100644 index 0000000000..55808f0e34 --- /dev/null +++ b/samples/font/font.rc @@ -0,0 +1,4 @@ +mondrian ICON "mondrian.ico" +#include "wx/msw/wx.rc" + + diff --git a/samples/font/makefile.vc b/samples/font/makefile.vc new file mode 100644 index 0000000000..4069d07bfd --- /dev/null +++ b/samples/font/makefile.vc @@ -0,0 +1,18 @@ +# +# File: makefile.vc +# Author: Julian Smart +# Created: 1999 +# Updated: +# Copyright: (c) Julian Smart +# +# Makefile : Builds sample (VC++, WIN32) +# Use FINAL=1 argument to nmake to build final version with no debug info. + +# Set WXDIR for your system +WXDIR = $(WXWIN) + +PROGRAM=font +OBJECTS = $(PROGRAM).obj + +!include $(WXDIR)\src\makeprog.vc + diff --git a/samples/font/mondrian.ico b/samples/font/mondrian.ico new file mode 100644 index 0000000000..2310c5d275 Binary files /dev/null and b/samples/font/mondrian.ico differ