author | Ryan C. Gordon <icculus@icculus.org> |
Fri, 19 Dec 2003 01:49:12 +0000 | |
changeset 612 | 03b07cbd1bc7 |
parent 609 | 3a91332776e0 |
child 625 | 60b5f566a258 |
permissions | -rw-r--r-- |
278 | 1 |
# Microsoft Developer Studio Project File - Name="physfs" - Package Owner=<4> |
2 |
# Microsoft Developer Studio Generated Build File, Format Version 6.00 |
|
3 |
# ** DO NOT EDIT ** |
|
4 |
||
5 |
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 |
|
6 |
||
545 | 7 |
CFG=physfs - Win32 Debug |
278 | 8 |
!MESSAGE This is not a valid makefile. To build this project using NMAKE, |
9 |
!MESSAGE use the Export Makefile command and run |
|
10 |
!MESSAGE |
|
11 |
!MESSAGE NMAKE /f "physfs.mak". |
|
12 |
!MESSAGE |
|
13 |
!MESSAGE You can specify a configuration when running NMAKE |
|
14 |
!MESSAGE by defining the macro CFG on the command line. For example: |
|
15 |
!MESSAGE |
|
545 | 16 |
!MESSAGE NMAKE /f "physfs.mak" CFG="physfs - Win32 Debug" |
278 | 17 |
!MESSAGE |
18 |
!MESSAGE Possible choices for configuration are: |
|
19 |
!MESSAGE |
|
545 | 20 |
!MESSAGE "physfs - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") |
21 |
!MESSAGE "physfs - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") |
|
278 | 22 |
!MESSAGE |
23 |
||
24 |
# Begin Project |
|
25 |
# PROP AllowPerConfigDependencies 0 |
|
26 |
# PROP Scc_ProjName "" |
|
27 |
# PROP Scc_LocalPath "" |
|
28 |
CPP=cl.exe |
|
29 |
MTL=midl.exe |
|
30 |
RSC=rc.exe |
|
31 |
||
545 | 32 |
!IF "$(CFG)" == "physfs - Win32 Debug" |
278 | 33 |
|
34 |
# PROP BASE Use_MFC 0 |
|
35 |
# PROP BASE Use_Debug_Libraries 1 |
|
36 |
# PROP BASE Output_Dir "Debug" |
|
37 |
# PROP BASE Intermediate_Dir "Debug" |
|
38 |
# PROP BASE Ignore_Export_Lib 0 |
|
39 |
# PROP BASE Target_Dir "" |
|
40 |
# PROP Use_MFC 0 |
|
41 |
# PROP Use_Debug_Libraries 1 |
|
42 |
# PROP Output_Dir "Debug" |
|
43 |
# PROP Intermediate_Dir "Debug" |
|
44 |
# PROP Ignore_Export_Lib 0 |
|
45 |
# PROP Target_Dir "" |
|
609
3a91332776e0
Added Doom WAD support.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
46 |
# ADD BASE CPP /nologo /MDd /W3 /WX /Gm /ZI /Od /I "." /I "zlibwin32" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "PHYSFS_EXPORTS" /D "PHYSFS_SUPPORTS_GRP" /D "PHYSFS_SUPPORTS_WAD" /D "PHYSFS_SUPPORTS_ZIP" /YX /FD /GZ /c |
3a91332776e0
Added Doom WAD support.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
47 |
# ADD CPP /nologo /MTd /W3 /WX /Gm- /GX- /Zi /Od /I "." /I "zlib114" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "PHYSFS_EXPORTS" /D "PHYSFS_SUPPORTS_GRP" /D "PHYSFS_SUPPORTS_WAD" /D "PHYSFS_SUPPORTS_ZIP" /D "PHYSFS_SUPPORTS_QPAK" /FR /YX /FD /GZ /c |
278 | 48 |
# SUBTRACT CPP /X |
49 |
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 |
|
50 |
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 |
|
51 |
# ADD BASE RSC /l 0x409 /d "_DEBUG" |
|
52 |
# ADD RSC /l 0x409 /d "_DEBUG" |
|
53 |
BSC32=bscmake.exe |
|
54 |
# ADD BASE BSC32 /nologo |
|
55 |
# ADD BSC32 /nologo |
|
56 |
LINK32=link.exe |
|
57 |
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept |
|
58 |
# SUBTRACT BASE LINK32 /incremental:no |
|
545 | 59 |
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /out:"../src/Debug/physfs.dll" |
278 | 60 |
# SUBTRACT LINK32 /pdb:none /force |
61 |
||
545 | 62 |
!ELSEIF "$(CFG)" == "physfs - Win32 Release" |
278 | 63 |
|
64 |
# PROP BASE Use_MFC 0 |
|
65 |
# PROP BASE Use_Debug_Libraries 0 |
|
66 |
# PROP BASE Output_Dir "Release" |
|
67 |
# PROP BASE Intermediate_Dir "Release" |
|
68 |
# PROP BASE Ignore_Export_Lib 0 |
|
69 |
# PROP BASE Target_Dir "" |
|
70 |
# PROP Use_MFC 0 |
|
71 |
# PROP Use_Debug_Libraries 0 |
|
72 |
# PROP Output_Dir "Release" |
|
73 |
# PROP Intermediate_Dir "Release" |
|
74 |
# PROP Ignore_Export_Lib 0 |
|
75 |
# PROP Target_Dir "" |
|
609
3a91332776e0
Added Doom WAD support.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
76 |
# ADD BASE CPP /nologo /MD /W3 /WX /O2 /I "." /I "zlibwin32" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "PHYSFS_EXPORTS" /D "PHYSFS_SUPPORTS_GRP" /D "PHYSFS_SUPPORTS_WAD" /D "PHYSFS_SUPPORTS_ZIP" /YX /FD /c |
3a91332776e0
Added Doom WAD support.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
77 |
# ADD CPP /nologo /MD /W3 /WX /O2 /I "." /I "zlib114" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "PHYSFS_EXPORTS" /D "PHYSFS_SUPPORTS_GRP" /D "PHYSFS_SUPPORTS_WAD" /D "PHYSFS_SUPPORTS_ZIP" /D "PHYSFS_SUPPORTS_QPAK" /YX /FD /c |
278 | 78 |
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 |
79 |
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 |
|
80 |
# ADD BASE RSC /l 0x409 /d "NDEBUG" |
|
81 |
# ADD RSC /l 0x409 /d "NDEBUG" |
|
82 |
BSC32=bscmake.exe |
|
83 |
# ADD BASE BSC32 /nologo |
|
84 |
# ADD BSC32 /nologo |
|
85 |
LINK32=link.exe |
|
86 |
# ADD BASE LINK32 zlibwin32\zlibstat.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 |
|
87 |
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 |
|
88 |
||
89 |
!ENDIF |
|
90 |
||
91 |
# Begin Target |
|
92 |
||
545 | 93 |
# Name "physfs - Win32 Debug" |
94 |
# Name "physfs - Win32 Release" |
|
278 | 95 |
# Begin Group "Source Files" |
96 |
||
97 |
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" |
|
98 |
# Begin Source File |
|
99 |
||
100 |
SOURCE=.\zlib114\adler32.c |
|
101 |
# End Source File |
|
102 |
# Begin Source File |
|
103 |
||
104 |
SOURCE=.\zlib114\compress.c |
|
105 |
# End Source File |
|
106 |
# Begin Source File |
|
107 |
||
108 |
SOURCE=.\zlib114\crc32.c |
|
109 |
# End Source File |
|
110 |
# Begin Source File |
|
111 |
||
112 |
SOURCE=.\zlib114\deflate.c |
|
113 |
# End Source File |
|
114 |
# Begin Source File |
|
115 |
||
116 |
SOURCE=.\archivers\dir.c |
|
117 |
# End Source File |
|
118 |
# Begin Source File |
|
119 |
||
120 |
SOURCE=.\archivers\grp.c |
|
121 |
# End Source File |
|
122 |
# Begin Source File |
|
123 |
||
609
3a91332776e0
Added Doom WAD support.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
124 |
SOURCE=.\archivers\wad.c |
3a91332776e0
Added Doom WAD support.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
125 |
# End Source File |
3a91332776e0
Added Doom WAD support.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
126 |
# Begin Source File |
3a91332776e0
Added Doom WAD support.
Ryan C. Gordon <icculus@icculus.org>
parents:
561
diff
changeset
|
127 |
|
278 | 128 |
SOURCE=.\zlib114\infblock.c |
129 |
# End Source File |
|
130 |
# Begin Source File |
|
131 |
||
132 |
SOURCE=.\zlib114\infcodes.c |
|
133 |
# End Source File |
|
134 |
# Begin Source File |
|
135 |
||
136 |
SOURCE=.\zlib114\inffast.c |
|
137 |
# End Source File |
|
138 |
# Begin Source File |
|
139 |
||
140 |
SOURCE=.\zlib114\inflate.c |
|
141 |
# End Source File |
|
142 |
# Begin Source File |
|
143 |
||
144 |
SOURCE=.\zlib114\inftrees.c |
|
145 |
# End Source File |
|
146 |
# Begin Source File |
|
147 |
||
148 |
SOURCE=.\zlib114\infutil.c |
|
149 |
# End Source File |
|
150 |
# Begin Source File |
|
151 |
||
152 |
SOURCE=.\physfs.c |
|
153 |
# End Source File |
|
154 |
# Begin Source File |
|
155 |
||
156 |
SOURCE=.\physfs_byteorder.c |
|
157 |
# End Source File |
|
158 |
# Begin Source File |
|
159 |
||
494 | 160 |
SOURCE=.\archivers\qpak.c |
161 |
# End Source File |
|
162 |
# Begin Source File |
|
163 |
||
278 | 164 |
SOURCE=.\zlib114\trees.c |
165 |
# End Source File |
|
166 |
# Begin Source File |
|
167 |
||
168 |
SOURCE=.\zlib114\uncompr.c |
|
169 |
# End Source File |
|
170 |
# Begin Source File |
|
171 |
||
172 |
SOURCE=.\platform\win32.c |
|
173 |
# End Source File |
|
174 |
# Begin Source File |
|
175 |
||
176 |
SOURCE=.\archivers\zip.c |
|
177 |
# End Source File |
|
178 |
# Begin Source File |
|
179 |
||
180 |
SOURCE=.\zlib114\zutil.c |
|
181 |
# End Source File |
|
182 |
# End Group |
|
183 |
# Begin Group "Header Files" |
|
184 |
||
185 |
# PROP Default_Filter "h;hpp;hxx;hm;inl" |
|
186 |
# Begin Source File |
|
187 |
||
188 |
SOURCE=.\zlib114\deflate.h |
|
189 |
# End Source File |
|
190 |
# Begin Source File |
|
191 |
||
192 |
SOURCE=.\zlib114\infblock.h |
|
193 |
# End Source File |
|
194 |
# Begin Source File |
|
195 |
||
196 |
SOURCE=.\zlib114\infcodes.h |
|
197 |
# End Source File |
|
198 |
# Begin Source File |
|
199 |
||
200 |
SOURCE=.\zlib114\inffast.h |
|
201 |
# End Source File |
|
202 |
# Begin Source File |
|
203 |
||
204 |
SOURCE=.\zlib114\inffixed.h |
|
205 |
# End Source File |
|
206 |
# Begin Source File |
|
207 |
||
208 |
SOURCE=.\zlib114\inftrees.h |
|
209 |
# End Source File |
|
210 |
# Begin Source File |
|
211 |
||
212 |
SOURCE=.\zlib114\infutil.h |
|
213 |
# End Source File |
|
214 |
# Begin Source File |
|
215 |
||
216 |
SOURCE=.\physfs.h |
|
217 |
# End Source File |
|
218 |
# Begin Source File |
|
219 |
||
220 |
SOURCE=.\physfs_internal.h |
|
221 |
# End Source File |
|
222 |
# Begin Source File |
|
223 |
||
224 |
SOURCE=.\zlib114\trees.h |
|
225 |
# End Source File |
|
226 |
# Begin Source File |
|
227 |
||
228 |
SOURCE=.\zlib114\zconf.h |
|
229 |
# End Source File |
|
230 |
# Begin Source File |
|
231 |
||
232 |
SOURCE=.\zlib114\zlib.h |
|
233 |
# End Source File |
|
234 |
# Begin Source File |
|
235 |
||
236 |
SOURCE=.\zlib114\zutil.h |
|
237 |
# End Source File |
|
238 |
# End Group |
|
239 |
# Begin Group "Resource Files" |
|
240 |
||
241 |
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" |
|
242 |
# End Group |
|
243 |
# End Target |
|
244 |
# End Project |