]> git.saurik.com Git - wxWidgets.git/blame - src/makevc.env
wxProcess-related code now works
[wxWidgets.git] / src / makevc.env
CommitLineData
227869da
JS
1#
2# File: ntwxwin.env
3# Author: Ulrich Leodolter
4# Created: Wed May 17 08:36:42 1995
5# Updated:
6#
7# MSVC++ 32-bit makefile include file
8#
9!include <ntwin32.mak>
10
11WIN95=1
12
13!if "$(WIN95)" == "0"
14# With 3.50, Win95 will use your existing icons to show smaller ones.
15# With 4.0, you'll have to follow Win95 procedures for icons or you'll get the
16# default Windows icon.
17APPVER=3.50
18WINVERSION=-DWINVER=0x0350 # Generic WIN32
19!else
20APPVER=3.50 # 4.0
21# This means 'enable Windows 95 features' (in wxWindows and in VC++ 4.0).
22WINVERSION=-DWINVER=0x0400 /D__WIN95__
23!endif
24
25# On Alpha machines, change to CPU=ALPHA
26CPU=i386
27
28# Suffixes
29OBJSUFF=obj
30SRCSUFF=cpp
31
32# If you set wxUSE_IOSTREAMH to 0, remove -Dtry=__try -Dexcept=__except -Dleave=__leave -Dfinally=__finally
33WINFLAGS=-c -W3 -Dtry=__try -Dexcept=__except -Dleave=__leave -Dfinally=__finally -DCRTAPI1=_cdecl -DCRTAPI2=_cdecl -nologo -D_X86_=1 -DWIN32 -D__WIN32__ $(WINVERSION)
34#WINLINKFLAGS=/NODEFAULTLIB /INCREMENTAL:NO /NOLOGO -align:0x1000 -machine:$(CPU) -subsystem:windows,$(APPVER)
35WINLINKFLAGS=/INCREMENTAL:NO /NOLOGO -machine:$(CPU) -subsystem:windows,$(APPVER)
36#WINLIBS=kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib libc.lib oldnames.lib\
37# comctl32.lib ctl3d32.lib odbc32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib # libci.lib # libci.lib required for VC++ 4.2
38WINLIBS=kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib oldnames.lib\
7921cf2b 39 comctl32.lib ctl3d32.lib odbc32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib # libci.lib # libci.lib required for VC++ 4.2
227869da
JS
40
41# Change this to your WXWIN directory
42WXDIR=$(WXWIN)
43
44WXSRC=$(WXDIR)\src\msw
45WXINC=$(WXDIR)\include
46WXBASESRC=$(WXDIR)\src\common
47
48#####################################################################
49# These are the possible DLL/non-DLL usages:
50#
51# Type _DLL/_WINDLL WXUSINGDLL WXMAKINGDLL Library
52#--------------------------------------------------------------------
53# Normal application - - - wx.lib
54#
55# wxWin as DLL Defined - Defined wx200.lib
56#
57# App using wxWin DLL - Defined - wx200.lib
58#
59# App built as one DLL Defined - - wx.lib
60#
61######################################################################
62#
63# Compiling your app:
64#--------------------
65# when compiling an app to use the DLL version of wxWindows
66# (but not to be a DLL itself), set WXUSINGDLL to 1 in your
67# makefile just before including ntwxwin.mak.
68# To compile wxWin _and_ app itself as a DLL, set DLL to 1
69# in ntwxwin.mak, and do not set WXUSINGDLL.
70#
71# Compiling wxWindows:
72#---------------------
73# Use the dll target to compile wxWindows as DLL; then make 'pch'
74# to generate a precompiled header for your apps to use. BUG: must compile without
75# wxExpr (USE_WX_RESOURCES = 0) for this to link properly. Don't know why yet.
76# Use the dllapp target to compile wxWindows for making a DLL app (not implemented yet)
77
78#DLL=0
79
80!if "$(WXUSINGDLL)" == "1" || "$(WXMAKINGDLL)" == "1"
81WXLIB=$(WXDIR)\lib\wx200.lib
82!else
83WXLIB=$(WXDIR)\lib\wx.lib
84!endif
85
86!if "$(WXUSINGDLL)" == "1"
87EXTRADLLFLAGS=/DWXUSINGDLL=1
88!endif
89
90!if "$(WXMAKINGDLL)" == "1"
91EXTRADLLFLAGS=/DWXMAKINGDLL=1
92!endif
93
94!if "$(WXMAKINGDLL)" == "0" && "$(DLL)" == "1"
95EXTRADLLFLAGS=
96!endif
97
98!if "$(NOMAIN)" == "1"
99EXTRADLLFLAGS=$(EXTRADLLFLAGS) /DNOMAIN
100!endif
101
102INC=-I$(WXINC) -I$(WXDIR)/src/png -I$(WXDIR)/src/zlib $(EXTRAINC)
103LIBS = $(EXTRALIBS) $(WXLIB) $(WINLIBS) $(WXDIR)\lib\winpng.lib $(WXDIR)\lib\zlib.lib $(WXDIR)\lib\xpm.lib
104
105!ifndef FINAL
106FINAL=0
107DEBUG=1
108!endif
109
110!ifndef DLL
111DLL=0
112!endif
113
114# Set this to 1 if you don't want to use precompiled headers
115!ifndef NOPCH
116NOPCH=0
117!endif
118
119MAKEPRECOMP=/YcWX/WXPREC.H
120OPTIONS=
121
122!if "$(FINAL)" == "0"
123OPT = /Od /Gy
124# ***N.B.*** to save space/time, comment out /FR to avoid browse info (.sbr files) being generated
125DEBUG_FLAGS= /Zi /D__WXDEBUG__ # /DDEBUG=1 # /FR
126LINK_DEBUG_FLAGS=-debug:full -debugtype:cv # /PDB:NONE
127CRTFLAG=/MD
128!else
129# /O1 - smallest code
130# /O2 - fastest code
131OPT = /O1 # /O2 # /Od
132DEBUG_FLAGS=
133LINK_DEBUG_FLAGS=/RELEASE
134CRTFLAG=/MD
135!endif
136
137!if "$(DLL)" == "0"
138
139!if "$(NOPCH)" == "1"
140PCH=
141PRECOMP=
142MAKEPRECOMP=
143!else
144PCH=WX.PCH
145PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$(PCH) /Fd$(WXDIR)\lib\wx.pdb
146MAKEPRECOMP=/YcWX/WXPREC.H
147!endif
148
149CPPFLAGS=$(WINFLAGS) $(DEBUG_FLAGS) $(PRECOMP) $(EXTRAFLAGS) /D__WXMSW__ $(INC) $(OPT) $(EXTRADLLFLAGS) $(CRTFLAG) /D__WINDOWS__ /GX /DSTRICT $(OVERRIDEFLAGS)
150# If you don't include wxprec.h, use CPPFLAGS2
151CPPFLAGS2=$(WINFLAGS) $(DEBUG_FLAGS) /D__WXMSW__ $(INC) $(EXTRAFLAGS) $(OPT) $(EXTRADLLFLAGS) $(CRTFLAG) /D__WINDOWS__ /GX /DSTRICT $(OVERRIDEFLAGS)
152LINKFLAGS=$(LINK_DEBUG_FLAGS) $(WINLINKFLAGS) -entry:WinMainCRTStartup
153DUMMY=dummy
154
155!else
156
157!if "$(WXMAKINGDLL)" == "1"
158PCH=WXDLL.PCH
159DUMMY=dummydll
160!else
161PCH=WX.PCH
162DUMMY=dummy
163!endif
164
165PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$(PCH) /Fd$(WXDIR)\lib\wx.pdb
166CPPFLAGS=$(WINFLAGS) $(DEBUG_FLAGS) $(PRECOMP) $(EXTRAFLAGS) /D__WXMSW__ $(INC) $(OPT) /D_DLL $(CRTFLAG) $(EXTRADLLFLAGS) /D_WINDOWS /D__WINDOWS__ /D_WINDLL
167CPPFLAGS2=$(WINFLAGS) $(DEBUG_FLAGS) /D__WXMSW__ $(INC) $(EXTRAFLAGS) $(OPT) /D_DLL $(CRTFLAG) $(EXTRADLLFLAGS) /D_WINDOWS /D__WINDOWS__ /D_WINDLL
168LINKFLAGS=$(LINK_DEBUG_FLAGS) -machine:i386 -subsystem:windows,$(APPVER) -dll # -entry:_DllMainCRTStartup$(DLLENTRY)
169!endif
170
171DUMMYOBJ=$(WXDIR)\src\msw\$(DUMMY).obj
172