From: Robin Dunn Date: Sat, 6 Nov 1999 08:01:42 +0000 (+0000) Subject: Stuff needed for the font sample to build with VC++ X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/82c87ed37c68e331b43b3bd53915f1256ee96c08 Stuff needed for the font sample to build with VC++ git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4385 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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