wx_vc8_base.vcproj 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800
  1. <?xml version="1.0" encoding="Windows-1252"?>
  2. <!--
  3. This project was generated by
  4. Bakefile 0.2.9 (http://www.bakefile.org)
  5. Do not modify, all changes will be overwritten!
  6. -->
  7. <VisualStudioProject
  8. ProjectType="Visual C++"
  9. Version="8.00"
  10. Name="base"
  11. ProjectGUID="{9B9B8541-3661-5AD8-8DFF-0BE67FBF1A37}"
  12. >
  13. <Platforms>
  14. <Platform
  15. Name="Win32"
  16. />
  17. </Platforms>
  18. <ToolFiles>
  19. </ToolFiles>
  20. <Configurations>
  21. <Configuration
  22. Name="Debug|Win32"
  23. OutputDirectory="..\..\lib\vc_lib"
  24. IntermediateDirectory="vc_mswud\base"
  25. ConfigurationType="4"
  26. UseOfMFC="0"
  27. ATLMinimizesCRunTimeLibraryUsage="false"
  28. CharacterSet="1"
  29. >
  30. <Tool
  31. Name="VCPreBuildEventTool"
  32. />
  33. <Tool
  34. Name="VCCustomBuildTool"
  35. />
  36. <Tool
  37. Name="VCXMLDataGeneratorTool"
  38. />
  39. <Tool
  40. Name="VCWebServiceProxyGeneratorTool"
  41. />
  42. <Tool
  43. Name="VCMIDLTool"
  44. PreprocessorDefinitions="WIN32;_LIB;_DEBUG;_CRT_SECURE_NO_DEPRECATE=1;_CRT_NON_CONFORMING_SWPRINTFS=1;_SCL_SECURE_NO_WARNINGS=1;__WXMSW__;_UNICODE;WXBUILDING;wxUSE_GUI=0;wxUSE_BASE=1"
  45. AdditionalIncludeDirectories="..\..\lib\vc_lib\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  46. />
  47. <Tool
  48. Name="VCCLCompilerTool"
  49. Optimization="0"
  50. AdditionalIncludeDirectories="..\..\lib\vc_lib\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  51. PreprocessorDefinitions="WIN32;_LIB;_DEBUG;_CRT_SECURE_NO_DEPRECATE=1;_CRT_NON_CONFORMING_SWPRINTFS=1;_SCL_SECURE_NO_WARNINGS=1;__WXMSW__;_UNICODE;WXBUILDING;wxUSE_GUI=0;wxUSE_BASE=1"
  52. MinimalRebuild="true"
  53. ExceptionHandling="1"
  54. BasicRuntimeChecks="3"
  55. RuntimeLibrary="3"
  56. BufferSecurityCheck="true"
  57. RuntimeTypeInfo="true"
  58. UsePrecompiledHeader="2"
  59. PrecompiledHeaderThrough="wx/wxprec.h"
  60. PrecompiledHeaderFile="vc_mswud\wxprec_baselib.pch"
  61. ObjectFile="vc_mswud\base\"
  62. ProgramDataBaseFileName="..\..\lib\vc_lib\wxbase30ud.pdb"
  63. WarningLevel="4"
  64. SuppressStartupBanner="true"
  65. Detect64BitPortabilityProblems="true"
  66. DebugInformationFormat="3"
  67. />
  68. <Tool
  69. Name="VCManagedResourceCompilerTool"
  70. />
  71. <Tool
  72. Name="VCResourceCompilerTool"
  73. PreprocessorDefinitions="_DEBUG;_CRT_SECURE_NO_DEPRECATE=1;_CRT_NON_CONFORMING_SWPRINTFS=1;_SCL_SECURE_NO_WARNINGS=1;__WXMSW__;_UNICODE;WXBUILDING;wxUSE_GUI=0;wxUSE_BASE=1"
  74. Culture="1033"
  75. AdditionalIncludeDirectories="..\..\lib\vc_lib\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  76. />
  77. <Tool
  78. Name="VCPreLinkEventTool"
  79. />
  80. <Tool
  81. Name="VCLibrarianTool"
  82. OutputFile="..\..\lib\vc_lib\wxbase30ud.lib"
  83. SuppressStartupBanner="true"
  84. />
  85. <Tool
  86. Name="VCALinkTool"
  87. />
  88. <Tool
  89. Name="VCManifestTool"
  90. />
  91. <Tool
  92. Name="VCXDCMakeTool"
  93. />
  94. <Tool
  95. Name="VCBscMakeTool"
  96. OutputFile="..\..\lib\vc_lib\wx_vc8_base.bsc"
  97. SuppressStartupBanner="true"
  98. />
  99. <Tool
  100. Name="VCFxCopTool"
  101. />
  102. <Tool
  103. Name="VCPostBuildEventTool"
  104. />
  105. </Configuration>
  106. <Configuration
  107. Name="Release|Win32"
  108. OutputDirectory="..\..\lib\vc_lib"
  109. IntermediateDirectory="vc_mswu\base"
  110. ConfigurationType="4"
  111. UseOfMFC="0"
  112. ATLMinimizesCRunTimeLibraryUsage="false"
  113. CharacterSet="1"
  114. >
  115. <Tool
  116. Name="VCPreBuildEventTool"
  117. />
  118. <Tool
  119. Name="VCCustomBuildTool"
  120. />
  121. <Tool
  122. Name="VCXMLDataGeneratorTool"
  123. />
  124. <Tool
  125. Name="VCWebServiceProxyGeneratorTool"
  126. />
  127. <Tool
  128. Name="VCMIDLTool"
  129. PreprocessorDefinitions="WIN32;_LIB;_CRT_SECURE_NO_DEPRECATE=1;_CRT_NON_CONFORMING_SWPRINTFS=1;_SCL_SECURE_NO_WARNINGS=1;__WXMSW__;NDEBUG;_UNICODE;WXBUILDING;wxUSE_GUI=0;wxUSE_BASE=1"
  130. AdditionalIncludeDirectories="..\..\lib\vc_lib\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  131. />
  132. <Tool
  133. Name="VCCLCompilerTool"
  134. Optimization="2"
  135. AdditionalIncludeDirectories="..\..\lib\vc_lib\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  136. PreprocessorDefinitions="WIN32;_LIB;_CRT_SECURE_NO_DEPRECATE=1;_CRT_NON_CONFORMING_SWPRINTFS=1;_SCL_SECURE_NO_WARNINGS=1;__WXMSW__;NDEBUG;_UNICODE;WXBUILDING;wxUSE_GUI=0;wxUSE_BASE=1"
  137. ExceptionHandling="1"
  138. RuntimeLibrary="2"
  139. RuntimeTypeInfo="true"
  140. UsePrecompiledHeader="2"
  141. PrecompiledHeaderThrough="wx/wxprec.h"
  142. PrecompiledHeaderFile="vc_mswu\wxprec_baselib.pch"
  143. ObjectFile="vc_mswu\base\"
  144. ProgramDataBaseFileName="..\..\lib\vc_lib\wxbase30u.pdb"
  145. WarningLevel="4"
  146. SuppressStartupBanner="true"
  147. Detect64BitPortabilityProblems="true"
  148. DebugInformationFormat="3"
  149. />
  150. <Tool
  151. Name="VCManagedResourceCompilerTool"
  152. />
  153. <Tool
  154. Name="VCResourceCompilerTool"
  155. PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE=1;_CRT_NON_CONFORMING_SWPRINTFS=1;_SCL_SECURE_NO_WARNINGS=1;__WXMSW__;NDEBUG;_UNICODE;WXBUILDING;wxUSE_GUI=0;wxUSE_BASE=1"
  156. Culture="1033"
  157. AdditionalIncludeDirectories="..\..\lib\vc_lib\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  158. />
  159. <Tool
  160. Name="VCPreLinkEventTool"
  161. />
  162. <Tool
  163. Name="VCLibrarianTool"
  164. OutputFile="..\..\lib\vc_lib\wxbase30u.lib"
  165. SuppressStartupBanner="true"
  166. />
  167. <Tool
  168. Name="VCALinkTool"
  169. />
  170. <Tool
  171. Name="VCManifestTool"
  172. />
  173. <Tool
  174. Name="VCXDCMakeTool"
  175. />
  176. <Tool
  177. Name="VCBscMakeTool"
  178. OutputFile="..\..\lib\vc_lib\wx_vc8_base.bsc"
  179. SuppressStartupBanner="true"
  180. />
  181. <Tool
  182. Name="VCFxCopTool"
  183. />
  184. <Tool
  185. Name="VCPostBuildEventTool"
  186. />
  187. </Configuration>
  188. <Configuration
  189. Name="DLL Debug|Win32"
  190. OutputDirectory="..\..\lib\vc_dll"
  191. IntermediateDirectory="vc_mswuddll\base"
  192. ConfigurationType="2"
  193. UseOfMFC="0"
  194. ATLMinimizesCRunTimeLibraryUsage="false"
  195. CharacterSet="1"
  196. >
  197. <Tool
  198. Name="VCPreBuildEventTool"
  199. />
  200. <Tool
  201. Name="VCCustomBuildTool"
  202. />
  203. <Tool
  204. Name="VCXMLDataGeneratorTool"
  205. />
  206. <Tool
  207. Name="VCWebServiceProxyGeneratorTool"
  208. />
  209. <Tool
  210. Name="VCMIDLTool"
  211. PreprocessorDefinitions="WIN32;_USRDLL;DLL_EXPORTS;_DEBUG;_CRT_SECURE_NO_DEPRECATE=1;_CRT_NON_CONFORMING_SWPRINTFS=1;_SCL_SECURE_NO_WARNINGS=1;__WXMSW__;_UNICODE;WXBUILDING;wxUSE_GUI=0;WXMAKINGDLL_BASE;wxUSE_BASE=1"
  212. AdditionalIncludeDirectories="..\..\lib\vc_dll\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  213. />
  214. <Tool
  215. Name="VCCLCompilerTool"
  216. Optimization="0"
  217. AdditionalIncludeDirectories="..\..\lib\vc_dll\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  218. PreprocessorDefinitions="WIN32;_USRDLL;DLL_EXPORTS;_DEBUG;_CRT_SECURE_NO_DEPRECATE=1;_CRT_NON_CONFORMING_SWPRINTFS=1;_SCL_SECURE_NO_WARNINGS=1;__WXMSW__;_UNICODE;WXBUILDING;wxUSE_GUI=0;WXMAKINGDLL_BASE;wxUSE_BASE=1"
  219. MinimalRebuild="true"
  220. ExceptionHandling="1"
  221. BasicRuntimeChecks="3"
  222. RuntimeLibrary="3"
  223. BufferSecurityCheck="true"
  224. RuntimeTypeInfo="true"
  225. UsePrecompiledHeader="2"
  226. PrecompiledHeaderThrough="wx/wxprec.h"
  227. PrecompiledHeaderFile="vc_mswuddll\wxprec_basedll.pch"
  228. ObjectFile="vc_mswuddll\base\"
  229. ProgramDataBaseFileName="..\..\lib\vc_dll\wxbase30ud_vc_custom.pdb"
  230. WarningLevel="4"
  231. SuppressStartupBanner="true"
  232. Detect64BitPortabilityProblems="true"
  233. DebugInformationFormat="3"
  234. />
  235. <Tool
  236. Name="VCManagedResourceCompilerTool"
  237. />
  238. <Tool
  239. Name="VCResourceCompilerTool"
  240. PreprocessorDefinitions="_DEBUG;_CRT_SECURE_NO_DEPRECATE=1;_CRT_NON_CONFORMING_SWPRINTFS=1;_SCL_SECURE_NO_WARNINGS=1;__WXMSW__;_UNICODE;WXBUILDING;WXDLLNAME=wxbase30ud_vc_custom;wxUSE_GUI=0;WXMAKINGDLL_BASE;wxUSE_BASE=1"
  241. Culture="1033"
  242. AdditionalIncludeDirectories="..\..\lib\vc_dll\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  243. />
  244. <Tool
  245. Name="VCPreLinkEventTool"
  246. />
  247. <Tool
  248. Name="VCLinkerTool"
  249. AdditionalOptions=""
  250. AdditionalDependencies="wxzlibd.lib wxregexud.lib wxexpatd.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
  251. OutputFile="..\..\lib\vc_dll\wxbase30ud_vc_custom.dll"
  252. LinkIncremental="2"
  253. ImportLibrary="..\..\lib\vc_dll\wxbase30ud.lib"
  254. SuppressStartupBanner="true"
  255. AdditionalLibraryDirectories="..\..\lib\vc_dll"
  256. GenerateManifest="true"
  257. GenerateDebugInformation="true"
  258. ProgramDatabaseFile="..\..\lib\vc_dll\wxbase30ud_vc_custom.pdb"
  259. TargetMachine="1"
  260. />
  261. <Tool
  262. Name="VCALinkTool"
  263. />
  264. <Tool
  265. Name="VCManifestTool"
  266. />
  267. <Tool
  268. Name="VCXDCMakeTool"
  269. />
  270. <Tool
  271. Name="VCBscMakeTool"
  272. OutputFile="..\..\lib\vc_dll\wx_vc8_base.bsc"
  273. SuppressStartupBanner="true"
  274. />
  275. <Tool
  276. Name="VCFxCopTool"
  277. />
  278. <Tool
  279. Name="VCPostBuildEventTool"
  280. />
  281. </Configuration>
  282. <Configuration
  283. Name="DLL Release|Win32"
  284. OutputDirectory="..\..\lib\vc_dll"
  285. IntermediateDirectory="vc_mswudll\base"
  286. ConfigurationType="2"
  287. UseOfMFC="0"
  288. ATLMinimizesCRunTimeLibraryUsage="false"
  289. CharacterSet="1"
  290. >
  291. <Tool
  292. Name="VCPreBuildEventTool"
  293. />
  294. <Tool
  295. Name="VCCustomBuildTool"
  296. />
  297. <Tool
  298. Name="VCXMLDataGeneratorTool"
  299. />
  300. <Tool
  301. Name="VCWebServiceProxyGeneratorTool"
  302. />
  303. <Tool
  304. Name="VCMIDLTool"
  305. PreprocessorDefinitions="WIN32;_USRDLL;DLL_EXPORTS;_CRT_SECURE_NO_DEPRECATE=1;_CRT_NON_CONFORMING_SWPRINTFS=1;_SCL_SECURE_NO_WARNINGS=1;__WXMSW__;NDEBUG;_UNICODE;WXBUILDING;wxUSE_GUI=0;WXMAKINGDLL_BASE;wxUSE_BASE=1"
  306. AdditionalIncludeDirectories="..\..\lib\vc_dll\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  307. />
  308. <Tool
  309. Name="VCCLCompilerTool"
  310. Optimization="2"
  311. AdditionalIncludeDirectories="..\..\lib\vc_dll\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  312. PreprocessorDefinitions="WIN32;_USRDLL;DLL_EXPORTS;_CRT_SECURE_NO_DEPRECATE=1;_CRT_NON_CONFORMING_SWPRINTFS=1;_SCL_SECURE_NO_WARNINGS=1;__WXMSW__;NDEBUG;_UNICODE;WXBUILDING;wxUSE_GUI=0;WXMAKINGDLL_BASE;wxUSE_BASE=1"
  313. ExceptionHandling="1"
  314. RuntimeLibrary="2"
  315. RuntimeTypeInfo="true"
  316. UsePrecompiledHeader="2"
  317. PrecompiledHeaderThrough="wx/wxprec.h"
  318. PrecompiledHeaderFile="vc_mswudll\wxprec_basedll.pch"
  319. ObjectFile="vc_mswudll\base\"
  320. ProgramDataBaseFileName="..\..\lib\vc_dll\wxbase30u_vc_custom.pdb"
  321. WarningLevel="4"
  322. SuppressStartupBanner="true"
  323. Detect64BitPortabilityProblems="true"
  324. DebugInformationFormat="3"
  325. />
  326. <Tool
  327. Name="VCManagedResourceCompilerTool"
  328. />
  329. <Tool
  330. Name="VCResourceCompilerTool"
  331. PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE=1;_CRT_NON_CONFORMING_SWPRINTFS=1;_SCL_SECURE_NO_WARNINGS=1;__WXMSW__;NDEBUG;_UNICODE;WXBUILDING;WXDLLNAME=wxbase30u_vc_custom;wxUSE_GUI=0;WXMAKINGDLL_BASE;wxUSE_BASE=1"
  332. Culture="1033"
  333. AdditionalIncludeDirectories="..\..\lib\vc_dll\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  334. />
  335. <Tool
  336. Name="VCPreLinkEventTool"
  337. />
  338. <Tool
  339. Name="VCLinkerTool"
  340. AdditionalOptions=""
  341. AdditionalDependencies="wxzlib.lib wxregexu.lib wxexpat.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib wininet.lib"
  342. OutputFile="..\..\lib\vc_dll\wxbase30u_vc_custom.dll"
  343. LinkIncremental="1"
  344. ImportLibrary="..\..\lib\vc_dll\wxbase30u.lib"
  345. SuppressStartupBanner="true"
  346. AdditionalLibraryDirectories="..\..\lib\vc_dll"
  347. GenerateManifest="true"
  348. GenerateDebugInformation="true"
  349. ProgramDatabaseFile="..\..\lib\vc_dll\wxbase30u_vc_custom.pdb"
  350. TargetMachine="1"
  351. OptimizeReferences="2"
  352. EnableCOMDATFolding="2"
  353. />
  354. <Tool
  355. Name="VCALinkTool"
  356. />
  357. <Tool
  358. Name="VCManifestTool"
  359. />
  360. <Tool
  361. Name="VCXDCMakeTool"
  362. />
  363. <Tool
  364. Name="VCBscMakeTool"
  365. OutputFile="..\..\lib\vc_dll\wx_vc8_base.bsc"
  366. SuppressStartupBanner="true"
  367. />
  368. <Tool
  369. Name="VCFxCopTool"
  370. />
  371. <Tool
  372. Name="VCPostBuildEventTool"
  373. />
  374. </Configuration>
  375. </Configurations>
  376. <References>
  377. </References>
  378. <Files>
  379. <Filter
  380. Name="Common Sources"
  381. UniqueIdentifier="{A6A5C30D-BDB6-5050-906D-10A96065136C}"
  382. >
  383. <File
  384. RelativePath="..\..\src\common\any.cpp"
  385. >
  386. </File>
  387. <File
  388. RelativePath="..\..\src\common\appbase.cpp"
  389. >
  390. </File>
  391. <File
  392. RelativePath="..\..\src\common\arcall.cpp"
  393. >
  394. </File>
  395. <File
  396. RelativePath="..\..\src\common\arcfind.cpp"
  397. >
  398. </File>
  399. <File
  400. RelativePath="..\..\src\common\archive.cpp"
  401. >
  402. </File>
  403. <File
  404. RelativePath="..\..\src\common\arrstr.cpp"
  405. >
  406. </File>
  407. <File
  408. RelativePath="..\..\src\common\base64.cpp"
  409. >
  410. </File>
  411. <File
  412. RelativePath="..\..\src\common\clntdata.cpp"
  413. >
  414. </File>
  415. <File
  416. RelativePath="..\..\src\common\cmdline.cpp"
  417. >
  418. </File>
  419. <File
  420. RelativePath="..\..\src\common\config.cpp"
  421. >
  422. </File>
  423. <File
  424. RelativePath="..\..\src\common\convauto.cpp"
  425. >
  426. </File>
  427. <File
  428. RelativePath="..\..\src\common\datetime.cpp"
  429. >
  430. </File>
  431. <File
  432. RelativePath="..\..\src\common\datetimefmt.cpp"
  433. >
  434. </File>
  435. <File
  436. RelativePath="..\..\src\common\datstrm.cpp"
  437. >
  438. </File>
  439. <File
  440. RelativePath="..\..\src\common\dircmn.cpp"
  441. >
  442. </File>
  443. <File
  444. RelativePath="..\..\src\common\dummy.cpp"
  445. >
  446. <FileConfiguration
  447. Name="Debug|Win32"
  448. >
  449. <Tool
  450. Name="VCCLCompilerTool"
  451. UsePrecompiledHeader="1"
  452. />
  453. </FileConfiguration>
  454. <FileConfiguration
  455. Name="Release|Win32"
  456. >
  457. <Tool
  458. Name="VCCLCompilerTool"
  459. UsePrecompiledHeader="1"
  460. />
  461. </FileConfiguration>
  462. <FileConfiguration
  463. Name="DLL Debug|Win32"
  464. >
  465. <Tool
  466. Name="VCCLCompilerTool"
  467. UsePrecompiledHeader="1"
  468. />
  469. </FileConfiguration>
  470. <FileConfiguration
  471. Name="DLL Release|Win32"
  472. >
  473. <Tool
  474. Name="VCCLCompilerTool"
  475. UsePrecompiledHeader="1"
  476. />
  477. </FileConfiguration>
  478. </File>
  479. <File
  480. RelativePath="..\..\src\common\dynarray.cpp"
  481. >
  482. </File>
  483. <File
  484. RelativePath="..\..\src\common\dynlib.cpp"
  485. >
  486. </File>
  487. <File
  488. RelativePath="..\..\src\common\dynload.cpp"
  489. >
  490. </File>
  491. <File
  492. RelativePath="..\..\src\common\encconv.cpp"
  493. >
  494. </File>
  495. <File
  496. RelativePath="..\..\src\common\event.cpp"
  497. >
  498. </File>
  499. <File
  500. RelativePath="..\..\src\common\evtloopcmn.cpp"
  501. >
  502. </File>
  503. <File
  504. RelativePath="..\..\src\common\extended.c"
  505. >
  506. <FileConfiguration
  507. Name="Debug|Win32"
  508. >
  509. <Tool
  510. Name="VCCLCompilerTool"
  511. UsePrecompiledHeader="0"
  512. />
  513. </FileConfiguration>
  514. <FileConfiguration
  515. Name="Release|Win32"
  516. >
  517. <Tool
  518. Name="VCCLCompilerTool"
  519. UsePrecompiledHeader="0"
  520. />
  521. </FileConfiguration>
  522. <FileConfiguration
  523. Name="DLL Debug|Win32"
  524. >
  525. <Tool
  526. Name="VCCLCompilerTool"
  527. UsePrecompiledHeader="0"
  528. />
  529. </FileConfiguration>
  530. <FileConfiguration
  531. Name="DLL Release|Win32"
  532. >
  533. <Tool
  534. Name="VCCLCompilerTool"
  535. UsePrecompiledHeader="0"
  536. />
  537. </FileConfiguration>
  538. </File>
  539. <File
  540. RelativePath="..\..\src\common\ffile.cpp"
  541. >
  542. </File>
  543. <File
  544. RelativePath="..\..\src\common\file.cpp"
  545. >
  546. </File>
  547. <File
  548. RelativePath="..\..\src\common\fileback.cpp"
  549. >
  550. </File>
  551. <File
  552. RelativePath="..\..\src\common\fileconf.cpp"
  553. >
  554. </File>
  555. <File
  556. RelativePath="..\..\src\common\filefn.cpp"
  557. >
  558. </File>
  559. <File
  560. RelativePath="..\..\src\common\filename.cpp"
  561. >
  562. </File>
  563. <File
  564. RelativePath="..\..\src\common\filesys.cpp"
  565. >
  566. </File>
  567. <File
  568. RelativePath="..\..\src\common\filtall.cpp"
  569. >
  570. </File>
  571. <File
  572. RelativePath="..\..\src\common\filtfind.cpp"
  573. >
  574. </File>
  575. <File
  576. RelativePath="..\..\src\common\fmapbase.cpp"
  577. >
  578. </File>
  579. <File
  580. RelativePath="..\..\src\common\fs_arc.cpp"
  581. >
  582. </File>
  583. <File
  584. RelativePath="..\..\src\common\fs_filter.cpp"
  585. >
  586. </File>
  587. <File
  588. RelativePath="..\..\src\common\fs_mem.cpp"
  589. >
  590. </File>
  591. <File
  592. RelativePath="..\..\src\common\fswatchercmn.cpp"
  593. >
  594. </File>
  595. <File
  596. RelativePath="..\..\src\common\hash.cpp"
  597. >
  598. </File>
  599. <File
  600. RelativePath="..\..\src\common\hashmap.cpp"
  601. >
  602. </File>
  603. <File
  604. RelativePath="..\..\src\common\init.cpp"
  605. >
  606. </File>
  607. <File
  608. RelativePath="..\..\src\common\intl.cpp"
  609. >
  610. </File>
  611. <File
  612. RelativePath="..\..\src\common\ipcbase.cpp"
  613. >
  614. </File>
  615. <File
  616. RelativePath="..\..\src\common\languageinfo.cpp"
  617. >
  618. </File>
  619. <File
  620. RelativePath="..\..\src\common\list.cpp"
  621. >
  622. </File>
  623. <File
  624. RelativePath="..\..\src\common\log.cpp"
  625. >
  626. </File>
  627. <File
  628. RelativePath="..\..\src\common\longlong.cpp"
  629. >
  630. </File>
  631. <File
  632. RelativePath="..\..\src\common\memory.cpp"
  633. >
  634. </File>
  635. <File
  636. RelativePath="..\..\src\common\mimecmn.cpp"
  637. >
  638. </File>
  639. <File
  640. RelativePath="..\..\src\common\module.cpp"
  641. >
  642. </File>
  643. <File
  644. RelativePath="..\..\src\common\msgout.cpp"
  645. >
  646. </File>
  647. <File
  648. RelativePath="..\..\src\common\mstream.cpp"
  649. >
  650. </File>
  651. <File
  652. RelativePath="..\..\src\common\numformatter.cpp"
  653. >
  654. </File>
  655. <File
  656. RelativePath="..\..\src\common\object.cpp"
  657. >
  658. </File>
  659. <File
  660. RelativePath="..\..\src\common\platinfo.cpp"
  661. >
  662. </File>
  663. <File
  664. RelativePath="..\..\src\common\powercmn.cpp"
  665. >
  666. </File>
  667. <File
  668. RelativePath="..\..\src\common\process.cpp"
  669. >
  670. </File>
  671. <File
  672. RelativePath="..\..\src\common\regex.cpp"
  673. >
  674. </File>
  675. <File
  676. RelativePath="..\..\src\common\sstream.cpp"
  677. >
  678. </File>
  679. <File
  680. RelativePath="..\..\src\common\stdpbase.cpp"
  681. >
  682. </File>
  683. <File
  684. RelativePath="..\..\src\common\stdstream.cpp"
  685. >
  686. </File>
  687. <File
  688. RelativePath="..\..\src\common\stopwatch.cpp"
  689. >
  690. </File>
  691. <File
  692. RelativePath="..\..\src\common\strconv.cpp"
  693. >
  694. </File>
  695. <File
  696. RelativePath="..\..\src\common\stream.cpp"
  697. >
  698. </File>
  699. <File
  700. RelativePath="..\..\src\common\string.cpp"
  701. >
  702. </File>
  703. <File
  704. RelativePath="..\..\src\common\stringimpl.cpp"
  705. >
  706. </File>
  707. <File
  708. RelativePath="..\..\src\common\stringops.cpp"
  709. >
  710. </File>
  711. <File
  712. RelativePath="..\..\src\common\strvararg.cpp"
  713. >
  714. </File>
  715. <File
  716. RelativePath="..\..\src\common\sysopt.cpp"
  717. >
  718. </File>
  719. <File
  720. RelativePath="..\..\src\common\tarstrm.cpp"
  721. >
  722. </File>
  723. <File
  724. RelativePath="..\..\src\common\textbuf.cpp"
  725. >
  726. </File>
  727. <File
  728. RelativePath="..\..\src\common\textfile.cpp"
  729. >
  730. </File>
  731. <File
  732. RelativePath="..\..\src\common\threadinfo.cpp"
  733. >
  734. </File>
  735. <File
  736. RelativePath="..\..\src\common\time.cpp"
  737. >
  738. </File>
  739. <File
  740. RelativePath="..\..\src\common\timercmn.cpp"
  741. >
  742. </File>
  743. <File
  744. RelativePath="..\..\src\common\timerimpl.cpp"
  745. >
  746. </File>
  747. <File
  748. RelativePath="..\..\src\common\tokenzr.cpp"
  749. >
  750. </File>
  751. <File
  752. RelativePath="..\..\src\common\translation.cpp"
  753. >
  754. </File>
  755. <File
  756. RelativePath="..\..\src\common\txtstrm.cpp"
  757. >
  758. </File>
  759. <File
  760. RelativePath="..\..\src\common\unichar.cpp"
  761. >
  762. </File>
  763. <File
  764. RelativePath="..\..\src\common\uri.cpp"
  765. >
  766. </File>
  767. <File
  768. RelativePath="..\..\src\common\ustring.cpp"
  769. >
  770. </File>
  771. <File
  772. RelativePath="..\..\src\common\utilscmn.cpp"
  773. >
  774. </File>
  775. <File
  776. RelativePath="..\..\src\common\variant.cpp"
  777. >
  778. </File>
  779. <File
  780. RelativePath="..\..\src\common\wfstream.cpp"
  781. >
  782. </File>
  783. <File
  784. RelativePath="..\..\src\common\wxcrt.cpp"
  785. >
  786. </File>
  787. <File
  788. RelativePath="..\..\src\common\wxprintf.cpp"
  789. >
  790. </File>
  791. <File
  792. RelativePath="..\..\src\common\xlocale.cpp"
  793. >
  794. </File>
  795. <File
  796. RelativePath="..\..\src\common\xti.cpp"
  797. >
  798. </File>
  799. <File
  800. RelativePath="..\..\src\common\xtistrm.cpp"
  801. >
  802. </File>
  803. <File
  804. RelativePath="..\..\src\common\zipstrm.cpp"
  805. >
  806. </File>
  807. <File
  808. RelativePath="..\..\src\common\zstream.cpp"
  809. >
  810. </File>
  811. </Filter>
  812. <Filter
  813. Name="MSW Sources"
  814. UniqueIdentifier="{D030D8C2-53EE-5B96-8F89-D78157B06140}"
  815. >
  816. <File
  817. RelativePath="..\..\src\msw\basemsw.cpp"
  818. >
  819. </File>
  820. <File
  821. RelativePath="..\..\src\msw\crashrpt.cpp"
  822. >
  823. </File>
  824. <File
  825. RelativePath="..\..\src\msw\dde.cpp"
  826. >
  827. </File>
  828. <File
  829. RelativePath="..\..\src\msw\debughlp.cpp"
  830. >
  831. </File>
  832. <File
  833. RelativePath="..\..\src\msw\dir.cpp"
  834. >
  835. </File>
  836. <File
  837. RelativePath="..\..\src\msw\dlmsw.cpp"
  838. >
  839. </File>
  840. <File
  841. RelativePath="..\..\src\msw\evtloopconsole.cpp"
  842. >
  843. </File>
  844. <File
  845. RelativePath="..\..\src\msw\fswatcher.cpp"
  846. >
  847. </File>
  848. <File
  849. RelativePath="..\..\src\msw\main.cpp"
  850. >
  851. </File>
  852. <File
  853. RelativePath="..\..\src\msw\mimetype.cpp"
  854. >
  855. </File>
  856. <File
  857. RelativePath="..\..\src\msw\mslu.cpp"
  858. >
  859. </File>
  860. <File
  861. RelativePath="..\..\src\msw\power.cpp"
  862. >
  863. </File>
  864. <File
  865. RelativePath="..\..\src\msw\regconf.cpp"
  866. >
  867. </File>
  868. <File
  869. RelativePath="..\..\src\msw\registry.cpp"
  870. >
  871. </File>
  872. <File
  873. RelativePath="..\..\src\msw\snglinst.cpp"
  874. >
  875. </File>
  876. <File
  877. RelativePath="..\..\src\msw\stackwalk.cpp"
  878. >
  879. </File>
  880. <File
  881. RelativePath="..\..\src\msw\stdpaths.cpp"
  882. >
  883. </File>
  884. <File
  885. RelativePath="..\..\src\msw\thread.cpp"
  886. >
  887. </File>
  888. <File
  889. RelativePath="..\..\src\msw\timer.cpp"
  890. >
  891. </File>
  892. <File
  893. RelativePath="..\..\src\msw\utils.cpp"
  894. >
  895. </File>
  896. <File
  897. RelativePath="..\..\src\msw\utilsexc.cpp"
  898. >
  899. </File>
  900. <File
  901. RelativePath="..\..\src\msw\version.rc"
  902. >
  903. <FileConfiguration
  904. Name="Debug|Win32"
  905. ExcludedFromBuild="true"
  906. />
  907. <FileConfiguration
  908. Name="Release|Win32"
  909. ExcludedFromBuild="true"
  910. />
  911. </File>
  912. <File
  913. RelativePath="..\..\src\msw\volume.cpp"
  914. >
  915. </File>
  916. </Filter>
  917. <Filter
  918. Name="Generic Sources"
  919. UniqueIdentifier="{FEA0C02F-F300-53BA-B784-52A5086B8093}"
  920. >
  921. <File
  922. RelativePath="..\..\src\generic\fswatcherg.cpp"
  923. >
  924. </File>
  925. </Filter>
  926. <Filter
  927. Name="Setup Headers"
  928. UniqueIdentifier="{63537534-1833-5C1F-8DBD-359A84F294C8}"
  929. >
  930. <File
  931. RelativePath="..\..\include\wx\msw\setup.h"
  932. >
  933. <FileConfiguration
  934. Name="Debug|Win32"
  935. >
  936. <Tool
  937. Name="VCCustomBuildTool"
  938. Description="Creating ..\..\lib\vc_lib\mswud\wx\setup.h"
  939. CommandLine="copy &quot;$(InputPath)&quot; ..\..\lib\vc_lib\mswud\wx\setup.h"
  940. Outputs="..\..\lib\vc_lib\mswud\wx\setup.h"
  941. />
  942. </FileConfiguration>
  943. <FileConfiguration
  944. Name="Release|Win32"
  945. >
  946. <Tool
  947. Name="VCCustomBuildTool"
  948. Description="Creating ..\..\lib\vc_lib\mswu\wx\setup.h"
  949. CommandLine="copy &quot;$(InputPath)&quot; ..\..\lib\vc_lib\mswu\wx\setup.h"
  950. Outputs="..\..\lib\vc_lib\mswu\wx\setup.h"
  951. />
  952. </FileConfiguration>
  953. <FileConfiguration
  954. Name="DLL Debug|Win32"
  955. >
  956. <Tool
  957. Name="VCCustomBuildTool"
  958. Description="Creating ..\..\lib\vc_dll\mswud\wx\setup.h"
  959. CommandLine="copy &quot;$(InputPath)&quot; ..\..\lib\vc_dll\mswud\wx\setup.h"
  960. Outputs="..\..\lib\vc_dll\mswud\wx\setup.h"
  961. />
  962. </FileConfiguration>
  963. <FileConfiguration
  964. Name="DLL Release|Win32"
  965. >
  966. <Tool
  967. Name="VCCustomBuildTool"
  968. Description="Creating ..\..\lib\vc_dll\mswu\wx\setup.h"
  969. CommandLine="copy &quot;$(InputPath)&quot; ..\..\lib\vc_dll\mswu\wx\setup.h"
  970. Outputs="..\..\lib\vc_dll\mswu\wx\setup.h"
  971. />
  972. </FileConfiguration>
  973. </File>
  974. <File
  975. RelativePath="..\..\include\wx\univ\setup.h"
  976. >
  977. <FileConfiguration
  978. Name="Debug|Win32"
  979. />
  980. <FileConfiguration
  981. Name="Release|Win32"
  982. />
  983. <FileConfiguration
  984. Name="DLL Debug|Win32"
  985. />
  986. <FileConfiguration
  987. Name="DLL Release|Win32"
  988. />
  989. </File>
  990. </Filter>
  991. <Filter
  992. Name="MSW Headers"
  993. UniqueIdentifier="{5AFFF20E-29F9-512B-B80A-7DC45976CDAC}"
  994. >
  995. <File
  996. RelativePath="..\..\include\wx\msw\apptbase.h"
  997. >
  998. </File>
  999. <File
  1000. RelativePath="..\..\include\wx\msw\apptrait.h"
  1001. >
  1002. </File>
  1003. <File
  1004. RelativePath="..\..\include\wx\msw\chkconf.h"
  1005. >
  1006. </File>
  1007. <File
  1008. RelativePath="..\..\include\wx\msw\crashrpt.h"
  1009. >
  1010. </File>
  1011. <File
  1012. RelativePath="..\..\include\wx\msw\dde.h"
  1013. >
  1014. </File>
  1015. <File
  1016. RelativePath="..\..\include\wx\msw\debughlp.h"
  1017. >
  1018. </File>
  1019. <File
  1020. RelativePath="..\..\include\wx\msw\evtloopconsole.h"
  1021. >
  1022. </File>
  1023. <File
  1024. RelativePath="..\..\include\wx\msw\fswatcher.h"
  1025. >
  1026. </File>
  1027. <File
  1028. RelativePath="..\..\include\wx\msw\gccpriv.h"
  1029. >
  1030. </File>
  1031. <File
  1032. RelativePath="..\..\include\wx\msw\genrcdefs.h"
  1033. >
  1034. <FileConfiguration
  1035. Name="Debug|Win32"
  1036. >
  1037. <Tool
  1038. Name="VCCustomBuildTool"
  1039. Description="Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h"
  1040. CommandLine="cl /EP /nologo &quot;$(InputPath)&quot; &gt; &quot;..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h&quot;"
  1041. Outputs="..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h"
  1042. AdditionalDependencies="&quot;..\..\lib\vc_lib\mswud\wx\msw&quot;"
  1043. />
  1044. </FileConfiguration>
  1045. <FileConfiguration
  1046. Name="Release|Win32"
  1047. >
  1048. <Tool
  1049. Name="VCCustomBuildTool"
  1050. Description="Creating ..\..\lib\vc_lib\mswu\wx\msw\rcdefs.h"
  1051. CommandLine="cl /EP /nologo &quot;$(InputPath)&quot; &gt; &quot;..\..\lib\vc_lib\mswu\wx\msw\rcdefs.h&quot;"
  1052. Outputs="..\..\lib\vc_lib\mswu\wx\msw\rcdefs.h"
  1053. AdditionalDependencies="&quot;..\..\lib\vc_lib\mswu\wx\msw&quot;"
  1054. />
  1055. </FileConfiguration>
  1056. <FileConfiguration
  1057. Name="DLL Debug|Win32"
  1058. >
  1059. <Tool
  1060. Name="VCCustomBuildTool"
  1061. Description="Creating ..\..\lib\vc_dll\mswud\wx\msw\rcdefs.h"
  1062. CommandLine="cl /EP /nologo &quot;$(InputPath)&quot; &gt; &quot;..\..\lib\vc_dll\mswud\wx\msw\rcdefs.h&quot;"
  1063. Outputs="..\..\lib\vc_dll\mswud\wx\msw\rcdefs.h"
  1064. AdditionalDependencies="&quot;..\..\lib\vc_dll\mswud\wx\msw&quot;"
  1065. />
  1066. </FileConfiguration>
  1067. <FileConfiguration
  1068. Name="DLL Release|Win32"
  1069. >
  1070. <Tool
  1071. Name="VCCustomBuildTool"
  1072. Description="Creating ..\..\lib\vc_dll\mswu\wx\msw\rcdefs.h"
  1073. CommandLine="cl /EP /nologo &quot;$(InputPath)&quot; &gt; &quot;..\..\lib\vc_dll\mswu\wx\msw\rcdefs.h&quot;"
  1074. Outputs="..\..\lib\vc_dll\mswu\wx\msw\rcdefs.h"
  1075. AdditionalDependencies="&quot;..\..\lib\vc_dll\mswu\wx\msw&quot;"
  1076. />
  1077. </FileConfiguration>
  1078. </File>
  1079. <File
  1080. RelativePath="..\..\include\wx\msw\libraries.h"
  1081. >
  1082. </File>
  1083. <File
  1084. RelativePath="..\..\include\wx\msw\mimetype.h"
  1085. >
  1086. </File>
  1087. <File
  1088. RelativePath="..\..\include\wx\msw\mslu.h"
  1089. >
  1090. </File>
  1091. <File
  1092. RelativePath="..\..\include\wx\msw\private.h"
  1093. >
  1094. </File>
  1095. <File
  1096. RelativePath="..\..\include\wx\msw\regconf.h"
  1097. >
  1098. </File>
  1099. <File
  1100. RelativePath="..\..\include\wx\msw\registry.h"
  1101. >
  1102. </File>
  1103. <File
  1104. RelativePath="..\..\include\wx\msw\seh.h"
  1105. >
  1106. </File>
  1107. <File
  1108. RelativePath="..\..\include\wx\msw\stackwalk.h"
  1109. >
  1110. </File>
  1111. <File
  1112. RelativePath="..\..\include\wx\msw\stdpaths.h"
  1113. >
  1114. </File>
  1115. <File
  1116. RelativePath="..\..\include\wx\msw\winundef.h"
  1117. >
  1118. </File>
  1119. <File
  1120. RelativePath="..\..\include\wx\msw\wrapcctl.h"
  1121. >
  1122. </File>
  1123. <File
  1124. RelativePath="..\..\include\wx\msw\wrapcdlg.h"
  1125. >
  1126. </File>
  1127. <File
  1128. RelativePath="..\..\include\wx\msw\wrapwin.h"
  1129. >
  1130. </File>
  1131. </Filter>
  1132. <Filter
  1133. Name="Generic Headers"
  1134. UniqueIdentifier="{61C63C83-EF8C-51CA-A418-51936E7FCD4A}"
  1135. >
  1136. <File
  1137. RelativePath="..\..\include\wx\generic\fswatcher.h"
  1138. >
  1139. </File>
  1140. </Filter>
  1141. <Filter
  1142. Name="wxHTML Headers"
  1143. UniqueIdentifier="{B4103426-A5DB-5CF0-A30E-BC9546513AAF}"
  1144. >
  1145. <File
  1146. RelativePath="..\..\include\wx\html\forcelnk.h"
  1147. >
  1148. </File>
  1149. </Filter>
  1150. <Filter
  1151. Name="Common Headers"
  1152. UniqueIdentifier="{8C07E926-65B0-5F00-B0D6-7F40DA69BB25}"
  1153. >
  1154. <File
  1155. RelativePath="..\..\include\wx\afterstd.h"
  1156. >
  1157. </File>
  1158. <File
  1159. RelativePath="..\..\include\wx\any.h"
  1160. >
  1161. </File>
  1162. <File
  1163. RelativePath="..\..\include\wx\anystr.h"
  1164. >
  1165. </File>
  1166. <File
  1167. RelativePath="..\..\include\wx\app.h"
  1168. >
  1169. </File>
  1170. <File
  1171. RelativePath="..\..\include\wx\apptrait.h"
  1172. >
  1173. </File>
  1174. <File
  1175. RelativePath="..\..\include\wx\archive.h"
  1176. >
  1177. </File>
  1178. <File
  1179. RelativePath="..\..\include\wx\arrstr.h"
  1180. >
  1181. </File>
  1182. <File
  1183. RelativePath="..\..\include\wx\atomic.h"
  1184. >
  1185. </File>
  1186. <File
  1187. RelativePath="..\..\include\wx\base64.h"
  1188. >
  1189. </File>
  1190. <File
  1191. RelativePath="..\..\include\wx\beforestd.h"
  1192. >
  1193. </File>
  1194. <File
  1195. RelativePath="..\..\include\wx\buffer.h"
  1196. >
  1197. </File>
  1198. <File
  1199. RelativePath="..\..\include\wx\build.h"
  1200. >
  1201. </File>
  1202. <File
  1203. RelativePath="..\..\include\wx\chartype.h"
  1204. >
  1205. </File>
  1206. <File
  1207. RelativePath="..\..\include\wx\checkeddelete.h"
  1208. >
  1209. </File>
  1210. <File
  1211. RelativePath="..\..\include\wx\chkconf.h"
  1212. >
  1213. </File>
  1214. <File
  1215. RelativePath="..\..\include\wx\clntdata.h"
  1216. >
  1217. </File>
  1218. <File
  1219. RelativePath="..\..\include\wx\cmdargs.h"
  1220. >
  1221. </File>
  1222. <File
  1223. RelativePath="..\..\include\wx\cmdline.h"
  1224. >
  1225. </File>
  1226. <File
  1227. RelativePath="..\..\include\wx\compiler.h"
  1228. >
  1229. </File>
  1230. <File
  1231. RelativePath="..\..\include\wx\confbase.h"
  1232. >
  1233. </File>
  1234. <File
  1235. RelativePath="..\..\include\wx\config.h"
  1236. >
  1237. </File>
  1238. <File
  1239. RelativePath="..\..\include\wx\containr.h"
  1240. >
  1241. </File>
  1242. <File
  1243. RelativePath="..\..\include\wx\convauto.h"
  1244. >
  1245. </File>
  1246. <File
  1247. RelativePath="..\..\include\wx\meta\convertible.h"
  1248. >
  1249. </File>
  1250. <File
  1251. RelativePath="..\..\include\wx\cpp.h"
  1252. >
  1253. </File>
  1254. <File
  1255. RelativePath="..\..\include\wx\crt.h"
  1256. >
  1257. </File>
  1258. <File
  1259. RelativePath="..\..\include\wx\datetime.h"
  1260. >
  1261. </File>
  1262. <File
  1263. RelativePath="..\..\include\wx\datstrm.h"
  1264. >
  1265. </File>
  1266. <File
  1267. RelativePath="..\..\include\wx\dde.h"
  1268. >
  1269. </File>
  1270. <File
  1271. RelativePath="..\..\include\wx\debug.h"
  1272. >
  1273. </File>
  1274. <File
  1275. RelativePath="..\..\include\wx\defs.h"
  1276. >
  1277. </File>
  1278. <File
  1279. RelativePath="..\..\include\wx\dir.h"
  1280. >
  1281. </File>
  1282. <File
  1283. RelativePath="..\..\include\wx\dlimpexp.h"
  1284. >
  1285. </File>
  1286. <File
  1287. RelativePath="..\..\include\wx\dlist.h"
  1288. >
  1289. </File>
  1290. <File
  1291. RelativePath="..\..\include\wx\dynarray.h"
  1292. >
  1293. </File>
  1294. <File
  1295. RelativePath="..\..\include\wx\dynlib.h"
  1296. >
  1297. </File>
  1298. <File
  1299. RelativePath="..\..\include\wx\dynload.h"
  1300. >
  1301. </File>
  1302. <File
  1303. RelativePath="..\..\include\wx\encconv.h"
  1304. >
  1305. </File>
  1306. <File
  1307. RelativePath="..\..\include\wx\event.h"
  1308. >
  1309. </File>
  1310. <File
  1311. RelativePath="..\..\include\wx\eventfilter.h"
  1312. >
  1313. </File>
  1314. <File
  1315. RelativePath="..\..\include\wx\evtloop.h"
  1316. >
  1317. </File>
  1318. <File
  1319. RelativePath="..\..\include\wx\except.h"
  1320. >
  1321. </File>
  1322. <File
  1323. RelativePath="..\..\include\wx\features.h"
  1324. >
  1325. </File>
  1326. <File
  1327. RelativePath="..\..\include\wx\ffile.h"
  1328. >
  1329. </File>
  1330. <File
  1331. RelativePath="..\..\include\wx\file.h"
  1332. >
  1333. </File>
  1334. <File
  1335. RelativePath="..\..\include\wx\fileconf.h"
  1336. >
  1337. </File>
  1338. <File
  1339. RelativePath="..\..\include\wx\filefn.h"
  1340. >
  1341. </File>
  1342. <File
  1343. RelativePath="..\..\include\wx\filename.h"
  1344. >
  1345. </File>
  1346. <File
  1347. RelativePath="..\..\include\wx\filesys.h"
  1348. >
  1349. </File>
  1350. <File
  1351. RelativePath="..\..\include\wx\flags.h"
  1352. >
  1353. </File>
  1354. <File
  1355. RelativePath="..\..\include\wx\fontenc.h"
  1356. >
  1357. </File>
  1358. <File
  1359. RelativePath="..\..\include\wx\fontmap.h"
  1360. >
  1361. </File>
  1362. <File
  1363. RelativePath="..\..\include\wx\fs_arc.h"
  1364. >
  1365. </File>
  1366. <File
  1367. RelativePath="..\..\include\wx\fs_filter.h"
  1368. >
  1369. </File>
  1370. <File
  1371. RelativePath="..\..\include\wx\fs_mem.h"
  1372. >
  1373. </File>
  1374. <File
  1375. RelativePath="..\..\include\wx\fs_zip.h"
  1376. >
  1377. </File>
  1378. <File
  1379. RelativePath="..\..\include\wx\fswatcher.h"
  1380. >
  1381. </File>
  1382. <File
  1383. RelativePath="..\..\include\wx\hash.h"
  1384. >
  1385. </File>
  1386. <File
  1387. RelativePath="..\..\include\wx\hashmap.h"
  1388. >
  1389. </File>
  1390. <File
  1391. RelativePath="..\..\include\wx\hashset.h"
  1392. >
  1393. </File>
  1394. <File
  1395. RelativePath="..\..\include\wx\iconloc.h"
  1396. >
  1397. </File>
  1398. <File
  1399. RelativePath="..\..\include\wx\meta\if.h"
  1400. >
  1401. </File>
  1402. <File
  1403. RelativePath="..\..\include\wx\meta\implicitconversion.h"
  1404. >
  1405. </File>
  1406. <File
  1407. RelativePath="..\..\include\wx\init.h"
  1408. >
  1409. </File>
  1410. <File
  1411. RelativePath="..\..\include\wx\meta\int2type.h"
  1412. >
  1413. </File>
  1414. <File
  1415. RelativePath="..\..\include\wx\intl.h"
  1416. >
  1417. </File>
  1418. <File
  1419. RelativePath="..\..\include\wx\iosfwrap.h"
  1420. >
  1421. </File>
  1422. <File
  1423. RelativePath="..\..\include\wx\ioswrap.h"
  1424. >
  1425. </File>
  1426. <File
  1427. RelativePath="..\..\include\wx\ipc.h"
  1428. >
  1429. </File>
  1430. <File
  1431. RelativePath="..\..\include\wx\ipcbase.h"
  1432. >
  1433. </File>
  1434. <File
  1435. RelativePath="..\..\include\wx\kbdstate.h"
  1436. >
  1437. </File>
  1438. <File
  1439. RelativePath="..\..\include\wx\language.h"
  1440. >
  1441. </File>
  1442. <File
  1443. RelativePath="..\..\include\wx\link.h"
  1444. >
  1445. </File>
  1446. <File
  1447. RelativePath="..\..\include\wx\list.h"
  1448. >
  1449. </File>
  1450. <File
  1451. RelativePath="..\..\include\wx\log.h"
  1452. >
  1453. </File>
  1454. <File
  1455. RelativePath="..\..\include\wx\longlong.h"
  1456. >
  1457. </File>
  1458. <File
  1459. RelativePath="..\..\include\wx\math.h"
  1460. >
  1461. </File>
  1462. <File
  1463. RelativePath="..\..\include\wx\memconf.h"
  1464. >
  1465. </File>
  1466. <File
  1467. RelativePath="..\..\include\wx\memory.h"
  1468. >
  1469. </File>
  1470. <File
  1471. RelativePath="..\..\include\wx\memtext.h"
  1472. >
  1473. </File>
  1474. <File
  1475. RelativePath="..\..\include\wx\mimetype.h"
  1476. >
  1477. </File>
  1478. <File
  1479. RelativePath="..\..\include\wx\module.h"
  1480. >
  1481. </File>
  1482. <File
  1483. RelativePath="..\..\include\wx\mousestate.h"
  1484. >
  1485. </File>
  1486. <File
  1487. RelativePath="..\..\include\wx\meta\movable.h"
  1488. >
  1489. </File>
  1490. <File
  1491. RelativePath="..\..\include\wx\msgout.h"
  1492. >
  1493. </File>
  1494. <File
  1495. RelativePath="..\..\include\wx\msgqueue.h"
  1496. >
  1497. </File>
  1498. <File
  1499. RelativePath="..\..\include\wx\mstream.h"
  1500. >
  1501. </File>
  1502. <File
  1503. RelativePath="..\..\include\wx\numformatter.h"
  1504. >
  1505. </File>
  1506. <File
  1507. RelativePath="..\..\include\wx\object.h"
  1508. >
  1509. </File>
  1510. <File
  1511. RelativePath="..\..\include\wx\platform.h"
  1512. >
  1513. </File>
  1514. <File
  1515. RelativePath="..\..\include\wx\platinfo.h"
  1516. >
  1517. </File>
  1518. <File
  1519. RelativePath="..\..\include\wx\meta\pod.h"
  1520. >
  1521. </File>
  1522. <File
  1523. RelativePath="..\..\include\wx\power.h"
  1524. >
  1525. </File>
  1526. <File
  1527. RelativePath="..\..\include\wx\process.h"
  1528. >
  1529. </File>
  1530. <File
  1531. RelativePath="..\..\include\wx\ptr_scpd.h"
  1532. >
  1533. </File>
  1534. <File
  1535. RelativePath="..\..\include\wx\ptr_shrd.h"
  1536. >
  1537. </File>
  1538. <File
  1539. RelativePath="..\..\include\wx\recguard.h"
  1540. >
  1541. </File>
  1542. <File
  1543. RelativePath="..\..\include\wx\regex.h"
  1544. >
  1545. </File>
  1546. <File
  1547. RelativePath="..\..\include\wx\meta\removeref.h"
  1548. >
  1549. </File>
  1550. <File
  1551. RelativePath="..\..\include\wx\rtti.h"
  1552. >
  1553. </File>
  1554. <File
  1555. RelativePath="..\..\include\wx\scopedarray.h"
  1556. >
  1557. </File>
  1558. <File
  1559. RelativePath="..\..\include\wx\scopedptr.h"
  1560. >
  1561. </File>
  1562. <File
  1563. RelativePath="..\..\include\wx\scopeguard.h"
  1564. >
  1565. </File>
  1566. <File
  1567. RelativePath="..\..\include\wx\sharedptr.h"
  1568. >
  1569. </File>
  1570. <File
  1571. RelativePath="..\..\include\wx\snglinst.h"
  1572. >
  1573. </File>
  1574. <File
  1575. RelativePath="..\..\include\wx\sstream.h"
  1576. >
  1577. </File>
  1578. <File
  1579. RelativePath="..\..\include\wx\stack.h"
  1580. >
  1581. </File>
  1582. <File
  1583. RelativePath="..\..\include\wx\stackwalk.h"
  1584. >
  1585. </File>
  1586. <File
  1587. RelativePath="..\..\include\wx\stdpaths.h"
  1588. >
  1589. </File>
  1590. <File
  1591. RelativePath="..\..\include\wx\stdstream.h"
  1592. >
  1593. </File>
  1594. <File
  1595. RelativePath="..\..\include\wx\stockitem.h"
  1596. >
  1597. </File>
  1598. <File
  1599. RelativePath="..\..\include\wx\stopwatch.h"
  1600. >
  1601. </File>
  1602. <File
  1603. RelativePath="..\..\include\wx\strconv.h"
  1604. >
  1605. </File>
  1606. <File
  1607. RelativePath="..\..\include\wx\stream.h"
  1608. >
  1609. </File>
  1610. <File
  1611. RelativePath="..\..\include\wx\string.h"
  1612. >
  1613. </File>
  1614. <File
  1615. RelativePath="..\..\include\wx\stringimpl.h"
  1616. >
  1617. </File>
  1618. <File
  1619. RelativePath="..\..\include\wx\stringops.h"
  1620. >
  1621. </File>
  1622. <File
  1623. RelativePath="..\..\include\wx\strvararg.h"
  1624. >
  1625. </File>
  1626. <File
  1627. RelativePath="..\..\include\wx\sysopt.h"
  1628. >
  1629. </File>
  1630. <File
  1631. RelativePath="..\..\include\wx\tarstrm.h"
  1632. >
  1633. </File>
  1634. <File
  1635. RelativePath="..\..\include\wx\textbuf.h"
  1636. >
  1637. </File>
  1638. <File
  1639. RelativePath="..\..\include\wx\textfile.h"
  1640. >
  1641. </File>
  1642. <File
  1643. RelativePath="..\..\include\wx\thread.h"
  1644. >
  1645. </File>
  1646. <File
  1647. RelativePath="..\..\include\wx\time.h"
  1648. >
  1649. </File>
  1650. <File
  1651. RelativePath="..\..\include\wx\timer.h"
  1652. >
  1653. </File>
  1654. <File
  1655. RelativePath="..\..\include\wx\tls.h"
  1656. >
  1657. </File>
  1658. <File
  1659. RelativePath="..\..\include\wx\tokenzr.h"
  1660. >
  1661. </File>
  1662. <File
  1663. RelativePath="..\..\include\wx\tracker.h"
  1664. >
  1665. </File>
  1666. <File
  1667. RelativePath="..\..\include\wx\translation.h"
  1668. >
  1669. </File>
  1670. <File
  1671. RelativePath="..\..\include\wx\txtstrm.h"
  1672. >
  1673. </File>
  1674. <File
  1675. RelativePath="..\..\include\wx\typeinfo.h"
  1676. >
  1677. </File>
  1678. <File
  1679. RelativePath="..\..\include\wx\types.h"
  1680. >
  1681. </File>
  1682. <File
  1683. RelativePath="..\..\include\wx\unichar.h"
  1684. >
  1685. </File>
  1686. <File
  1687. RelativePath="..\..\include\wx\uri.h"
  1688. >
  1689. </File>
  1690. <File
  1691. RelativePath="..\..\include\wx\ustring.h"
  1692. >
  1693. </File>
  1694. <File
  1695. RelativePath="..\..\include\wx\utils.h"
  1696. >
  1697. </File>
  1698. <File
  1699. RelativePath="..\..\include\wx\variant.h"
  1700. >
  1701. </File>
  1702. <File
  1703. RelativePath="..\..\include\wx\vector.h"
  1704. >
  1705. </File>
  1706. <File
  1707. RelativePath="..\..\include\wx\version.h"
  1708. >
  1709. </File>
  1710. <File
  1711. RelativePath="..\..\include\wx\versioninfo.h"
  1712. >
  1713. </File>
  1714. <File
  1715. RelativePath="..\..\include\wx\volume.h"
  1716. >
  1717. </File>
  1718. <File
  1719. RelativePath="..\..\include\wx\weakref.h"
  1720. >
  1721. </File>
  1722. <File
  1723. RelativePath="..\..\include\wx\wfstream.h"
  1724. >
  1725. </File>
  1726. <File
  1727. RelativePath="..\..\include\wx\wx.h"
  1728. >
  1729. </File>
  1730. <File
  1731. RelativePath="..\..\include\wx\wxchar.h"
  1732. >
  1733. </File>
  1734. <File
  1735. RelativePath="..\..\include\wx\wxcrt.h"
  1736. >
  1737. </File>
  1738. <File
  1739. RelativePath="..\..\include\wx\wxcrtbase.h"
  1740. >
  1741. </File>
  1742. <File
  1743. RelativePath="..\..\include\wx\wxcrtvararg.h"
  1744. >
  1745. </File>
  1746. <File
  1747. RelativePath="..\..\include\wx\wxprec.h"
  1748. >
  1749. </File>
  1750. <File
  1751. RelativePath="..\..\include\wx\xlocale.h"
  1752. >
  1753. </File>
  1754. <File
  1755. RelativePath="..\..\include\wx\xti.h"
  1756. >
  1757. </File>
  1758. <File
  1759. RelativePath="..\..\include\wx\xti2.h"
  1760. >
  1761. </File>
  1762. <File
  1763. RelativePath="..\..\include\wx\xtictor.h"
  1764. >
  1765. </File>
  1766. <File
  1767. RelativePath="..\..\include\wx\xtihandler.h"
  1768. >
  1769. </File>
  1770. <File
  1771. RelativePath="..\..\include\wx\xtiprop.h"
  1772. >
  1773. </File>
  1774. <File
  1775. RelativePath="..\..\include\wx\xtistrm.h"
  1776. >
  1777. </File>
  1778. <File
  1779. RelativePath="..\..\include\wx\xtitypes.h"
  1780. >
  1781. </File>
  1782. <File
  1783. RelativePath="..\..\include\wx\zipstrm.h"
  1784. >
  1785. </File>
  1786. <File
  1787. RelativePath="..\..\include\wx\zstream.h"
  1788. >
  1789. </File>
  1790. </Filter>
  1791. </Files>
  1792. <Globals>
  1793. </Globals>
  1794. </VisualStudioProject>