wx_vc8_base.vcproj 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325
  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. <Platform
  18. Name="x64"
  19. />
  20. </Platforms>
  21. <ToolFiles>
  22. </ToolFiles>
  23. <Configurations>
  24. <Configuration
  25. Name="Debug|Win32"
  26. OutputDirectory="..\..\lib\vc_lib"
  27. IntermediateDirectory="vc_mswud\base"
  28. ConfigurationType="4"
  29. UseOfMFC="0"
  30. ATLMinimizesCRunTimeLibraryUsage="false"
  31. CharacterSet="1"
  32. >
  33. <Tool
  34. Name="VCPreBuildEventTool"
  35. />
  36. <Tool
  37. Name="VCCustomBuildTool"
  38. />
  39. <Tool
  40. Name="VCXMLDataGeneratorTool"
  41. />
  42. <Tool
  43. Name="VCWebServiceProxyGeneratorTool"
  44. />
  45. <Tool
  46. Name="VCMIDLTool"
  47. 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"
  48. AdditionalIncludeDirectories="..\..\lib\vc_lib\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  49. />
  50. <Tool
  51. Name="VCCLCompilerTool"
  52. Optimization="0"
  53. AdditionalIncludeDirectories="..\..\lib\vc_lib\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  54. 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"
  55. MinimalRebuild="true"
  56. ExceptionHandling="1"
  57. BasicRuntimeChecks="3"
  58. RuntimeLibrary="3"
  59. BufferSecurityCheck="true"
  60. RuntimeTypeInfo="true"
  61. UsePrecompiledHeader="2"
  62. PrecompiledHeaderThrough="wx/wxprec.h"
  63. PrecompiledHeaderFile="vc_mswud\wxprec_baselib.pch"
  64. ObjectFile="vc_mswud\base\"
  65. ProgramDataBaseFileName="..\..\lib\vc_lib\wxbase30ud.pdb"
  66. WarningLevel="4"
  67. SuppressStartupBanner="true"
  68. Detect64BitPortabilityProblems="true"
  69. DebugInformationFormat="3"
  70. />
  71. <Tool
  72. Name="VCManagedResourceCompilerTool"
  73. />
  74. <Tool
  75. Name="VCResourceCompilerTool"
  76. 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"
  77. Culture="1033"
  78. AdditionalIncludeDirectories="..\..\lib\vc_lib\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  79. />
  80. <Tool
  81. Name="VCPreLinkEventTool"
  82. />
  83. <Tool
  84. Name="VCLibrarianTool"
  85. OutputFile="..\..\lib\vc_lib\wxbase30ud.lib"
  86. SuppressStartupBanner="true"
  87. />
  88. <Tool
  89. Name="VCALinkTool"
  90. />
  91. <Tool
  92. Name="VCManifestTool"
  93. />
  94. <Tool
  95. Name="VCXDCMakeTool"
  96. />
  97. <Tool
  98. Name="VCBscMakeTool"
  99. OutputFile="..\..\lib\vc_lib\wx_vc8_base.bsc"
  100. SuppressStartupBanner="true"
  101. />
  102. <Tool
  103. Name="VCFxCopTool"
  104. />
  105. <Tool
  106. Name="VCPostBuildEventTool"
  107. />
  108. </Configuration>
  109. <Configuration
  110. Name="Release|Win32"
  111. OutputDirectory="..\..\lib\vc_lib"
  112. IntermediateDirectory="vc_mswu\base"
  113. ConfigurationType="4"
  114. UseOfMFC="0"
  115. ATLMinimizesCRunTimeLibraryUsage="false"
  116. CharacterSet="1"
  117. >
  118. <Tool
  119. Name="VCPreBuildEventTool"
  120. />
  121. <Tool
  122. Name="VCCustomBuildTool"
  123. />
  124. <Tool
  125. Name="VCXMLDataGeneratorTool"
  126. />
  127. <Tool
  128. Name="VCWebServiceProxyGeneratorTool"
  129. />
  130. <Tool
  131. Name="VCMIDLTool"
  132. 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"
  133. AdditionalIncludeDirectories="..\..\lib\vc_lib\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  134. />
  135. <Tool
  136. Name="VCCLCompilerTool"
  137. Optimization="2"
  138. AdditionalIncludeDirectories="..\..\lib\vc_lib\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  139. 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"
  140. ExceptionHandling="1"
  141. RuntimeLibrary="2"
  142. RuntimeTypeInfo="true"
  143. UsePrecompiledHeader="2"
  144. PrecompiledHeaderThrough="wx/wxprec.h"
  145. PrecompiledHeaderFile="vc_mswu\wxprec_baselib.pch"
  146. ObjectFile="vc_mswu\base\"
  147. ProgramDataBaseFileName="..\..\lib\vc_lib\wxbase30u.pdb"
  148. WarningLevel="4"
  149. SuppressStartupBanner="true"
  150. Detect64BitPortabilityProblems="true"
  151. DebugInformationFormat="3"
  152. />
  153. <Tool
  154. Name="VCManagedResourceCompilerTool"
  155. />
  156. <Tool
  157. Name="VCResourceCompilerTool"
  158. 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"
  159. Culture="1033"
  160. AdditionalIncludeDirectories="..\..\lib\vc_lib\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  161. />
  162. <Tool
  163. Name="VCPreLinkEventTool"
  164. />
  165. <Tool
  166. Name="VCLibrarianTool"
  167. OutputFile="..\..\lib\vc_lib\wxbase30u.lib"
  168. SuppressStartupBanner="true"
  169. />
  170. <Tool
  171. Name="VCALinkTool"
  172. />
  173. <Tool
  174. Name="VCManifestTool"
  175. />
  176. <Tool
  177. Name="VCXDCMakeTool"
  178. />
  179. <Tool
  180. Name="VCBscMakeTool"
  181. OutputFile="..\..\lib\vc_lib\wx_vc8_base.bsc"
  182. SuppressStartupBanner="true"
  183. />
  184. <Tool
  185. Name="VCFxCopTool"
  186. />
  187. <Tool
  188. Name="VCPostBuildEventTool"
  189. />
  190. </Configuration>
  191. <Configuration
  192. Name="DLL Debug|Win32"
  193. OutputDirectory="..\..\lib\vc_dll"
  194. IntermediateDirectory="vc_mswuddll\base"
  195. ConfigurationType="2"
  196. UseOfMFC="0"
  197. ATLMinimizesCRunTimeLibraryUsage="false"
  198. CharacterSet="1"
  199. >
  200. <Tool
  201. Name="VCPreBuildEventTool"
  202. />
  203. <Tool
  204. Name="VCCustomBuildTool"
  205. />
  206. <Tool
  207. Name="VCXMLDataGeneratorTool"
  208. />
  209. <Tool
  210. Name="VCWebServiceProxyGeneratorTool"
  211. />
  212. <Tool
  213. Name="VCMIDLTool"
  214. 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"
  215. AdditionalIncludeDirectories="..\..\lib\vc_dll\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  216. />
  217. <Tool
  218. Name="VCCLCompilerTool"
  219. Optimization="0"
  220. AdditionalIncludeDirectories="..\..\lib\vc_dll\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  221. 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"
  222. MinimalRebuild="true"
  223. ExceptionHandling="1"
  224. BasicRuntimeChecks="3"
  225. RuntimeLibrary="3"
  226. BufferSecurityCheck="true"
  227. RuntimeTypeInfo="true"
  228. UsePrecompiledHeader="2"
  229. PrecompiledHeaderThrough="wx/wxprec.h"
  230. PrecompiledHeaderFile="vc_mswuddll\wxprec_basedll.pch"
  231. ObjectFile="vc_mswuddll\base\"
  232. ProgramDataBaseFileName="..\..\lib\vc_dll\wxbase30ud_vc_custom.pdb"
  233. WarningLevel="4"
  234. SuppressStartupBanner="true"
  235. Detect64BitPortabilityProblems="true"
  236. DebugInformationFormat="3"
  237. />
  238. <Tool
  239. Name="VCManagedResourceCompilerTool"
  240. />
  241. <Tool
  242. Name="VCResourceCompilerTool"
  243. 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"
  244. Culture="1033"
  245. AdditionalIncludeDirectories="..\..\lib\vc_dll\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  246. />
  247. <Tool
  248. Name="VCPreLinkEventTool"
  249. />
  250. <Tool
  251. Name="VCLinkerTool"
  252. AdditionalOptions=""
  253. 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"
  254. OutputFile="..\..\lib\vc_dll\wxbase30ud_vc_custom.dll"
  255. LinkIncremental="2"
  256. ImportLibrary="..\..\lib\vc_dll\wxbase30ud.lib"
  257. SuppressStartupBanner="true"
  258. AdditionalLibraryDirectories="..\..\lib\vc_dll"
  259. GenerateManifest="true"
  260. GenerateDebugInformation="true"
  261. ProgramDatabaseFile="..\..\lib\vc_dll\wxbase30ud_vc_custom.pdb"
  262. TargetMachine="1"
  263. />
  264. <Tool
  265. Name="VCALinkTool"
  266. />
  267. <Tool
  268. Name="VCManifestTool"
  269. />
  270. <Tool
  271. Name="VCXDCMakeTool"
  272. />
  273. <Tool
  274. Name="VCBscMakeTool"
  275. OutputFile="..\..\lib\vc_dll\wx_vc8_base.bsc"
  276. SuppressStartupBanner="true"
  277. />
  278. <Tool
  279. Name="VCFxCopTool"
  280. />
  281. <Tool
  282. Name="VCPostBuildEventTool"
  283. />
  284. </Configuration>
  285. <Configuration
  286. Name="DLL Release|Win32"
  287. OutputDirectory="..\..\lib\vc_dll"
  288. IntermediateDirectory="vc_mswudll\base"
  289. ConfigurationType="2"
  290. UseOfMFC="0"
  291. ATLMinimizesCRunTimeLibraryUsage="false"
  292. CharacterSet="1"
  293. >
  294. <Tool
  295. Name="VCPreBuildEventTool"
  296. />
  297. <Tool
  298. Name="VCCustomBuildTool"
  299. />
  300. <Tool
  301. Name="VCXMLDataGeneratorTool"
  302. />
  303. <Tool
  304. Name="VCWebServiceProxyGeneratorTool"
  305. />
  306. <Tool
  307. Name="VCMIDLTool"
  308. 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"
  309. AdditionalIncludeDirectories="..\..\lib\vc_dll\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  310. />
  311. <Tool
  312. Name="VCCLCompilerTool"
  313. Optimization="2"
  314. AdditionalIncludeDirectories="..\..\lib\vc_dll\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  315. 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"
  316. ExceptionHandling="1"
  317. RuntimeLibrary="2"
  318. RuntimeTypeInfo="true"
  319. UsePrecompiledHeader="2"
  320. PrecompiledHeaderThrough="wx/wxprec.h"
  321. PrecompiledHeaderFile="vc_mswudll\wxprec_basedll.pch"
  322. ObjectFile="vc_mswudll\base\"
  323. ProgramDataBaseFileName="..\..\lib\vc_dll\wxbase30u_vc_custom.pdb"
  324. WarningLevel="4"
  325. SuppressStartupBanner="true"
  326. Detect64BitPortabilityProblems="true"
  327. DebugInformationFormat="3"
  328. />
  329. <Tool
  330. Name="VCManagedResourceCompilerTool"
  331. />
  332. <Tool
  333. Name="VCResourceCompilerTool"
  334. 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"
  335. Culture="1033"
  336. AdditionalIncludeDirectories="..\..\lib\vc_dll\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  337. />
  338. <Tool
  339. Name="VCPreLinkEventTool"
  340. />
  341. <Tool
  342. Name="VCLinkerTool"
  343. AdditionalOptions=""
  344. 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"
  345. OutputFile="..\..\lib\vc_dll\wxbase30u_vc_custom.dll"
  346. LinkIncremental="1"
  347. ImportLibrary="..\..\lib\vc_dll\wxbase30u.lib"
  348. SuppressStartupBanner="true"
  349. AdditionalLibraryDirectories="..\..\lib\vc_dll"
  350. GenerateManifest="true"
  351. GenerateDebugInformation="true"
  352. ProgramDatabaseFile="..\..\lib\vc_dll\wxbase30u_vc_custom.pdb"
  353. TargetMachine="1"
  354. OptimizeReferences="2"
  355. EnableCOMDATFolding="2"
  356. />
  357. <Tool
  358. Name="VCALinkTool"
  359. />
  360. <Tool
  361. Name="VCManifestTool"
  362. />
  363. <Tool
  364. Name="VCXDCMakeTool"
  365. />
  366. <Tool
  367. Name="VCBscMakeTool"
  368. OutputFile="..\..\lib\vc_dll\wx_vc8_base.bsc"
  369. SuppressStartupBanner="true"
  370. />
  371. <Tool
  372. Name="VCFxCopTool"
  373. />
  374. <Tool
  375. Name="VCPostBuildEventTool"
  376. />
  377. </Configuration>
  378. <Configuration
  379. Name="Debug|x64"
  380. OutputDirectory="..\..\lib\vc_x64_lib"
  381. IntermediateDirectory="vc_mswud_x64\base"
  382. ConfigurationType="4"
  383. UseOfMFC="0"
  384. ATLMinimizesCRunTimeLibraryUsage="false"
  385. CharacterSet="1"
  386. >
  387. <Tool
  388. Name="VCPreBuildEventTool"
  389. />
  390. <Tool
  391. Name="VCCustomBuildTool"
  392. />
  393. <Tool
  394. Name="VCXMLDataGeneratorTool"
  395. />
  396. <Tool
  397. Name="VCWebServiceProxyGeneratorTool"
  398. />
  399. <Tool
  400. Name="VCMIDLTool"
  401. 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"
  402. AdditionalIncludeDirectories="..\..\lib\vc_x64_lib\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  403. />
  404. <Tool
  405. Name="VCCLCompilerTool"
  406. Optimization="0"
  407. AdditionalIncludeDirectories="..\..\lib\vc_x64_lib\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  408. 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"
  409. MinimalRebuild="true"
  410. ExceptionHandling="1"
  411. BasicRuntimeChecks="3"
  412. RuntimeLibrary="3"
  413. BufferSecurityCheck="true"
  414. RuntimeTypeInfo="true"
  415. UsePrecompiledHeader="2"
  416. PrecompiledHeaderThrough="wx/wxprec.h"
  417. PrecompiledHeaderFile="vc_mswud_x64\wxprec_baselib.pch"
  418. ObjectFile="vc_mswud_x64\base\"
  419. ProgramDataBaseFileName="..\..\lib\vc_x64_lib\wxbase30ud.pdb"
  420. WarningLevel="4"
  421. SuppressStartupBanner="true"
  422. Detect64BitPortabilityProblems="true"
  423. DebugInformationFormat="3"
  424. />
  425. <Tool
  426. Name="VCManagedResourceCompilerTool"
  427. />
  428. <Tool
  429. Name="VCResourceCompilerTool"
  430. 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"
  431. Culture="1033"
  432. AdditionalIncludeDirectories="..\..\lib\vc_x64_lib\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  433. />
  434. <Tool
  435. Name="VCPreLinkEventTool"
  436. />
  437. <Tool
  438. Name="VCLibrarianTool"
  439. OutputFile="..\..\lib\vc_x64_lib\wxbase30ud.lib"
  440. SuppressStartupBanner="true"
  441. />
  442. <Tool
  443. Name="VCALinkTool"
  444. />
  445. <Tool
  446. Name="VCManifestTool"
  447. />
  448. <Tool
  449. Name="VCXDCMakeTool"
  450. />
  451. <Tool
  452. Name="VCBscMakeTool"
  453. OutputFile="..\..\lib\vc_x64_lib\wx_vc8_base.bsc"
  454. SuppressStartupBanner="true"
  455. />
  456. <Tool
  457. Name="VCFxCopTool"
  458. />
  459. <Tool
  460. Name="VCPostBuildEventTool"
  461. />
  462. </Configuration>
  463. <Configuration
  464. Name="Release|x64"
  465. OutputDirectory="..\..\lib\vc_x64_lib"
  466. IntermediateDirectory="vc_mswu_x64\base"
  467. ConfigurationType="4"
  468. UseOfMFC="0"
  469. ATLMinimizesCRunTimeLibraryUsage="false"
  470. CharacterSet="1"
  471. >
  472. <Tool
  473. Name="VCPreBuildEventTool"
  474. />
  475. <Tool
  476. Name="VCCustomBuildTool"
  477. />
  478. <Tool
  479. Name="VCXMLDataGeneratorTool"
  480. />
  481. <Tool
  482. Name="VCWebServiceProxyGeneratorTool"
  483. />
  484. <Tool
  485. Name="VCMIDLTool"
  486. 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"
  487. AdditionalIncludeDirectories="..\..\lib\vc_x64_lib\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  488. />
  489. <Tool
  490. Name="VCCLCompilerTool"
  491. Optimization="2"
  492. AdditionalIncludeDirectories="..\..\lib\vc_x64_lib\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  493. 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"
  494. ExceptionHandling="1"
  495. RuntimeLibrary="2"
  496. RuntimeTypeInfo="true"
  497. UsePrecompiledHeader="2"
  498. PrecompiledHeaderThrough="wx/wxprec.h"
  499. PrecompiledHeaderFile="vc_mswu_x64\wxprec_baselib.pch"
  500. ObjectFile="vc_mswu_x64\base\"
  501. ProgramDataBaseFileName="..\..\lib\vc_x64_lib\wxbase30u.pdb"
  502. WarningLevel="4"
  503. SuppressStartupBanner="true"
  504. Detect64BitPortabilityProblems="true"
  505. DebugInformationFormat="3"
  506. />
  507. <Tool
  508. Name="VCManagedResourceCompilerTool"
  509. />
  510. <Tool
  511. Name="VCResourceCompilerTool"
  512. 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"
  513. Culture="1033"
  514. AdditionalIncludeDirectories="..\..\lib\vc_x64_lib\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  515. />
  516. <Tool
  517. Name="VCPreLinkEventTool"
  518. />
  519. <Tool
  520. Name="VCLibrarianTool"
  521. OutputFile="..\..\lib\vc_x64_lib\wxbase30u.lib"
  522. SuppressStartupBanner="true"
  523. />
  524. <Tool
  525. Name="VCALinkTool"
  526. />
  527. <Tool
  528. Name="VCManifestTool"
  529. />
  530. <Tool
  531. Name="VCXDCMakeTool"
  532. />
  533. <Tool
  534. Name="VCBscMakeTool"
  535. OutputFile="..\..\lib\vc_x64_lib\wx_vc8_base.bsc"
  536. SuppressStartupBanner="true"
  537. />
  538. <Tool
  539. Name="VCFxCopTool"
  540. />
  541. <Tool
  542. Name="VCPostBuildEventTool"
  543. />
  544. </Configuration>
  545. <Configuration
  546. Name="DLL Debug|x64"
  547. OutputDirectory="..\..\lib\vc_x64_dll"
  548. IntermediateDirectory="vc_mswuddll_x64\base"
  549. ConfigurationType="2"
  550. UseOfMFC="0"
  551. ATLMinimizesCRunTimeLibraryUsage="false"
  552. CharacterSet="1"
  553. >
  554. <Tool
  555. Name="VCPreBuildEventTool"
  556. />
  557. <Tool
  558. Name="VCCustomBuildTool"
  559. />
  560. <Tool
  561. Name="VCXMLDataGeneratorTool"
  562. />
  563. <Tool
  564. Name="VCWebServiceProxyGeneratorTool"
  565. />
  566. <Tool
  567. Name="VCMIDLTool"
  568. 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"
  569. AdditionalIncludeDirectories="..\..\lib\vc_x64_dll\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  570. />
  571. <Tool
  572. Name="VCCLCompilerTool"
  573. Optimization="0"
  574. AdditionalIncludeDirectories="..\..\lib\vc_x64_dll\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  575. 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"
  576. MinimalRebuild="true"
  577. ExceptionHandling="1"
  578. BasicRuntimeChecks="3"
  579. RuntimeLibrary="3"
  580. BufferSecurityCheck="true"
  581. RuntimeTypeInfo="true"
  582. UsePrecompiledHeader="2"
  583. PrecompiledHeaderThrough="wx/wxprec.h"
  584. PrecompiledHeaderFile="vc_mswuddll_x64\wxprec_basedll.pch"
  585. ObjectFile="vc_mswuddll_x64\base\"
  586. ProgramDataBaseFileName="..\..\lib\vc_x64_dll\wxbase30ud_vc_custom.pdb"
  587. WarningLevel="4"
  588. SuppressStartupBanner="true"
  589. Detect64BitPortabilityProblems="true"
  590. DebugInformationFormat="3"
  591. />
  592. <Tool
  593. Name="VCManagedResourceCompilerTool"
  594. />
  595. <Tool
  596. Name="VCResourceCompilerTool"
  597. 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"
  598. Culture="1033"
  599. AdditionalIncludeDirectories="..\..\lib\vc_x64_dll\mswud;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  600. />
  601. <Tool
  602. Name="VCPreLinkEventTool"
  603. />
  604. <Tool
  605. Name="VCLinkerTool"
  606. AdditionalOptions=""
  607. 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"
  608. OutputFile="..\..\lib\vc_x64_dll\wxbase30ud_vc_custom.dll"
  609. LinkIncremental="2"
  610. ImportLibrary="..\..\lib\vc_x64_dll\wxbase30ud.lib"
  611. SuppressStartupBanner="true"
  612. AdditionalLibraryDirectories="..\..\lib\vc_x64_dll"
  613. GenerateManifest="true"
  614. GenerateDebugInformation="true"
  615. ProgramDatabaseFile="..\..\lib\vc_x64_dll\wxbase30ud_vc_custom.pdb"
  616. TargetMachine="17"
  617. />
  618. <Tool
  619. Name="VCALinkTool"
  620. />
  621. <Tool
  622. Name="VCManifestTool"
  623. />
  624. <Tool
  625. Name="VCXDCMakeTool"
  626. />
  627. <Tool
  628. Name="VCBscMakeTool"
  629. OutputFile="..\..\lib\vc_x64_dll\wx_vc8_base.bsc"
  630. SuppressStartupBanner="true"
  631. />
  632. <Tool
  633. Name="VCFxCopTool"
  634. />
  635. <Tool
  636. Name="VCPostBuildEventTool"
  637. />
  638. </Configuration>
  639. <Configuration
  640. Name="DLL Release|x64"
  641. OutputDirectory="..\..\lib\vc_x64_dll"
  642. IntermediateDirectory="vc_mswudll_x64\base"
  643. ConfigurationType="2"
  644. UseOfMFC="0"
  645. ATLMinimizesCRunTimeLibraryUsage="false"
  646. CharacterSet="1"
  647. >
  648. <Tool
  649. Name="VCPreBuildEventTool"
  650. />
  651. <Tool
  652. Name="VCCustomBuildTool"
  653. />
  654. <Tool
  655. Name="VCXMLDataGeneratorTool"
  656. />
  657. <Tool
  658. Name="VCWebServiceProxyGeneratorTool"
  659. />
  660. <Tool
  661. Name="VCMIDLTool"
  662. 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"
  663. AdditionalIncludeDirectories="..\..\lib\vc_x64_dll\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  664. />
  665. <Tool
  666. Name="VCCLCompilerTool"
  667. Optimization="2"
  668. AdditionalIncludeDirectories="..\..\lib\vc_x64_dll\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  669. 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"
  670. ExceptionHandling="1"
  671. RuntimeLibrary="2"
  672. RuntimeTypeInfo="true"
  673. UsePrecompiledHeader="2"
  674. PrecompiledHeaderThrough="wx/wxprec.h"
  675. PrecompiledHeaderFile="vc_mswudll_x64\wxprec_basedll.pch"
  676. ObjectFile="vc_mswudll_x64\base\"
  677. ProgramDataBaseFileName="..\..\lib\vc_x64_dll\wxbase30u_vc_custom.pdb"
  678. WarningLevel="4"
  679. SuppressStartupBanner="true"
  680. Detect64BitPortabilityProblems="true"
  681. DebugInformationFormat="3"
  682. />
  683. <Tool
  684. Name="VCManagedResourceCompilerTool"
  685. />
  686. <Tool
  687. Name="VCResourceCompilerTool"
  688. 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"
  689. Culture="1033"
  690. AdditionalIncludeDirectories="..\..\lib\vc_x64_dll\mswu;..\..\include;..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\lib"
  691. />
  692. <Tool
  693. Name="VCPreLinkEventTool"
  694. />
  695. <Tool
  696. Name="VCLinkerTool"
  697. AdditionalOptions=""
  698. 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"
  699. OutputFile="..\..\lib\vc_x64_dll\wxbase30u_vc_custom.dll"
  700. LinkIncremental="1"
  701. ImportLibrary="..\..\lib\vc_x64_dll\wxbase30u.lib"
  702. SuppressStartupBanner="true"
  703. AdditionalLibraryDirectories="..\..\lib\vc_x64_dll"
  704. GenerateManifest="true"
  705. GenerateDebugInformation="true"
  706. ProgramDatabaseFile="..\..\lib\vc_x64_dll\wxbase30u_vc_custom.pdb"
  707. TargetMachine="17"
  708. OptimizeReferences="2"
  709. EnableCOMDATFolding="2"
  710. />
  711. <Tool
  712. Name="VCALinkTool"
  713. />
  714. <Tool
  715. Name="VCManifestTool"
  716. />
  717. <Tool
  718. Name="VCXDCMakeTool"
  719. />
  720. <Tool
  721. Name="VCBscMakeTool"
  722. OutputFile="..\..\lib\vc_x64_dll\wx_vc8_base.bsc"
  723. SuppressStartupBanner="true"
  724. />
  725. <Tool
  726. Name="VCFxCopTool"
  727. />
  728. <Tool
  729. Name="VCPostBuildEventTool"
  730. />
  731. </Configuration>
  732. </Configurations>
  733. <References>
  734. </References>
  735. <Files>
  736. <Filter
  737. Name="Common Sources"
  738. UniqueIdentifier="{A6A5C30D-BDB6-5050-906D-10A96065136C}"
  739. >
  740. <File
  741. RelativePath="..\..\src\common\any.cpp"
  742. >
  743. </File>
  744. <File
  745. RelativePath="..\..\src\common\appbase.cpp"
  746. >
  747. </File>
  748. <File
  749. RelativePath="..\..\src\common\arcall.cpp"
  750. >
  751. </File>
  752. <File
  753. RelativePath="..\..\src\common\arcfind.cpp"
  754. >
  755. </File>
  756. <File
  757. RelativePath="..\..\src\common\archive.cpp"
  758. >
  759. </File>
  760. <File
  761. RelativePath="..\..\src\common\arrstr.cpp"
  762. >
  763. </File>
  764. <File
  765. RelativePath="..\..\src\common\base64.cpp"
  766. >
  767. </File>
  768. <File
  769. RelativePath="..\..\src\common\clntdata.cpp"
  770. >
  771. </File>
  772. <File
  773. RelativePath="..\..\src\common\cmdline.cpp"
  774. >
  775. </File>
  776. <File
  777. RelativePath="..\..\src\common\config.cpp"
  778. >
  779. </File>
  780. <File
  781. RelativePath="..\..\src\common\convauto.cpp"
  782. >
  783. </File>
  784. <File
  785. RelativePath="..\..\src\common\datetime.cpp"
  786. >
  787. </File>
  788. <File
  789. RelativePath="..\..\src\common\datetimefmt.cpp"
  790. >
  791. </File>
  792. <File
  793. RelativePath="..\..\src\common\datstrm.cpp"
  794. >
  795. </File>
  796. <File
  797. RelativePath="..\..\src\common\dircmn.cpp"
  798. >
  799. </File>
  800. <File
  801. RelativePath="..\..\src\common\dummy.cpp"
  802. >
  803. <FileConfiguration
  804. Name="Debug|Win32"
  805. >
  806. <Tool
  807. Name="VCCLCompilerTool"
  808. UsePrecompiledHeader="1"
  809. />
  810. </FileConfiguration>
  811. <FileConfiguration
  812. Name="Release|Win32"
  813. >
  814. <Tool
  815. Name="VCCLCompilerTool"
  816. UsePrecompiledHeader="1"
  817. />
  818. </FileConfiguration>
  819. <FileConfiguration
  820. Name="DLL Debug|Win32"
  821. >
  822. <Tool
  823. Name="VCCLCompilerTool"
  824. UsePrecompiledHeader="1"
  825. />
  826. </FileConfiguration>
  827. <FileConfiguration
  828. Name="DLL Release|Win32"
  829. >
  830. <Tool
  831. Name="VCCLCompilerTool"
  832. UsePrecompiledHeader="1"
  833. />
  834. </FileConfiguration>
  835. <FileConfiguration
  836. Name="Debug|x64"
  837. >
  838. <Tool
  839. Name="VCCLCompilerTool"
  840. UsePrecompiledHeader="1"
  841. />
  842. </FileConfiguration>
  843. <FileConfiguration
  844. Name="Release|x64"
  845. >
  846. <Tool
  847. Name="VCCLCompilerTool"
  848. UsePrecompiledHeader="1"
  849. />
  850. </FileConfiguration>
  851. <FileConfiguration
  852. Name="DLL Debug|x64"
  853. >
  854. <Tool
  855. Name="VCCLCompilerTool"
  856. UsePrecompiledHeader="1"
  857. />
  858. </FileConfiguration>
  859. <FileConfiguration
  860. Name="DLL Release|x64"
  861. >
  862. <Tool
  863. Name="VCCLCompilerTool"
  864. UsePrecompiledHeader="1"
  865. />
  866. </FileConfiguration>
  867. </File>
  868. <File
  869. RelativePath="..\..\src\common\dynarray.cpp"
  870. >
  871. </File>
  872. <File
  873. RelativePath="..\..\src\common\dynlib.cpp"
  874. >
  875. </File>
  876. <File
  877. RelativePath="..\..\src\common\dynload.cpp"
  878. >
  879. </File>
  880. <File
  881. RelativePath="..\..\src\common\encconv.cpp"
  882. >
  883. </File>
  884. <File
  885. RelativePath="..\..\src\common\event.cpp"
  886. >
  887. </File>
  888. <File
  889. RelativePath="..\..\src\common\evtloopcmn.cpp"
  890. >
  891. </File>
  892. <File
  893. RelativePath="..\..\src\common\extended.c"
  894. >
  895. <FileConfiguration
  896. Name="Debug|Win32"
  897. >
  898. <Tool
  899. Name="VCCLCompilerTool"
  900. UsePrecompiledHeader="0"
  901. />
  902. </FileConfiguration>
  903. <FileConfiguration
  904. Name="Release|Win32"
  905. >
  906. <Tool
  907. Name="VCCLCompilerTool"
  908. UsePrecompiledHeader="0"
  909. />
  910. </FileConfiguration>
  911. <FileConfiguration
  912. Name="DLL Debug|Win32"
  913. >
  914. <Tool
  915. Name="VCCLCompilerTool"
  916. UsePrecompiledHeader="0"
  917. />
  918. </FileConfiguration>
  919. <FileConfiguration
  920. Name="DLL Release|Win32"
  921. >
  922. <Tool
  923. Name="VCCLCompilerTool"
  924. UsePrecompiledHeader="0"
  925. />
  926. </FileConfiguration>
  927. <FileConfiguration
  928. Name="Debug|x64"
  929. >
  930. <Tool
  931. Name="VCCLCompilerTool"
  932. UsePrecompiledHeader="0"
  933. />
  934. </FileConfiguration>
  935. <FileConfiguration
  936. Name="Release|x64"
  937. >
  938. <Tool
  939. Name="VCCLCompilerTool"
  940. UsePrecompiledHeader="0"
  941. />
  942. </FileConfiguration>
  943. <FileConfiguration
  944. Name="DLL Debug|x64"
  945. >
  946. <Tool
  947. Name="VCCLCompilerTool"
  948. UsePrecompiledHeader="0"
  949. />
  950. </FileConfiguration>
  951. <FileConfiguration
  952. Name="DLL Release|x64"
  953. >
  954. <Tool
  955. Name="VCCLCompilerTool"
  956. UsePrecompiledHeader="0"
  957. />
  958. </FileConfiguration>
  959. </File>
  960. <File
  961. RelativePath="..\..\src\common\ffile.cpp"
  962. >
  963. </File>
  964. <File
  965. RelativePath="..\..\src\common\file.cpp"
  966. >
  967. </File>
  968. <File
  969. RelativePath="..\..\src\common\fileback.cpp"
  970. >
  971. </File>
  972. <File
  973. RelativePath="..\..\src\common\fileconf.cpp"
  974. >
  975. </File>
  976. <File
  977. RelativePath="..\..\src\common\filefn.cpp"
  978. >
  979. </File>
  980. <File
  981. RelativePath="..\..\src\common\filename.cpp"
  982. >
  983. </File>
  984. <File
  985. RelativePath="..\..\src\common\filesys.cpp"
  986. >
  987. </File>
  988. <File
  989. RelativePath="..\..\src\common\filtall.cpp"
  990. >
  991. </File>
  992. <File
  993. RelativePath="..\..\src\common\filtfind.cpp"
  994. >
  995. </File>
  996. <File
  997. RelativePath="..\..\src\common\fmapbase.cpp"
  998. >
  999. </File>
  1000. <File
  1001. RelativePath="..\..\src\common\fs_arc.cpp"
  1002. >
  1003. </File>
  1004. <File
  1005. RelativePath="..\..\src\common\fs_filter.cpp"
  1006. >
  1007. </File>
  1008. <File
  1009. RelativePath="..\..\src\common\fs_mem.cpp"
  1010. >
  1011. </File>
  1012. <File
  1013. RelativePath="..\..\src\common\fswatchercmn.cpp"
  1014. >
  1015. </File>
  1016. <File
  1017. RelativePath="..\..\src\common\hash.cpp"
  1018. >
  1019. </File>
  1020. <File
  1021. RelativePath="..\..\src\common\hashmap.cpp"
  1022. >
  1023. </File>
  1024. <File
  1025. RelativePath="..\..\src\common\init.cpp"
  1026. >
  1027. </File>
  1028. <File
  1029. RelativePath="..\..\src\common\intl.cpp"
  1030. >
  1031. </File>
  1032. <File
  1033. RelativePath="..\..\src\common\ipcbase.cpp"
  1034. >
  1035. </File>
  1036. <File
  1037. RelativePath="..\..\src\common\languageinfo.cpp"
  1038. >
  1039. </File>
  1040. <File
  1041. RelativePath="..\..\src\common\list.cpp"
  1042. >
  1043. </File>
  1044. <File
  1045. RelativePath="..\..\src\common\log.cpp"
  1046. >
  1047. </File>
  1048. <File
  1049. RelativePath="..\..\src\common\longlong.cpp"
  1050. >
  1051. </File>
  1052. <File
  1053. RelativePath="..\..\src\common\memory.cpp"
  1054. >
  1055. </File>
  1056. <File
  1057. RelativePath="..\..\src\common\mimecmn.cpp"
  1058. >
  1059. </File>
  1060. <File
  1061. RelativePath="..\..\src\common\module.cpp"
  1062. >
  1063. </File>
  1064. <File
  1065. RelativePath="..\..\src\common\msgout.cpp"
  1066. >
  1067. </File>
  1068. <File
  1069. RelativePath="..\..\src\common\mstream.cpp"
  1070. >
  1071. </File>
  1072. <File
  1073. RelativePath="..\..\src\common\numformatter.cpp"
  1074. >
  1075. </File>
  1076. <File
  1077. RelativePath="..\..\src\common\object.cpp"
  1078. >
  1079. </File>
  1080. <File
  1081. RelativePath="..\..\src\common\platinfo.cpp"
  1082. >
  1083. </File>
  1084. <File
  1085. RelativePath="..\..\src\common\powercmn.cpp"
  1086. >
  1087. </File>
  1088. <File
  1089. RelativePath="..\..\src\common\process.cpp"
  1090. >
  1091. </File>
  1092. <File
  1093. RelativePath="..\..\src\common\regex.cpp"
  1094. >
  1095. </File>
  1096. <File
  1097. RelativePath="..\..\src\common\sstream.cpp"
  1098. >
  1099. </File>
  1100. <File
  1101. RelativePath="..\..\src\common\stdpbase.cpp"
  1102. >
  1103. </File>
  1104. <File
  1105. RelativePath="..\..\src\common\stdstream.cpp"
  1106. >
  1107. </File>
  1108. <File
  1109. RelativePath="..\..\src\common\stopwatch.cpp"
  1110. >
  1111. </File>
  1112. <File
  1113. RelativePath="..\..\src\common\strconv.cpp"
  1114. >
  1115. </File>
  1116. <File
  1117. RelativePath="..\..\src\common\stream.cpp"
  1118. >
  1119. </File>
  1120. <File
  1121. RelativePath="..\..\src\common\string.cpp"
  1122. >
  1123. </File>
  1124. <File
  1125. RelativePath="..\..\src\common\stringimpl.cpp"
  1126. >
  1127. </File>
  1128. <File
  1129. RelativePath="..\..\src\common\stringops.cpp"
  1130. >
  1131. </File>
  1132. <File
  1133. RelativePath="..\..\src\common\strvararg.cpp"
  1134. >
  1135. </File>
  1136. <File
  1137. RelativePath="..\..\src\common\sysopt.cpp"
  1138. >
  1139. </File>
  1140. <File
  1141. RelativePath="..\..\src\common\tarstrm.cpp"
  1142. >
  1143. </File>
  1144. <File
  1145. RelativePath="..\..\src\common\textbuf.cpp"
  1146. >
  1147. </File>
  1148. <File
  1149. RelativePath="..\..\src\common\textfile.cpp"
  1150. >
  1151. </File>
  1152. <File
  1153. RelativePath="..\..\src\common\threadinfo.cpp"
  1154. >
  1155. </File>
  1156. <File
  1157. RelativePath="..\..\src\common\time.cpp"
  1158. >
  1159. </File>
  1160. <File
  1161. RelativePath="..\..\src\common\timercmn.cpp"
  1162. >
  1163. </File>
  1164. <File
  1165. RelativePath="..\..\src\common\timerimpl.cpp"
  1166. >
  1167. </File>
  1168. <File
  1169. RelativePath="..\..\src\common\tokenzr.cpp"
  1170. >
  1171. </File>
  1172. <File
  1173. RelativePath="..\..\src\common\translation.cpp"
  1174. >
  1175. </File>
  1176. <File
  1177. RelativePath="..\..\src\common\txtstrm.cpp"
  1178. >
  1179. </File>
  1180. <File
  1181. RelativePath="..\..\src\common\unichar.cpp"
  1182. >
  1183. </File>
  1184. <File
  1185. RelativePath="..\..\src\common\uri.cpp"
  1186. >
  1187. </File>
  1188. <File
  1189. RelativePath="..\..\src\common\ustring.cpp"
  1190. >
  1191. </File>
  1192. <File
  1193. RelativePath="..\..\src\common\utilscmn.cpp"
  1194. >
  1195. </File>
  1196. <File
  1197. RelativePath="..\..\src\common\variant.cpp"
  1198. >
  1199. </File>
  1200. <File
  1201. RelativePath="..\..\src\common\wfstream.cpp"
  1202. >
  1203. </File>
  1204. <File
  1205. RelativePath="..\..\src\common\wxcrt.cpp"
  1206. >
  1207. </File>
  1208. <File
  1209. RelativePath="..\..\src\common\wxprintf.cpp"
  1210. >
  1211. </File>
  1212. <File
  1213. RelativePath="..\..\src\common\xlocale.cpp"
  1214. >
  1215. </File>
  1216. <File
  1217. RelativePath="..\..\src\common\xti.cpp"
  1218. >
  1219. </File>
  1220. <File
  1221. RelativePath="..\..\src\common\xtistrm.cpp"
  1222. >
  1223. </File>
  1224. <File
  1225. RelativePath="..\..\src\common\zipstrm.cpp"
  1226. >
  1227. </File>
  1228. <File
  1229. RelativePath="..\..\src\common\zstream.cpp"
  1230. >
  1231. </File>
  1232. </Filter>
  1233. <Filter
  1234. Name="MSW Sources"
  1235. UniqueIdentifier="{D030D8C2-53EE-5B96-8F89-D78157B06140}"
  1236. >
  1237. <File
  1238. RelativePath="..\..\src\msw\basemsw.cpp"
  1239. >
  1240. </File>
  1241. <File
  1242. RelativePath="..\..\src\msw\crashrpt.cpp"
  1243. >
  1244. </File>
  1245. <File
  1246. RelativePath="..\..\src\msw\dde.cpp"
  1247. >
  1248. </File>
  1249. <File
  1250. RelativePath="..\..\src\msw\debughlp.cpp"
  1251. >
  1252. </File>
  1253. <File
  1254. RelativePath="..\..\src\msw\dir.cpp"
  1255. >
  1256. </File>
  1257. <File
  1258. RelativePath="..\..\src\msw\dlmsw.cpp"
  1259. >
  1260. </File>
  1261. <File
  1262. RelativePath="..\..\src\msw\evtloopconsole.cpp"
  1263. >
  1264. </File>
  1265. <File
  1266. RelativePath="..\..\src\msw\fswatcher.cpp"
  1267. >
  1268. </File>
  1269. <File
  1270. RelativePath="..\..\src\msw\main.cpp"
  1271. >
  1272. </File>
  1273. <File
  1274. RelativePath="..\..\src\msw\mimetype.cpp"
  1275. >
  1276. </File>
  1277. <File
  1278. RelativePath="..\..\src\msw\mslu.cpp"
  1279. >
  1280. </File>
  1281. <File
  1282. RelativePath="..\..\src\msw\power.cpp"
  1283. >
  1284. </File>
  1285. <File
  1286. RelativePath="..\..\src\msw\regconf.cpp"
  1287. >
  1288. </File>
  1289. <File
  1290. RelativePath="..\..\src\msw\registry.cpp"
  1291. >
  1292. </File>
  1293. <File
  1294. RelativePath="..\..\src\msw\snglinst.cpp"
  1295. >
  1296. </File>
  1297. <File
  1298. RelativePath="..\..\src\msw\stackwalk.cpp"
  1299. >
  1300. </File>
  1301. <File
  1302. RelativePath="..\..\src\msw\stdpaths.cpp"
  1303. >
  1304. </File>
  1305. <File
  1306. RelativePath="..\..\src\msw\thread.cpp"
  1307. >
  1308. </File>
  1309. <File
  1310. RelativePath="..\..\src\msw\timer.cpp"
  1311. >
  1312. </File>
  1313. <File
  1314. RelativePath="..\..\src\msw\utils.cpp"
  1315. >
  1316. </File>
  1317. <File
  1318. RelativePath="..\..\src\msw\utilsexc.cpp"
  1319. >
  1320. </File>
  1321. <File
  1322. RelativePath="..\..\src\msw\version.rc"
  1323. >
  1324. <FileConfiguration
  1325. Name="Debug|Win32"
  1326. ExcludedFromBuild="true"
  1327. />
  1328. <FileConfiguration
  1329. Name="Release|Win32"
  1330. ExcludedFromBuild="true"
  1331. />
  1332. <FileConfiguration
  1333. Name="Debug|x64"
  1334. ExcludedFromBuild="true"
  1335. />
  1336. <FileConfiguration
  1337. Name="Release|x64"
  1338. ExcludedFromBuild="true"
  1339. />
  1340. </File>
  1341. <File
  1342. RelativePath="..\..\src\msw\volume.cpp"
  1343. >
  1344. </File>
  1345. </Filter>
  1346. <Filter
  1347. Name="Generic Sources"
  1348. UniqueIdentifier="{FEA0C02F-F300-53BA-B784-52A5086B8093}"
  1349. >
  1350. <File
  1351. RelativePath="..\..\src\generic\fswatcherg.cpp"
  1352. >
  1353. </File>
  1354. </Filter>
  1355. <Filter
  1356. Name="Setup Headers"
  1357. UniqueIdentifier="{63537534-1833-5C1F-8DBD-359A84F294C8}"
  1358. >
  1359. <File
  1360. RelativePath="..\..\include\wx\msw\setup.h"
  1361. >
  1362. <FileConfiguration
  1363. Name="Debug|Win32"
  1364. >
  1365. <Tool
  1366. Name="VCCustomBuildTool"
  1367. Description="Creating ..\..\lib\vc_lib\mswud\wx\setup.h"
  1368. CommandLine="copy &quot;$(InputPath)&quot; ..\..\lib\vc_lib\mswud\wx\setup.h"
  1369. Outputs="..\..\lib\vc_lib\mswud\wx\setup.h"
  1370. />
  1371. </FileConfiguration>
  1372. <FileConfiguration
  1373. Name="Release|Win32"
  1374. >
  1375. <Tool
  1376. Name="VCCustomBuildTool"
  1377. Description="Creating ..\..\lib\vc_lib\mswu\wx\setup.h"
  1378. CommandLine="copy &quot;$(InputPath)&quot; ..\..\lib\vc_lib\mswu\wx\setup.h"
  1379. Outputs="..\..\lib\vc_lib\mswu\wx\setup.h"
  1380. />
  1381. </FileConfiguration>
  1382. <FileConfiguration
  1383. Name="DLL Debug|Win32"
  1384. >
  1385. <Tool
  1386. Name="VCCustomBuildTool"
  1387. Description="Creating ..\..\lib\vc_dll\mswud\wx\setup.h"
  1388. CommandLine="copy &quot;$(InputPath)&quot; ..\..\lib\vc_dll\mswud\wx\setup.h"
  1389. Outputs="..\..\lib\vc_dll\mswud\wx\setup.h"
  1390. />
  1391. </FileConfiguration>
  1392. <FileConfiguration
  1393. Name="DLL Release|Win32"
  1394. >
  1395. <Tool
  1396. Name="VCCustomBuildTool"
  1397. Description="Creating ..\..\lib\vc_dll\mswu\wx\setup.h"
  1398. CommandLine="copy &quot;$(InputPath)&quot; ..\..\lib\vc_dll\mswu\wx\setup.h"
  1399. Outputs="..\..\lib\vc_dll\mswu\wx\setup.h"
  1400. />
  1401. </FileConfiguration>
  1402. <FileConfiguration
  1403. Name="Debug|x64"
  1404. >
  1405. <Tool
  1406. Name="VCCustomBuildTool"
  1407. Description="Creating ..\..\lib\vc_x64_lib\mswud\wx\setup.h"
  1408. CommandLine="copy &quot;$(InputPath)&quot; ..\..\lib\vc_x64_lib\mswud\wx\setup.h"
  1409. Outputs="..\..\lib\vc_x64_lib\mswud\wx\setup.h"
  1410. />
  1411. </FileConfiguration>
  1412. <FileConfiguration
  1413. Name="Release|x64"
  1414. >
  1415. <Tool
  1416. Name="VCCustomBuildTool"
  1417. Description="Creating ..\..\lib\vc_x64_lib\mswu\wx\setup.h"
  1418. CommandLine="copy &quot;$(InputPath)&quot; ..\..\lib\vc_x64_lib\mswu\wx\setup.h"
  1419. Outputs="..\..\lib\vc_x64_lib\mswu\wx\setup.h"
  1420. />
  1421. </FileConfiguration>
  1422. <FileConfiguration
  1423. Name="DLL Debug|x64"
  1424. >
  1425. <Tool
  1426. Name="VCCustomBuildTool"
  1427. Description="Creating ..\..\lib\vc_x64_dll\mswud\wx\setup.h"
  1428. CommandLine="copy &quot;$(InputPath)&quot; ..\..\lib\vc_x64_dll\mswud\wx\setup.h"
  1429. Outputs="..\..\lib\vc_x64_dll\mswud\wx\setup.h"
  1430. />
  1431. </FileConfiguration>
  1432. <FileConfiguration
  1433. Name="DLL Release|x64"
  1434. >
  1435. <Tool
  1436. Name="VCCustomBuildTool"
  1437. Description="Creating ..\..\lib\vc_x64_dll\mswu\wx\setup.h"
  1438. CommandLine="copy &quot;$(InputPath)&quot; ..\..\lib\vc_x64_dll\mswu\wx\setup.h"
  1439. Outputs="..\..\lib\vc_x64_dll\mswu\wx\setup.h"
  1440. />
  1441. </FileConfiguration>
  1442. </File>
  1443. <File
  1444. RelativePath="..\..\include\wx\univ\setup.h"
  1445. >
  1446. <FileConfiguration
  1447. Name="Debug|Win32"
  1448. />
  1449. <FileConfiguration
  1450. Name="Release|Win32"
  1451. />
  1452. <FileConfiguration
  1453. Name="DLL Debug|Win32"
  1454. />
  1455. <FileConfiguration
  1456. Name="DLL Release|Win32"
  1457. />
  1458. <FileConfiguration
  1459. Name="Debug|x64"
  1460. />
  1461. <FileConfiguration
  1462. Name="Release|x64"
  1463. />
  1464. <FileConfiguration
  1465. Name="DLL Debug|x64"
  1466. />
  1467. <FileConfiguration
  1468. Name="DLL Release|x64"
  1469. />
  1470. </File>
  1471. </Filter>
  1472. <Filter
  1473. Name="MSW Headers"
  1474. UniqueIdentifier="{5AFFF20E-29F9-512B-B80A-7DC45976CDAC}"
  1475. >
  1476. <File
  1477. RelativePath="..\..\include\wx\msw\apptbase.h"
  1478. >
  1479. </File>
  1480. <File
  1481. RelativePath="..\..\include\wx\msw\apptrait.h"
  1482. >
  1483. </File>
  1484. <File
  1485. RelativePath="..\..\include\wx\msw\chkconf.h"
  1486. >
  1487. </File>
  1488. <File
  1489. RelativePath="..\..\include\wx\msw\crashrpt.h"
  1490. >
  1491. </File>
  1492. <File
  1493. RelativePath="..\..\include\wx\msw\dde.h"
  1494. >
  1495. </File>
  1496. <File
  1497. RelativePath="..\..\include\wx\msw\debughlp.h"
  1498. >
  1499. </File>
  1500. <File
  1501. RelativePath="..\..\include\wx\msw\evtloopconsole.h"
  1502. >
  1503. </File>
  1504. <File
  1505. RelativePath="..\..\include\wx\msw\fswatcher.h"
  1506. >
  1507. </File>
  1508. <File
  1509. RelativePath="..\..\include\wx\msw\gccpriv.h"
  1510. >
  1511. </File>
  1512. <File
  1513. RelativePath="..\..\include\wx\msw\genrcdefs.h"
  1514. >
  1515. <FileConfiguration
  1516. Name="Debug|Win32"
  1517. >
  1518. <Tool
  1519. Name="VCCustomBuildTool"
  1520. Description="Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h"
  1521. CommandLine="cl /EP /nologo &quot;$(InputPath)&quot; &gt; &quot;..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h&quot;"
  1522. Outputs="..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h"
  1523. AdditionalDependencies="&quot;..\..\lib\vc_lib\mswud\wx\msw&quot;"
  1524. />
  1525. </FileConfiguration>
  1526. <FileConfiguration
  1527. Name="Release|Win32"
  1528. >
  1529. <Tool
  1530. Name="VCCustomBuildTool"
  1531. Description="Creating ..\..\lib\vc_lib\mswu\wx\msw\rcdefs.h"
  1532. CommandLine="cl /EP /nologo &quot;$(InputPath)&quot; &gt; &quot;..\..\lib\vc_lib\mswu\wx\msw\rcdefs.h&quot;"
  1533. Outputs="..\..\lib\vc_lib\mswu\wx\msw\rcdefs.h"
  1534. AdditionalDependencies="&quot;..\..\lib\vc_lib\mswu\wx\msw&quot;"
  1535. />
  1536. </FileConfiguration>
  1537. <FileConfiguration
  1538. Name="DLL Debug|Win32"
  1539. >
  1540. <Tool
  1541. Name="VCCustomBuildTool"
  1542. Description="Creating ..\..\lib\vc_dll\mswud\wx\msw\rcdefs.h"
  1543. CommandLine="cl /EP /nologo &quot;$(InputPath)&quot; &gt; &quot;..\..\lib\vc_dll\mswud\wx\msw\rcdefs.h&quot;"
  1544. Outputs="..\..\lib\vc_dll\mswud\wx\msw\rcdefs.h"
  1545. AdditionalDependencies="&quot;..\..\lib\vc_dll\mswud\wx\msw&quot;"
  1546. />
  1547. </FileConfiguration>
  1548. <FileConfiguration
  1549. Name="DLL Release|Win32"
  1550. >
  1551. <Tool
  1552. Name="VCCustomBuildTool"
  1553. Description="Creating ..\..\lib\vc_dll\mswu\wx\msw\rcdefs.h"
  1554. CommandLine="cl /EP /nologo &quot;$(InputPath)&quot; &gt; &quot;..\..\lib\vc_dll\mswu\wx\msw\rcdefs.h&quot;"
  1555. Outputs="..\..\lib\vc_dll\mswu\wx\msw\rcdefs.h"
  1556. AdditionalDependencies="&quot;..\..\lib\vc_dll\mswu\wx\msw&quot;"
  1557. />
  1558. </FileConfiguration>
  1559. <FileConfiguration
  1560. Name="Debug|x64"
  1561. >
  1562. <Tool
  1563. Name="VCCustomBuildTool"
  1564. Description="Creating ..\..\lib\vc_x64_lib\mswud\wx\msw\rcdefs.h"
  1565. CommandLine="cl /EP /nologo &quot;$(InputPath)&quot; &gt; &quot;..\..\lib\vc_x64_lib\mswud\wx\msw\rcdefs.h&quot;"
  1566. Outputs="..\..\lib\vc_x64_lib\mswud\wx\msw\rcdefs.h"
  1567. AdditionalDependencies="&quot;..\..\lib\vc_x64_lib\mswud\wx\msw&quot;"
  1568. />
  1569. </FileConfiguration>
  1570. <FileConfiguration
  1571. Name="Release|x64"
  1572. >
  1573. <Tool
  1574. Name="VCCustomBuildTool"
  1575. Description="Creating ..\..\lib\vc_x64_lib\mswu\wx\msw\rcdefs.h"
  1576. CommandLine="cl /EP /nologo &quot;$(InputPath)&quot; &gt; &quot;..\..\lib\vc_x64_lib\mswu\wx\msw\rcdefs.h&quot;"
  1577. Outputs="..\..\lib\vc_x64_lib\mswu\wx\msw\rcdefs.h"
  1578. AdditionalDependencies="&quot;..\..\lib\vc_x64_lib\mswu\wx\msw&quot;"
  1579. />
  1580. </FileConfiguration>
  1581. <FileConfiguration
  1582. Name="DLL Debug|x64"
  1583. >
  1584. <Tool
  1585. Name="VCCustomBuildTool"
  1586. Description="Creating ..\..\lib\vc_x64_dll\mswud\wx\msw\rcdefs.h"
  1587. CommandLine="cl /EP /nologo &quot;$(InputPath)&quot; &gt; &quot;..\..\lib\vc_x64_dll\mswud\wx\msw\rcdefs.h&quot;"
  1588. Outputs="..\..\lib\vc_x64_dll\mswud\wx\msw\rcdefs.h"
  1589. AdditionalDependencies="&quot;..\..\lib\vc_x64_dll\mswud\wx\msw&quot;"
  1590. />
  1591. </FileConfiguration>
  1592. <FileConfiguration
  1593. Name="DLL Release|x64"
  1594. >
  1595. <Tool
  1596. Name="VCCustomBuildTool"
  1597. Description="Creating ..\..\lib\vc_x64_dll\mswu\wx\msw\rcdefs.h"
  1598. CommandLine="cl /EP /nologo &quot;$(InputPath)&quot; &gt; &quot;..\..\lib\vc_x64_dll\mswu\wx\msw\rcdefs.h&quot;"
  1599. Outputs="..\..\lib\vc_x64_dll\mswu\wx\msw\rcdefs.h"
  1600. AdditionalDependencies="&quot;..\..\lib\vc_x64_dll\mswu\wx\msw&quot;"
  1601. />
  1602. </FileConfiguration>
  1603. </File>
  1604. <File
  1605. RelativePath="..\..\include\wx\msw\libraries.h"
  1606. >
  1607. </File>
  1608. <File
  1609. RelativePath="..\..\include\wx\msw\mimetype.h"
  1610. >
  1611. </File>
  1612. <File
  1613. RelativePath="..\..\include\wx\msw\mslu.h"
  1614. >
  1615. </File>
  1616. <File
  1617. RelativePath="..\..\include\wx\msw\private.h"
  1618. >
  1619. </File>
  1620. <File
  1621. RelativePath="..\..\include\wx\msw\regconf.h"
  1622. >
  1623. </File>
  1624. <File
  1625. RelativePath="..\..\include\wx\msw\registry.h"
  1626. >
  1627. </File>
  1628. <File
  1629. RelativePath="..\..\include\wx\msw\seh.h"
  1630. >
  1631. </File>
  1632. <File
  1633. RelativePath="..\..\include\wx\msw\stackwalk.h"
  1634. >
  1635. </File>
  1636. <File
  1637. RelativePath="..\..\include\wx\msw\stdpaths.h"
  1638. >
  1639. </File>
  1640. <File
  1641. RelativePath="..\..\include\wx\msw\winundef.h"
  1642. >
  1643. </File>
  1644. <File
  1645. RelativePath="..\..\include\wx\msw\wrapcctl.h"
  1646. >
  1647. </File>
  1648. <File
  1649. RelativePath="..\..\include\wx\msw\wrapcdlg.h"
  1650. >
  1651. </File>
  1652. <File
  1653. RelativePath="..\..\include\wx\msw\wrapwin.h"
  1654. >
  1655. </File>
  1656. </Filter>
  1657. <Filter
  1658. Name="Generic Headers"
  1659. UniqueIdentifier="{61C63C83-EF8C-51CA-A418-51936E7FCD4A}"
  1660. >
  1661. <File
  1662. RelativePath="..\..\include\wx\generic\fswatcher.h"
  1663. >
  1664. </File>
  1665. </Filter>
  1666. <Filter
  1667. Name="wxHTML Headers"
  1668. UniqueIdentifier="{B4103426-A5DB-5CF0-A30E-BC9546513AAF}"
  1669. >
  1670. <File
  1671. RelativePath="..\..\include\wx\html\forcelnk.h"
  1672. >
  1673. </File>
  1674. </Filter>
  1675. <Filter
  1676. Name="Common Headers"
  1677. UniqueIdentifier="{8C07E926-65B0-5F00-B0D6-7F40DA69BB25}"
  1678. >
  1679. <File
  1680. RelativePath="..\..\include\wx\afterstd.h"
  1681. >
  1682. </File>
  1683. <File
  1684. RelativePath="..\..\include\wx\any.h"
  1685. >
  1686. </File>
  1687. <File
  1688. RelativePath="..\..\include\wx\anystr.h"
  1689. >
  1690. </File>
  1691. <File
  1692. RelativePath="..\..\include\wx\app.h"
  1693. >
  1694. </File>
  1695. <File
  1696. RelativePath="..\..\include\wx\apptrait.h"
  1697. >
  1698. </File>
  1699. <File
  1700. RelativePath="..\..\include\wx\archive.h"
  1701. >
  1702. </File>
  1703. <File
  1704. RelativePath="..\..\include\wx\arrstr.h"
  1705. >
  1706. </File>
  1707. <File
  1708. RelativePath="..\..\include\wx\atomic.h"
  1709. >
  1710. </File>
  1711. <File
  1712. RelativePath="..\..\include\wx\base64.h"
  1713. >
  1714. </File>
  1715. <File
  1716. RelativePath="..\..\include\wx\beforestd.h"
  1717. >
  1718. </File>
  1719. <File
  1720. RelativePath="..\..\include\wx\buffer.h"
  1721. >
  1722. </File>
  1723. <File
  1724. RelativePath="..\..\include\wx\build.h"
  1725. >
  1726. </File>
  1727. <File
  1728. RelativePath="..\..\include\wx\chartype.h"
  1729. >
  1730. </File>
  1731. <File
  1732. RelativePath="..\..\include\wx\checkeddelete.h"
  1733. >
  1734. </File>
  1735. <File
  1736. RelativePath="..\..\include\wx\chkconf.h"
  1737. >
  1738. </File>
  1739. <File
  1740. RelativePath="..\..\include\wx\clntdata.h"
  1741. >
  1742. </File>
  1743. <File
  1744. RelativePath="..\..\include\wx\cmdargs.h"
  1745. >
  1746. </File>
  1747. <File
  1748. RelativePath="..\..\include\wx\cmdline.h"
  1749. >
  1750. </File>
  1751. <File
  1752. RelativePath="..\..\include\wx\compiler.h"
  1753. >
  1754. </File>
  1755. <File
  1756. RelativePath="..\..\include\wx\confbase.h"
  1757. >
  1758. </File>
  1759. <File
  1760. RelativePath="..\..\include\wx\config.h"
  1761. >
  1762. </File>
  1763. <File
  1764. RelativePath="..\..\include\wx\containr.h"
  1765. >
  1766. </File>
  1767. <File
  1768. RelativePath="..\..\include\wx\convauto.h"
  1769. >
  1770. </File>
  1771. <File
  1772. RelativePath="..\..\include\wx\meta\convertible.h"
  1773. >
  1774. </File>
  1775. <File
  1776. RelativePath="..\..\include\wx\cpp.h"
  1777. >
  1778. </File>
  1779. <File
  1780. RelativePath="..\..\include\wx\crt.h"
  1781. >
  1782. </File>
  1783. <File
  1784. RelativePath="..\..\include\wx\datetime.h"
  1785. >
  1786. </File>
  1787. <File
  1788. RelativePath="..\..\include\wx\datstrm.h"
  1789. >
  1790. </File>
  1791. <File
  1792. RelativePath="..\..\include\wx\dde.h"
  1793. >
  1794. </File>
  1795. <File
  1796. RelativePath="..\..\include\wx\debug.h"
  1797. >
  1798. </File>
  1799. <File
  1800. RelativePath="..\..\include\wx\defs.h"
  1801. >
  1802. </File>
  1803. <File
  1804. RelativePath="..\..\include\wx\dir.h"
  1805. >
  1806. </File>
  1807. <File
  1808. RelativePath="..\..\include\wx\dlimpexp.h"
  1809. >
  1810. </File>
  1811. <File
  1812. RelativePath="..\..\include\wx\dlist.h"
  1813. >
  1814. </File>
  1815. <File
  1816. RelativePath="..\..\include\wx\dynarray.h"
  1817. >
  1818. </File>
  1819. <File
  1820. RelativePath="..\..\include\wx\dynlib.h"
  1821. >
  1822. </File>
  1823. <File
  1824. RelativePath="..\..\include\wx\dynload.h"
  1825. >
  1826. </File>
  1827. <File
  1828. RelativePath="..\..\include\wx\encconv.h"
  1829. >
  1830. </File>
  1831. <File
  1832. RelativePath="..\..\include\wx\event.h"
  1833. >
  1834. </File>
  1835. <File
  1836. RelativePath="..\..\include\wx\eventfilter.h"
  1837. >
  1838. </File>
  1839. <File
  1840. RelativePath="..\..\include\wx\evtloop.h"
  1841. >
  1842. </File>
  1843. <File
  1844. RelativePath="..\..\include\wx\except.h"
  1845. >
  1846. </File>
  1847. <File
  1848. RelativePath="..\..\include\wx\features.h"
  1849. >
  1850. </File>
  1851. <File
  1852. RelativePath="..\..\include\wx\ffile.h"
  1853. >
  1854. </File>
  1855. <File
  1856. RelativePath="..\..\include\wx\file.h"
  1857. >
  1858. </File>
  1859. <File
  1860. RelativePath="..\..\include\wx\fileconf.h"
  1861. >
  1862. </File>
  1863. <File
  1864. RelativePath="..\..\include\wx\filefn.h"
  1865. >
  1866. </File>
  1867. <File
  1868. RelativePath="..\..\include\wx\filename.h"
  1869. >
  1870. </File>
  1871. <File
  1872. RelativePath="..\..\include\wx\filesys.h"
  1873. >
  1874. </File>
  1875. <File
  1876. RelativePath="..\..\include\wx\flags.h"
  1877. >
  1878. </File>
  1879. <File
  1880. RelativePath="..\..\include\wx\fontenc.h"
  1881. >
  1882. </File>
  1883. <File
  1884. RelativePath="..\..\include\wx\fontmap.h"
  1885. >
  1886. </File>
  1887. <File
  1888. RelativePath="..\..\include\wx\fs_arc.h"
  1889. >
  1890. </File>
  1891. <File
  1892. RelativePath="..\..\include\wx\fs_filter.h"
  1893. >
  1894. </File>
  1895. <File
  1896. RelativePath="..\..\include\wx\fs_mem.h"
  1897. >
  1898. </File>
  1899. <File
  1900. RelativePath="..\..\include\wx\fs_zip.h"
  1901. >
  1902. </File>
  1903. <File
  1904. RelativePath="..\..\include\wx\fswatcher.h"
  1905. >
  1906. </File>
  1907. <File
  1908. RelativePath="..\..\include\wx\hash.h"
  1909. >
  1910. </File>
  1911. <File
  1912. RelativePath="..\..\include\wx\hashmap.h"
  1913. >
  1914. </File>
  1915. <File
  1916. RelativePath="..\..\include\wx\hashset.h"
  1917. >
  1918. </File>
  1919. <File
  1920. RelativePath="..\..\include\wx\iconloc.h"
  1921. >
  1922. </File>
  1923. <File
  1924. RelativePath="..\..\include\wx\meta\if.h"
  1925. >
  1926. </File>
  1927. <File
  1928. RelativePath="..\..\include\wx\meta\implicitconversion.h"
  1929. >
  1930. </File>
  1931. <File
  1932. RelativePath="..\..\include\wx\init.h"
  1933. >
  1934. </File>
  1935. <File
  1936. RelativePath="..\..\include\wx\meta\int2type.h"
  1937. >
  1938. </File>
  1939. <File
  1940. RelativePath="..\..\include\wx\intl.h"
  1941. >
  1942. </File>
  1943. <File
  1944. RelativePath="..\..\include\wx\iosfwrap.h"
  1945. >
  1946. </File>
  1947. <File
  1948. RelativePath="..\..\include\wx\ioswrap.h"
  1949. >
  1950. </File>
  1951. <File
  1952. RelativePath="..\..\include\wx\ipc.h"
  1953. >
  1954. </File>
  1955. <File
  1956. RelativePath="..\..\include\wx\ipcbase.h"
  1957. >
  1958. </File>
  1959. <File
  1960. RelativePath="..\..\include\wx\kbdstate.h"
  1961. >
  1962. </File>
  1963. <File
  1964. RelativePath="..\..\include\wx\language.h"
  1965. >
  1966. </File>
  1967. <File
  1968. RelativePath="..\..\include\wx\link.h"
  1969. >
  1970. </File>
  1971. <File
  1972. RelativePath="..\..\include\wx\list.h"
  1973. >
  1974. </File>
  1975. <File
  1976. RelativePath="..\..\include\wx\log.h"
  1977. >
  1978. </File>
  1979. <File
  1980. RelativePath="..\..\include\wx\longlong.h"
  1981. >
  1982. </File>
  1983. <File
  1984. RelativePath="..\..\include\wx\math.h"
  1985. >
  1986. </File>
  1987. <File
  1988. RelativePath="..\..\include\wx\memconf.h"
  1989. >
  1990. </File>
  1991. <File
  1992. RelativePath="..\..\include\wx\memory.h"
  1993. >
  1994. </File>
  1995. <File
  1996. RelativePath="..\..\include\wx\memtext.h"
  1997. >
  1998. </File>
  1999. <File
  2000. RelativePath="..\..\include\wx\mimetype.h"
  2001. >
  2002. </File>
  2003. <File
  2004. RelativePath="..\..\include\wx\module.h"
  2005. >
  2006. </File>
  2007. <File
  2008. RelativePath="..\..\include\wx\mousestate.h"
  2009. >
  2010. </File>
  2011. <File
  2012. RelativePath="..\..\include\wx\meta\movable.h"
  2013. >
  2014. </File>
  2015. <File
  2016. RelativePath="..\..\include\wx\msgout.h"
  2017. >
  2018. </File>
  2019. <File
  2020. RelativePath="..\..\include\wx\msgqueue.h"
  2021. >
  2022. </File>
  2023. <File
  2024. RelativePath="..\..\include\wx\mstream.h"
  2025. >
  2026. </File>
  2027. <File
  2028. RelativePath="..\..\include\wx\numformatter.h"
  2029. >
  2030. </File>
  2031. <File
  2032. RelativePath="..\..\include\wx\object.h"
  2033. >
  2034. </File>
  2035. <File
  2036. RelativePath="..\..\include\wx\platform.h"
  2037. >
  2038. </File>
  2039. <File
  2040. RelativePath="..\..\include\wx\platinfo.h"
  2041. >
  2042. </File>
  2043. <File
  2044. RelativePath="..\..\include\wx\meta\pod.h"
  2045. >
  2046. </File>
  2047. <File
  2048. RelativePath="..\..\include\wx\power.h"
  2049. >
  2050. </File>
  2051. <File
  2052. RelativePath="..\..\include\wx\process.h"
  2053. >
  2054. </File>
  2055. <File
  2056. RelativePath="..\..\include\wx\ptr_scpd.h"
  2057. >
  2058. </File>
  2059. <File
  2060. RelativePath="..\..\include\wx\ptr_shrd.h"
  2061. >
  2062. </File>
  2063. <File
  2064. RelativePath="..\..\include\wx\recguard.h"
  2065. >
  2066. </File>
  2067. <File
  2068. RelativePath="..\..\include\wx\regex.h"
  2069. >
  2070. </File>
  2071. <File
  2072. RelativePath="..\..\include\wx\meta\removeref.h"
  2073. >
  2074. </File>
  2075. <File
  2076. RelativePath="..\..\include\wx\rtti.h"
  2077. >
  2078. </File>
  2079. <File
  2080. RelativePath="..\..\include\wx\scopedarray.h"
  2081. >
  2082. </File>
  2083. <File
  2084. RelativePath="..\..\include\wx\scopedptr.h"
  2085. >
  2086. </File>
  2087. <File
  2088. RelativePath="..\..\include\wx\scopeguard.h"
  2089. >
  2090. </File>
  2091. <File
  2092. RelativePath="..\..\include\wx\sharedptr.h"
  2093. >
  2094. </File>
  2095. <File
  2096. RelativePath="..\..\include\wx\snglinst.h"
  2097. >
  2098. </File>
  2099. <File
  2100. RelativePath="..\..\include\wx\sstream.h"
  2101. >
  2102. </File>
  2103. <File
  2104. RelativePath="..\..\include\wx\stack.h"
  2105. >
  2106. </File>
  2107. <File
  2108. RelativePath="..\..\include\wx\stackwalk.h"
  2109. >
  2110. </File>
  2111. <File
  2112. RelativePath="..\..\include\wx\stdpaths.h"
  2113. >
  2114. </File>
  2115. <File
  2116. RelativePath="..\..\include\wx\stdstream.h"
  2117. >
  2118. </File>
  2119. <File
  2120. RelativePath="..\..\include\wx\stockitem.h"
  2121. >
  2122. </File>
  2123. <File
  2124. RelativePath="..\..\include\wx\stopwatch.h"
  2125. >
  2126. </File>
  2127. <File
  2128. RelativePath="..\..\include\wx\strconv.h"
  2129. >
  2130. </File>
  2131. <File
  2132. RelativePath="..\..\include\wx\stream.h"
  2133. >
  2134. </File>
  2135. <File
  2136. RelativePath="..\..\include\wx\string.h"
  2137. >
  2138. </File>
  2139. <File
  2140. RelativePath="..\..\include\wx\stringimpl.h"
  2141. >
  2142. </File>
  2143. <File
  2144. RelativePath="..\..\include\wx\stringops.h"
  2145. >
  2146. </File>
  2147. <File
  2148. RelativePath="..\..\include\wx\strvararg.h"
  2149. >
  2150. </File>
  2151. <File
  2152. RelativePath="..\..\include\wx\sysopt.h"
  2153. >
  2154. </File>
  2155. <File
  2156. RelativePath="..\..\include\wx\tarstrm.h"
  2157. >
  2158. </File>
  2159. <File
  2160. RelativePath="..\..\include\wx\textbuf.h"
  2161. >
  2162. </File>
  2163. <File
  2164. RelativePath="..\..\include\wx\textfile.h"
  2165. >
  2166. </File>
  2167. <File
  2168. RelativePath="..\..\include\wx\thread.h"
  2169. >
  2170. </File>
  2171. <File
  2172. RelativePath="..\..\include\wx\time.h"
  2173. >
  2174. </File>
  2175. <File
  2176. RelativePath="..\..\include\wx\timer.h"
  2177. >
  2178. </File>
  2179. <File
  2180. RelativePath="..\..\include\wx\tls.h"
  2181. >
  2182. </File>
  2183. <File
  2184. RelativePath="..\..\include\wx\tokenzr.h"
  2185. >
  2186. </File>
  2187. <File
  2188. RelativePath="..\..\include\wx\tracker.h"
  2189. >
  2190. </File>
  2191. <File
  2192. RelativePath="..\..\include\wx\translation.h"
  2193. >
  2194. </File>
  2195. <File
  2196. RelativePath="..\..\include\wx\txtstrm.h"
  2197. >
  2198. </File>
  2199. <File
  2200. RelativePath="..\..\include\wx\typeinfo.h"
  2201. >
  2202. </File>
  2203. <File
  2204. RelativePath="..\..\include\wx\types.h"
  2205. >
  2206. </File>
  2207. <File
  2208. RelativePath="..\..\include\wx\unichar.h"
  2209. >
  2210. </File>
  2211. <File
  2212. RelativePath="..\..\include\wx\uri.h"
  2213. >
  2214. </File>
  2215. <File
  2216. RelativePath="..\..\include\wx\ustring.h"
  2217. >
  2218. </File>
  2219. <File
  2220. RelativePath="..\..\include\wx\utils.h"
  2221. >
  2222. </File>
  2223. <File
  2224. RelativePath="..\..\include\wx\variant.h"
  2225. >
  2226. </File>
  2227. <File
  2228. RelativePath="..\..\include\wx\vector.h"
  2229. >
  2230. </File>
  2231. <File
  2232. RelativePath="..\..\include\wx\version.h"
  2233. >
  2234. </File>
  2235. <File
  2236. RelativePath="..\..\include\wx\versioninfo.h"
  2237. >
  2238. </File>
  2239. <File
  2240. RelativePath="..\..\include\wx\volume.h"
  2241. >
  2242. </File>
  2243. <File
  2244. RelativePath="..\..\include\wx\weakref.h"
  2245. >
  2246. </File>
  2247. <File
  2248. RelativePath="..\..\include\wx\wfstream.h"
  2249. >
  2250. </File>
  2251. <File
  2252. RelativePath="..\..\include\wx\wx.h"
  2253. >
  2254. </File>
  2255. <File
  2256. RelativePath="..\..\include\wx\wxchar.h"
  2257. >
  2258. </File>
  2259. <File
  2260. RelativePath="..\..\include\wx\wxcrt.h"
  2261. >
  2262. </File>
  2263. <File
  2264. RelativePath="..\..\include\wx\wxcrtbase.h"
  2265. >
  2266. </File>
  2267. <File
  2268. RelativePath="..\..\include\wx\wxcrtvararg.h"
  2269. >
  2270. </File>
  2271. <File
  2272. RelativePath="..\..\include\wx\wxprec.h"
  2273. >
  2274. </File>
  2275. <File
  2276. RelativePath="..\..\include\wx\xlocale.h"
  2277. >
  2278. </File>
  2279. <File
  2280. RelativePath="..\..\include\wx\xti.h"
  2281. >
  2282. </File>
  2283. <File
  2284. RelativePath="..\..\include\wx\xti2.h"
  2285. >
  2286. </File>
  2287. <File
  2288. RelativePath="..\..\include\wx\xtictor.h"
  2289. >
  2290. </File>
  2291. <File
  2292. RelativePath="..\..\include\wx\xtihandler.h"
  2293. >
  2294. </File>
  2295. <File
  2296. RelativePath="..\..\include\wx\xtiprop.h"
  2297. >
  2298. </File>
  2299. <File
  2300. RelativePath="..\..\include\wx\xtistrm.h"
  2301. >
  2302. </File>
  2303. <File
  2304. RelativePath="..\..\include\wx\xtitypes.h"
  2305. >
  2306. </File>
  2307. <File
  2308. RelativePath="..\..\include\wx\zipstrm.h"
  2309. >
  2310. </File>
  2311. <File
  2312. RelativePath="..\..\include\wx\zstream.h"
  2313. >
  2314. </File>
  2315. </Filter>
  2316. </Files>
  2317. <Globals>
  2318. </Globals>
  2319. </VisualStudioProject>