]> git.saurik.com Git - wxWidgets.git/commitdiff
VC makefile for building samples/console using wxBase(d).lib
authorGeorge Tasker <gtasker@allenbrook.com>
Tue, 13 Mar 2001 21:51:26 +0000 (21:51 +0000)
committerGeorge Tasker <gtasker@allenbrook.com>
Tue, 13 Mar 2001 21:51:26 +0000 (21:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9517 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/console/makefile.vc [new file with mode: 0644]

diff --git a/samples/console/makefile.vc b/samples/console/makefile.vc
new file mode 100644 (file)
index 0000000..0bd6d5a
--- /dev/null
@@ -0,0 +1,18 @@
+# Purpose: makefile for console sample (VC++ 32bit)
+# Created: 2000-01-03
+
+# Set WXDIR for your system
+WXDIR = $(WXWIN)
+wxUSE_GUI = 0
+
+PROGRAM=console 
+OBJECTS = $(PROGRAM).obj
+
+!if "$(FINAL)" == "1"
+EXTRALIBS=$(WXDIR)\lib\zlib.lib
+!else
+EXTRALIBS=$(WXDIR)\lib\zlibd.lib
+!endif
+
+!include $(WXDIR)\src\makeprog.vc
+