Irrlicht9.0.vcproj 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657
  1. <?xml version="1.0" encoding="Windows-1252"?>
  2. <VisualStudioProject
  3. ProjectType="Visual C++"
  4. Version="9.00"
  5. Name="Irrlicht"
  6. ProjectGUID="{E08E042A-6C45-411B-92BE-3CC31331019F}"
  7. RootNamespace="Irrlicht"
  8. TargetFrameworkVersion="131072"
  9. >
  10. <Platforms>
  11. <Platform
  12. Name="Win32"
  13. />
  14. </Platforms>
  15. <ToolFiles>
  16. </ToolFiles>
  17. <Configurations>
  18. <Configuration
  19. Name="Debug|Win32"
  20. OutputDirectory="obj\$(ConfigurationName)"
  21. IntermediateDirectory="obj\$(ConfigurationName)"
  22. ConfigurationType="2"
  23. InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
  24. UseOfMFC="0"
  25. ATLMinimizesCRunTimeLibraryUsage="false"
  26. CharacterSet="0"
  27. >
  28. <Tool
  29. Name="VCPreBuildEventTool"
  30. />
  31. <Tool
  32. Name="VCCustomBuildTool"
  33. />
  34. <Tool
  35. Name="VCXMLDataGeneratorTool"
  36. />
  37. <Tool
  38. Name="VCWebServiceProxyGeneratorTool"
  39. />
  40. <Tool
  41. Name="VCMIDLTool"
  42. PreprocessorDefinitions="_DEBUG"
  43. MkTypLibCompatible="true"
  44. SuppressStartupBanner="true"
  45. TargetEnvironment="1"
  46. TypeLibraryName=".\..\Debug/Irrlicht.tlb"
  47. />
  48. <Tool
  49. Name="VCCLCompilerTool"
  50. Optimization="0"
  51. AdditionalIncludeDirectories="..\..\include;zlib"
  52. PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;IRRLICHT_EXPORTS;_CRT_SECURE_NO_DEPRECATE"
  53. ExceptionHandling="0"
  54. BasicRuntimeChecks="3"
  55. RuntimeLibrary="1"
  56. DisableLanguageExtensions="false"
  57. RuntimeTypeInfo="false"
  58. PrecompiledHeaderFile=".\..\obj\IrrDebug/Irrlicht.pch"
  59. AssemblerListingLocation=".\..\obj\IrrDebug/"
  60. ObjectFile=".\..\obj\IrrDebug/"
  61. ProgramDataBaseFileName=".\..\obj\IrrDebug/"
  62. WarningLevel="3"
  63. SuppressStartupBanner="true"
  64. DebugInformationFormat="3"
  65. CompileAs="0"
  66. />
  67. <Tool
  68. Name="VCManagedResourceCompilerTool"
  69. />
  70. <Tool
  71. Name="VCResourceCompilerTool"
  72. PreprocessorDefinitions="_DEBUG"
  73. Culture="3079"
  74. />
  75. <Tool
  76. Name="VCPreLinkEventTool"
  77. />
  78. <Tool
  79. Name="VCLinkerTool"
  80. UseLibraryDependencyInputs="true"
  81. AdditionalOptions="/MACHINE:I386"
  82. AdditionalDependencies="kernel32.lib user32.lib gdi32.lib opengl32.lib"
  83. OutputFile="..\..\bin\Win32-visualstudio\Irrlicht.dll"
  84. LinkIncremental="2"
  85. SuppressStartupBanner="true"
  86. AdditionalLibraryDirectories=""
  87. IgnoreDefaultLibraryNames="libci.lib"
  88. GenerateDebugInformation="true"
  89. ProgramDatabaseFile="..\obj\IrrDebug\Irrlicht.pdb"
  90. RandomizedBaseAddress="1"
  91. DataExecutionPrevention="0"
  92. ImportLibrary="..\..\lib\Win32-visualstudio\Irrlicht.lib"
  93. />
  94. <Tool
  95. Name="VCALinkTool"
  96. />
  97. <Tool
  98. Name="VCManifestTool"
  99. />
  100. <Tool
  101. Name="VCXDCMakeTool"
  102. />
  103. <Tool
  104. Name="VCBscMakeTool"
  105. />
  106. <Tool
  107. Name="VCFxCopTool"
  108. />
  109. <Tool
  110. Name="VCAppVerifierTool"
  111. />
  112. <Tool
  113. Name="VCPostBuildEventTool"
  114. />
  115. </Configuration>
  116. <Configuration
  117. Name="Release|Win32"
  118. OutputDirectory="obj\$(ConfigurationName)"
  119. IntermediateDirectory="obj\$(ConfigurationName)"
  120. ConfigurationType="2"
  121. InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
  122. UseOfMFC="0"
  123. ATLMinimizesCRunTimeLibraryUsage="false"
  124. CharacterSet="2"
  125. WholeProgramOptimization="1"
  126. >
  127. <Tool
  128. Name="VCPreBuildEventTool"
  129. />
  130. <Tool
  131. Name="VCCustomBuildTool"
  132. />
  133. <Tool
  134. Name="VCXMLDataGeneratorTool"
  135. />
  136. <Tool
  137. Name="VCWebServiceProxyGeneratorTool"
  138. />
  139. <Tool
  140. Name="VCMIDLTool"
  141. PreprocessorDefinitions="NDEBUG"
  142. MkTypLibCompatible="true"
  143. SuppressStartupBanner="true"
  144. TargetEnvironment="1"
  145. TypeLibraryName=".\..\Release/Irrlicht.tlb"
  146. />
  147. <Tool
  148. Name="VCCLCompilerTool"
  149. Optimization="2"
  150. InlineFunctionExpansion="1"
  151. EnableIntrinsicFunctions="false"
  152. AdditionalIncludeDirectories="..\..\include;zlib"
  153. PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;IRRLICHT_EXPORTS;_CRT_SECURE_NO_DEPRECATE"
  154. StringPooling="true"
  155. ExceptionHandling="0"
  156. RuntimeLibrary="0"
  157. BufferSecurityCheck="false"
  158. EnableFunctionLevelLinking="true"
  159. PrecompiledHeaderFile=".\..\obj\IrrRelease/Irrlicht.pch"
  160. AssemblerListingLocation=".\..\obj\IrrRelease/"
  161. ObjectFile=".\..\obj\IrrRelease/"
  162. ProgramDataBaseFileName=".\..\obj\IrrRelease/"
  163. WarningLevel="3"
  164. SuppressStartupBanner="true"
  165. DebugInformationFormat="0"
  166. CompileAs="0"
  167. />
  168. <Tool
  169. Name="VCManagedResourceCompilerTool"
  170. />
  171. <Tool
  172. Name="VCResourceCompilerTool"
  173. PreprocessorDefinitions="NDEBUG"
  174. Culture="3079"
  175. />
  176. <Tool
  177. Name="VCPreLinkEventTool"
  178. />
  179. <Tool
  180. Name="VCLinkerTool"
  181. AdditionalOptions="/MACHINE:I386"
  182. AdditionalDependencies="kernel32.lib user32.lib gdi32.lib opengl32.lib"
  183. OutputFile="..\..\bin\Win32-visualstudio\Irrlicht.dll"
  184. LinkIncremental="1"
  185. SuppressStartupBanner="true"
  186. IgnoreDefaultLibraryNames="libci.lib"
  187. GenerateDebugInformation="false"
  188. ProgramDatabaseFile="..\obj\IrrRelease\Irrlicht.pdb"
  189. RandomizedBaseAddress="1"
  190. DataExecutionPrevention="0"
  191. ImportLibrary="..\..\lib\Win32-visualstudio\Irrlicht.lib"
  192. />
  193. <Tool
  194. Name="VCALinkTool"
  195. />
  196. <Tool
  197. Name="VCManifestTool"
  198. />
  199. <Tool
  200. Name="VCXDCMakeTool"
  201. />
  202. <Tool
  203. Name="VCBscMakeTool"
  204. />
  205. <Tool
  206. Name="VCFxCopTool"
  207. />
  208. <Tool
  209. Name="VCAppVerifierTool"
  210. />
  211. <Tool
  212. Name="VCPostBuildEventTool"
  213. />
  214. </Configuration>
  215. <Configuration
  216. Name="Release - Fast FPU|Win32"
  217. OutputDirectory="obj\$(ConfigurationName)"
  218. IntermediateDirectory="obj\$(ConfigurationName)"
  219. ConfigurationType="2"
  220. InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
  221. UseOfMFC="0"
  222. ATLMinimizesCRunTimeLibraryUsage="false"
  223. CharacterSet="2"
  224. WholeProgramOptimization="1"
  225. >
  226. <Tool
  227. Name="VCPreBuildEventTool"
  228. />
  229. <Tool
  230. Name="VCCustomBuildTool"
  231. />
  232. <Tool
  233. Name="VCXMLDataGeneratorTool"
  234. />
  235. <Tool
  236. Name="VCWebServiceProxyGeneratorTool"
  237. />
  238. <Tool
  239. Name="VCMIDLTool"
  240. PreprocessorDefinitions="NDEBUG"
  241. MkTypLibCompatible="true"
  242. SuppressStartupBanner="true"
  243. TargetEnvironment="1"
  244. TypeLibraryName=".\..\Release/Irrlicht.tlb"
  245. />
  246. <Tool
  247. Name="VCCLCompilerTool"
  248. Optimization="3"
  249. InlineFunctionExpansion="2"
  250. EnableIntrinsicFunctions="true"
  251. FavorSizeOrSpeed="1"
  252. OmitFramePointers="true"
  253. AdditionalIncludeDirectories="..\..\include;zlib"
  254. PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;IRRLICHT_EXPORTS;_CRT_SECURE_NO_DEPRECATE"
  255. StringPooling="true"
  256. ExceptionHandling="0"
  257. RuntimeLibrary="0"
  258. StructMemberAlignment="0"
  259. BufferSecurityCheck="false"
  260. EnableFunctionLevelLinking="false"
  261. EnableEnhancedInstructionSet="2"
  262. FloatingPointModel="2"
  263. RuntimeTypeInfo="false"
  264. PrecompiledHeaderFile=".\..\obj\IrrRelease/Irrlicht.pch"
  265. AssemblerListingLocation=".\..\obj\IrrReleaseFastFPU/"
  266. ObjectFile=".\..\obj\IrrReleaseFastFPU/"
  267. ProgramDataBaseFileName=".\..\obj\IrrReleaseFastFPU/"
  268. WarningLevel="3"
  269. WarnAsError="false"
  270. SuppressStartupBanner="true"
  271. DebugInformationFormat="0"
  272. CompileAs="0"
  273. />
  274. <Tool
  275. Name="VCManagedResourceCompilerTool"
  276. />
  277. <Tool
  278. Name="VCResourceCompilerTool"
  279. PreprocessorDefinitions="NDEBUG"
  280. Culture="3079"
  281. />
  282. <Tool
  283. Name="VCPreLinkEventTool"
  284. />
  285. <Tool
  286. Name="VCLinkerTool"
  287. AdditionalOptions="/MACHINE:I386"
  288. AdditionalDependencies="kernel32.lib user32.lib gdi32.lib opengl32.lib"
  289. OutputFile="..\..\bin\Win32-visualstudio\Irrlicht.dll"
  290. LinkIncremental="1"
  291. SuppressStartupBanner="true"
  292. IgnoreDefaultLibraryNames="libci.lib"
  293. GenerateDebugInformation="false"
  294. ProgramDatabaseFile="..\obj\IrrRelease\Irrlicht.pdb"
  295. SubSystem="2"
  296. OptimizeReferences="2"
  297. RandomizedBaseAddress="1"
  298. DataExecutionPrevention="0"
  299. ImportLibrary="..\..\lib\Win32-visualstudio\Irrlicht.lib"
  300. TargetMachine="1"
  301. />
  302. <Tool
  303. Name="VCALinkTool"
  304. />
  305. <Tool
  306. Name="VCManifestTool"
  307. />
  308. <Tool
  309. Name="VCXDCMakeTool"
  310. />
  311. <Tool
  312. Name="VCBscMakeTool"
  313. />
  314. <Tool
  315. Name="VCFxCopTool"
  316. />
  317. <Tool
  318. Name="VCAppVerifierTool"
  319. />
  320. <Tool
  321. Name="VCPostBuildEventTool"
  322. />
  323. </Configuration>
  324. <Configuration
  325. Name="Static lib - Debug|Win32"
  326. OutputDirectory="obj\$(ConfigurationName)"
  327. IntermediateDirectory="obj\$(ConfigurationName)"
  328. ConfigurationType="4"
  329. InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
  330. UseOfMFC="0"
  331. ATLMinimizesCRunTimeLibraryUsage="false"
  332. CharacterSet="0"
  333. >
  334. <Tool
  335. Name="VCPreBuildEventTool"
  336. />
  337. <Tool
  338. Name="VCCustomBuildTool"
  339. />
  340. <Tool
  341. Name="VCXMLDataGeneratorTool"
  342. />
  343. <Tool
  344. Name="VCWebServiceProxyGeneratorTool"
  345. />
  346. <Tool
  347. Name="VCMIDLTool"
  348. PreprocessorDefinitions="_DEBUG"
  349. MkTypLibCompatible="true"
  350. SuppressStartupBanner="true"
  351. TargetEnvironment="1"
  352. TypeLibraryName=".\..\Debug/Irrlicht.tlb"
  353. />
  354. <Tool
  355. Name="VCCLCompilerTool"
  356. Optimization="0"
  357. AdditionalIncludeDirectories="..\..\include;zlib"
  358. PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;_IRR_STATIC_LIB_;_CRT_SECURE_NO_DEPRECATE"
  359. ExceptionHandling="0"
  360. BasicRuntimeChecks="3"
  361. RuntimeLibrary="1"
  362. DisableLanguageExtensions="false"
  363. RuntimeTypeInfo="false"
  364. PrecompiledHeaderFile=".\..\obj\IrrDebug/Irrlicht.pch"
  365. AssemblerListingLocation=".\..\obj\IrrDebugStatic/"
  366. ObjectFile=".\..\obj\IrrDebugStatic/"
  367. ProgramDataBaseFileName=".\..\obj\IrrDebugStatic/"
  368. WarningLevel="3"
  369. SuppressStartupBanner="true"
  370. DebugInformationFormat="3"
  371. CompileAs="0"
  372. />
  373. <Tool
  374. Name="VCManagedResourceCompilerTool"
  375. />
  376. <Tool
  377. Name="VCResourceCompilerTool"
  378. PreprocessorDefinitions="_DEBUG"
  379. Culture="3079"
  380. />
  381. <Tool
  382. Name="VCPreLinkEventTool"
  383. />
  384. <Tool
  385. Name="VCLibrarianTool"
  386. AdditionalDependencies="winmm.lib"
  387. OutputFile="..\..\lib\Win32-visualstudio\Irrlicht.lib"
  388. />
  389. <Tool
  390. Name="VCALinkTool"
  391. />
  392. <Tool
  393. Name="VCXDCMakeTool"
  394. />
  395. <Tool
  396. Name="VCBscMakeTool"
  397. />
  398. <Tool
  399. Name="VCFxCopTool"
  400. />
  401. <Tool
  402. Name="VCPostBuildEventTool"
  403. />
  404. </Configuration>
  405. <Configuration
  406. Name="Static lib - Release|Win32"
  407. OutputDirectory="obj\$(ConfigurationName)"
  408. IntermediateDirectory="obj\$(ConfigurationName)"
  409. ConfigurationType="4"
  410. InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
  411. UseOfMFC="0"
  412. ATLMinimizesCRunTimeLibraryUsage="false"
  413. CharacterSet="2"
  414. WholeProgramOptimization="1"
  415. >
  416. <Tool
  417. Name="VCPreBuildEventTool"
  418. />
  419. <Tool
  420. Name="VCCustomBuildTool"
  421. />
  422. <Tool
  423. Name="VCXMLDataGeneratorTool"
  424. />
  425. <Tool
  426. Name="VCWebServiceProxyGeneratorTool"
  427. />
  428. <Tool
  429. Name="VCMIDLTool"
  430. PreprocessorDefinitions="NDEBUG"
  431. MkTypLibCompatible="true"
  432. SuppressStartupBanner="true"
  433. TargetEnvironment="1"
  434. TypeLibraryName=".\..\Release/Irrlicht.tlb"
  435. />
  436. <Tool
  437. Name="VCCLCompilerTool"
  438. Optimization="2"
  439. InlineFunctionExpansion="1"
  440. EnableIntrinsicFunctions="false"
  441. WholeProgramOptimization="false"
  442. AdditionalIncludeDirectories="..\..\include;zlib"
  443. PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;_IRR_STATIC_LIB_;_CRT_SECURE_NO_DEPRECATE"
  444. StringPooling="true"
  445. ExceptionHandling="0"
  446. RuntimeLibrary="0"
  447. BufferSecurityCheck="false"
  448. EnableFunctionLevelLinking="true"
  449. PrecompiledHeaderFile=".\..\obj\IrrRelease/Irrlicht.pch"
  450. AssemblerListingLocation=".\..\obj\IrrReleaseStatic/"
  451. ObjectFile=".\..\obj\IrrReleaseStatic/"
  452. ProgramDataBaseFileName=".\..\obj\IrrReleaseStatic/"
  453. WarningLevel="3"
  454. SuppressStartupBanner="true"
  455. DebugInformationFormat="0"
  456. CompileAs="0"
  457. />
  458. <Tool
  459. Name="VCManagedResourceCompilerTool"
  460. />
  461. <Tool
  462. Name="VCResourceCompilerTool"
  463. PreprocessorDefinitions="NDEBUG"
  464. Culture="3079"
  465. />
  466. <Tool
  467. Name="VCPreLinkEventTool"
  468. />
  469. <Tool
  470. Name="VCLibrarianTool"
  471. AdditionalDependencies="winmm.lib"
  472. OutputFile="..\..\lib\Win32-visualstudio\Irrlicht.release.lib"
  473. />
  474. <Tool
  475. Name="VCALinkTool"
  476. />
  477. <Tool
  478. Name="VCXDCMakeTool"
  479. />
  480. <Tool
  481. Name="VCBscMakeTool"
  482. />
  483. <Tool
  484. Name="VCFxCopTool"
  485. />
  486. <Tool
  487. Name="VCPostBuildEventTool"
  488. />
  489. </Configuration>
  490. <Configuration
  491. Name="Static lib - Release - Fast FPU|Win32"
  492. OutputDirectory="obj\$(ConfigurationName)"
  493. IntermediateDirectory="obj\$(ConfigurationName)"
  494. ConfigurationType="4"
  495. InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
  496. UseOfMFC="0"
  497. ATLMinimizesCRunTimeLibraryUsage="false"
  498. CharacterSet="2"
  499. WholeProgramOptimization="1"
  500. >
  501. <Tool
  502. Name="VCPreBuildEventTool"
  503. />
  504. <Tool
  505. Name="VCCustomBuildTool"
  506. />
  507. <Tool
  508. Name="VCXMLDataGeneratorTool"
  509. />
  510. <Tool
  511. Name="VCWebServiceProxyGeneratorTool"
  512. />
  513. <Tool
  514. Name="VCMIDLTool"
  515. PreprocessorDefinitions="NDEBUG"
  516. MkTypLibCompatible="true"
  517. SuppressStartupBanner="true"
  518. TargetEnvironment="1"
  519. TypeLibraryName=".\..\Release/Irrlicht.tlb"
  520. />
  521. <Tool
  522. Name="VCCLCompilerTool"
  523. Optimization="3"
  524. InlineFunctionExpansion="2"
  525. EnableIntrinsicFunctions="true"
  526. FavorSizeOrSpeed="0"
  527. OmitFramePointers="true"
  528. AdditionalIncludeDirectories="..\..\include;zlib"
  529. PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;_IRR_STATIC_LIB_;_CRT_SECURE_NO_DEPRECATE"
  530. StringPooling="true"
  531. ExceptionHandling="0"
  532. RuntimeLibrary="0"
  533. BufferSecurityCheck="false"
  534. EnableFunctionLevelLinking="true"
  535. FloatingPointModel="2"
  536. RuntimeTypeInfo="false"
  537. PrecompiledHeaderFile=".\..\obj\IrrRelease/Irrlicht.pch"
  538. AssemblerListingLocation=".\..\obj\IrrReleaseFastFPUStatic/"
  539. ObjectFile=".\..\obj\IrrReleaseFastFPUStatic/"
  540. ProgramDataBaseFileName=".\..\obj\IrrReleaseFastFPUStatic/"
  541. WarningLevel="3"
  542. SuppressStartupBanner="true"
  543. DebugInformationFormat="0"
  544. CallingConvention="1"
  545. CompileAs="0"
  546. />
  547. <Tool
  548. Name="VCManagedResourceCompilerTool"
  549. />
  550. <Tool
  551. Name="VCResourceCompilerTool"
  552. PreprocessorDefinitions="NDEBUG"
  553. Culture="3079"
  554. />
  555. <Tool
  556. Name="VCPreLinkEventTool"
  557. />
  558. <Tool
  559. Name="VCLibrarianTool"
  560. AdditionalDependencies="winmm.lib"
  561. OutputFile="..\..\lib\Win32-visualstudio\Irrlicht.lib"
  562. />
  563. <Tool
  564. Name="VCALinkTool"
  565. />
  566. <Tool
  567. Name="VCXDCMakeTool"
  568. />
  569. <Tool
  570. Name="VCBscMakeTool"
  571. />
  572. <Tool
  573. Name="VCFxCopTool"
  574. />
  575. <Tool
  576. Name="VCPostBuildEventTool"
  577. />
  578. </Configuration>
  579. <Configuration
  580. Name="SDL-Debug|Win32"
  581. OutputDirectory="obj\$(ConfigurationName)"
  582. IntermediateDirectory="obj\$(ConfigurationName)"
  583. ConfigurationType="2"
  584. InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
  585. UseOfMFC="0"
  586. ATLMinimizesCRunTimeLibraryUsage="false"
  587. CharacterSet="0"
  588. >
  589. <Tool
  590. Name="VCPreBuildEventTool"
  591. />
  592. <Tool
  593. Name="VCCustomBuildTool"
  594. />
  595. <Tool
  596. Name="VCXMLDataGeneratorTool"
  597. />
  598. <Tool
  599. Name="VCWebServiceProxyGeneratorTool"
  600. />
  601. <Tool
  602. Name="VCMIDLTool"
  603. PreprocessorDefinitions="_DEBUG"
  604. MkTypLibCompatible="true"
  605. SuppressStartupBanner="true"
  606. TargetEnvironment="1"
  607. TypeLibraryName=".\..\Debug/Irrlicht.tlb"
  608. />
  609. <Tool
  610. Name="VCCLCompilerTool"
  611. Optimization="0"
  612. AdditionalIncludeDirectories="..\..\include;zlib"
  613. PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;IRRLICHT_EXPORTS;_CRT_SECURE_NO_DEPRECATE;_IRR_USE_SDL_DEVICE_=1"
  614. ExceptionHandling="0"
  615. BasicRuntimeChecks="3"
  616. RuntimeLibrary="1"
  617. DisableLanguageExtensions="false"
  618. RuntimeTypeInfo="false"
  619. PrecompiledHeaderFile=".\..\obj\IrrDebug/Irrlicht.pch"
  620. AssemblerListingLocation=".\..\obj\IrrDebug/"
  621. ObjectFile=".\..\obj\IrrDebug/"
  622. ProgramDataBaseFileName=".\..\obj\IrrDebug/"
  623. WarningLevel="3"
  624. SuppressStartupBanner="true"
  625. DebugInformationFormat="3"
  626. CompileAs="0"
  627. />
  628. <Tool
  629. Name="VCManagedResourceCompilerTool"
  630. />
  631. <Tool
  632. Name="VCResourceCompilerTool"
  633. PreprocessorDefinitions="_DEBUG"
  634. Culture="3079"
  635. />
  636. <Tool
  637. Name="VCPreLinkEventTool"
  638. />
  639. <Tool
  640. Name="VCLinkerTool"
  641. UseLibraryDependencyInputs="true"
  642. AdditionalOptions="/MACHINE:I386"
  643. AdditionalDependencies="kernel32.lib user32.lib gdi32.lib opengl32.lib"
  644. OutputFile="..\..\bin\Win32-visualstudio\Irrlicht.dll"
  645. LinkIncremental="2"
  646. SuppressStartupBanner="true"
  647. AdditionalLibraryDirectories=""
  648. IgnoreDefaultLibraryNames="libci.lib"
  649. GenerateDebugInformation="true"
  650. ProgramDatabaseFile="..\obj\IrrDebug\Irrlicht.pdb"
  651. RandomizedBaseAddress="1"
  652. DataExecutionPrevention="0"
  653. ImportLibrary="..\..\lib\Win32-visualstudio\Irrlicht.lib"
  654. />
  655. <Tool
  656. Name="VCALinkTool"
  657. />
  658. <Tool
  659. Name="VCManifestTool"
  660. />
  661. <Tool
  662. Name="VCXDCMakeTool"
  663. />
  664. <Tool
  665. Name="VCBscMakeTool"
  666. />
  667. <Tool
  668. Name="VCFxCopTool"
  669. />
  670. <Tool
  671. Name="VCAppVerifierTool"
  672. />
  673. <Tool
  674. Name="VCPostBuildEventTool"
  675. />
  676. </Configuration>
  677. </Configurations>
  678. <References>
  679. </References>
  680. <Files>
  681. <Filter
  682. Name="include"
  683. >
  684. <File
  685. RelativePath="..\..\include\IEventReceiver.h"
  686. >
  687. </File>
  688. <File
  689. RelativePath="..\..\include\ILogger.h"
  690. >
  691. </File>
  692. <File
  693. RelativePath="..\..\include\IOSOperator.h"
  694. >
  695. </File>
  696. <File
  697. RelativePath="..\..\include\IReferenceCounted.h"
  698. >
  699. </File>
  700. <File
  701. RelativePath="..\..\include\IrrCompileConfig.h"
  702. >
  703. </File>
  704. <File
  705. RelativePath="..\..\include\irrlicht.h"
  706. >
  707. </File>
  708. <File
  709. RelativePath="..\..\include\IrrlichtDevice.h"
  710. >
  711. </File>
  712. <File
  713. RelativePath="..\..\include\irrTypes.h"
  714. >
  715. </File>
  716. <File
  717. RelativePath="..\..\include\ITimer.h"
  718. >
  719. </File>
  720. <File
  721. RelativePath="..\..\include\Keycodes.h"
  722. >
  723. </File>
  724. <File
  725. RelativePath="..\..\include\SIrrCreationParameters.h"
  726. >
  727. </File>
  728. <File
  729. RelativePath="..\..\include\SKeyMap.h"
  730. >
  731. </File>
  732. <Filter
  733. Name="video"
  734. >
  735. <File
  736. RelativePath="..\..\include\EDriverFeatures.h"
  737. >
  738. </File>
  739. <File
  740. RelativePath="..\..\include\EDriverTypes.h"
  741. >
  742. </File>
  743. <File
  744. RelativePath="..\..\include\IGeometryCreator.h"
  745. >
  746. </File>
  747. <File
  748. RelativePath="..\..\include\IGPUProgrammingServices.h"
  749. >
  750. </File>
  751. <File
  752. RelativePath="..\..\include\IImage.h"
  753. >
  754. </File>
  755. <File
  756. RelativePath="..\..\include\IImageLoader.h"
  757. >
  758. </File>
  759. <File
  760. RelativePath="..\..\include\IMaterialRenderer.h"
  761. >
  762. </File>
  763. <File
  764. RelativePath="..\..\include\IMaterialRendererServices.h"
  765. >
  766. </File>
  767. <File
  768. RelativePath="..\..\include\IShaderConstantSetCallBack.h"
  769. >
  770. </File>
  771. <File
  772. RelativePath="..\..\include\ITexture.h"
  773. >
  774. </File>
  775. <File
  776. RelativePath="..\..\include\IVideoDriver.h"
  777. >
  778. </File>
  779. <File
  780. RelativePath="..\..\include\IVideoModeList.h"
  781. >
  782. </File>
  783. <File
  784. RelativePath="..\..\include\S3DVertex.h"
  785. >
  786. </File>
  787. <File
  788. RelativePath="..\..\include\SColor.h"
  789. >
  790. </File>
  791. <File
  792. RelativePath="..\..\include\SExposedVideoData.h"
  793. >
  794. </File>
  795. <File
  796. RelativePath="..\..\include\SLight.h"
  797. >
  798. </File>
  799. <File
  800. RelativePath="..\..\include\SMaterial.h"
  801. >
  802. </File>
  803. <File
  804. RelativePath="..\..\include\SMaterialLayer.h"
  805. >
  806. </File>
  807. </Filter>
  808. <Filter
  809. Name="core"
  810. >
  811. <File
  812. RelativePath="..\..\include\aabbox3d.h"
  813. >
  814. </File>
  815. <File
  816. RelativePath="..\..\include\coreutil.h"
  817. >
  818. </File>
  819. <File
  820. RelativePath="..\..\include\dimension2d.h"
  821. >
  822. </File>
  823. <File
  824. RelativePath="..\..\include\heapsort.h"
  825. >
  826. </File>
  827. <File
  828. RelativePath="..\..\include\irrAllocator.h"
  829. >
  830. </File>
  831. <File
  832. RelativePath="..\..\include\irrArray.h"
  833. >
  834. </File>
  835. <File
  836. RelativePath="..\..\include\irrList.h"
  837. >
  838. </File>
  839. <File
  840. RelativePath="..\..\include\irrMap.h"
  841. >
  842. </File>
  843. <File
  844. RelativePath="..\..\include\irrMath.h"
  845. >
  846. </File>
  847. <File
  848. RelativePath="..\..\include\irrString.h"
  849. >
  850. </File>
  851. <File
  852. RelativePath="..\..\include\line2d.h"
  853. >
  854. </File>
  855. <File
  856. RelativePath="..\..\include\line3d.h"
  857. >
  858. </File>
  859. <File
  860. RelativePath="..\..\include\matrix4.h"
  861. >
  862. </File>
  863. <File
  864. RelativePath="..\..\include\plane3d.h"
  865. >
  866. </File>
  867. <File
  868. RelativePath="..\..\include\position2d.h"
  869. >
  870. </File>
  871. <File
  872. RelativePath="..\..\include\quaternion.h"
  873. >
  874. </File>
  875. <File
  876. RelativePath="..\..\include\rect.h"
  877. >
  878. </File>
  879. <File
  880. RelativePath="..\..\include\triangle3d.h"
  881. >
  882. </File>
  883. <File
  884. RelativePath="..\..\include\vector2d.h"
  885. >
  886. </File>
  887. <File
  888. RelativePath="..\..\include\vector3d.h"
  889. >
  890. </File>
  891. </Filter>
  892. <Filter
  893. Name="io"
  894. >
  895. <File
  896. RelativePath="..\..\include\EAttributes.h"
  897. >
  898. </File>
  899. <File
  900. RelativePath="..\..\include\IAttributeExchangingObject.h"
  901. >
  902. </File>
  903. <File
  904. RelativePath="..\..\include\IAttributes.h"
  905. >
  906. </File>
  907. <File
  908. RelativePath="..\..\include\IFileList.h"
  909. >
  910. </File>
  911. <File
  912. RelativePath="..\..\include\IFileSystem.h"
  913. >
  914. </File>
  915. <File
  916. RelativePath="..\..\include\IReadFile.h"
  917. >
  918. </File>
  919. <File
  920. RelativePath="..\..\include\irrXML.h"
  921. >
  922. </File>
  923. <File
  924. RelativePath="..\..\include\IWriteFile.h"
  925. >
  926. </File>
  927. <File
  928. RelativePath="..\..\include\IXMLReader.h"
  929. >
  930. </File>
  931. <File
  932. RelativePath="..\..\include\IXMLWriter.h"
  933. >
  934. </File>
  935. <File
  936. RelativePath="..\..\include\path.h"
  937. >
  938. </File>
  939. </Filter>
  940. <Filter
  941. Name="scene"
  942. >
  943. <File
  944. RelativePath="..\..\include\CDynamicMeshBuffer.h"
  945. >
  946. </File>
  947. <File
  948. RelativePath="..\..\include\CIndexBuffer.h"
  949. >
  950. </File>
  951. <File
  952. RelativePath="..\..\include\CMeshBuffer.h"
  953. >
  954. </File>
  955. <File
  956. RelativePath="..\..\include\CVertexBuffer.h"
  957. >
  958. </File>
  959. <File
  960. RelativePath="..\..\include\ECullingTypes.h"
  961. >
  962. </File>
  963. <File
  964. RelativePath="..\..\include\EDebugSceneTypes.h"
  965. >
  966. </File>
  967. <File
  968. RelativePath="..\..\include\EMeshWriterEnums.h"
  969. >
  970. </File>
  971. <File
  972. RelativePath="..\..\include\EPrimitiveTypes.h"
  973. >
  974. </File>
  975. <File
  976. RelativePath="..\..\include\ESceneNodeAnimatorTypes.h"
  977. >
  978. </File>
  979. <File
  980. RelativePath="..\..\include\ESceneNodeTypes.h"
  981. >
  982. </File>
  983. <File
  984. RelativePath="..\..\include\IAnimatedMesh.h"
  985. >
  986. </File>
  987. <File
  988. RelativePath="..\..\include\IAnimatedMeshMD2.h"
  989. >
  990. </File>
  991. <File
  992. RelativePath="..\..\include\IAnimatedMeshMD3.h"
  993. >
  994. </File>
  995. <File
  996. RelativePath="..\..\include\IAnimatedMeshSceneNode.h"
  997. >
  998. </File>
  999. <File
  1000. RelativePath="..\..\include\IBillboardSceneNode.h"
  1001. >
  1002. </File>
  1003. <File
  1004. RelativePath="..\..\include\ICameraSceneNode.h"
  1005. >
  1006. </File>
  1007. <File
  1008. RelativePath="..\..\include\IDummyTransformationSceneNode.h"
  1009. >
  1010. </File>
  1011. <File
  1012. RelativePath="..\..\include\ILightSceneNode.h"
  1013. >
  1014. </File>
  1015. <File
  1016. RelativePath="..\..\include\IMesh.h"
  1017. >
  1018. </File>
  1019. <File
  1020. RelativePath="..\..\include\IMeshBuffer.h"
  1021. >
  1022. </File>
  1023. <File
  1024. RelativePath="..\..\include\IMeshCache.h"
  1025. >
  1026. </File>
  1027. <File
  1028. RelativePath="..\..\include\IMeshLoader.h"
  1029. >
  1030. </File>
  1031. <File
  1032. RelativePath="..\..\include\IMeshManipulator.h"
  1033. >
  1034. </File>
  1035. <File
  1036. RelativePath="..\..\include\IMeshSceneNode.h"
  1037. >
  1038. </File>
  1039. <File
  1040. RelativePath="..\..\include\IMeshWriter.h"
  1041. >
  1042. </File>
  1043. <File
  1044. RelativePath="..\..\include\IMetaTriangleSelector.h"
  1045. >
  1046. </File>
  1047. <File
  1048. RelativePath="..\..\include\IParticleAffector.h"
  1049. >
  1050. </File>
  1051. <File
  1052. RelativePath="..\..\include\IParticleAnimatedMeshSceneNodeEmitter.h"
  1053. >
  1054. </File>
  1055. <File
  1056. RelativePath="..\..\include\IParticleAttractionAffector.h"
  1057. >
  1058. </File>
  1059. <File
  1060. RelativePath="..\..\include\IParticleBoxEmitter.h"
  1061. >
  1062. </File>
  1063. <File
  1064. RelativePath="..\..\include\IParticleCylinderEmitter.h"
  1065. >
  1066. </File>
  1067. <File
  1068. RelativePath="..\..\include\IParticleEmitter.h"
  1069. >
  1070. </File>
  1071. <File
  1072. RelativePath="..\..\include\IParticleFadeOutAffector.h"
  1073. >
  1074. </File>
  1075. <File
  1076. RelativePath="..\..\include\IParticleGravityAffector.h"
  1077. >
  1078. </File>
  1079. <File
  1080. RelativePath="..\..\include\IParticleMeshEmitter.h"
  1081. >
  1082. </File>
  1083. <File
  1084. RelativePath="..\..\include\IParticleRingEmitter.h"
  1085. >
  1086. </File>
  1087. <File
  1088. RelativePath="..\..\include\IParticleRotationAffector.h"
  1089. >
  1090. </File>
  1091. <File
  1092. RelativePath="..\..\include\IParticleSphereEmitter.h"
  1093. >
  1094. </File>
  1095. <File
  1096. RelativePath="..\..\include\IParticleSystemSceneNode.h"
  1097. >
  1098. </File>
  1099. <File
  1100. RelativePath="..\..\include\IQ3LevelMesh.h"
  1101. >
  1102. </File>
  1103. <File
  1104. RelativePath="..\..\include\IQ3Shader.h"
  1105. >
  1106. </File>
  1107. <File
  1108. RelativePath="..\..\include\ISceneCollisionManager.h"
  1109. >
  1110. </File>
  1111. <File
  1112. RelativePath="..\..\include\ISceneLoader.h"
  1113. >
  1114. </File>
  1115. <File
  1116. RelativePath="..\..\include\ISceneManager.h"
  1117. >
  1118. </File>
  1119. <File
  1120. RelativePath="..\..\include\ISceneNode.h"
  1121. >
  1122. </File>
  1123. <File
  1124. RelativePath="..\..\include\ISceneNodeAnimator.h"
  1125. >
  1126. </File>
  1127. <File
  1128. RelativePath="..\..\include\ISceneNodeAnimatorCameraFPS.h"
  1129. >
  1130. </File>
  1131. <File
  1132. RelativePath="..\..\include\ISceneNodeAnimatorCameraMaya.h"
  1133. >
  1134. </File>
  1135. <File
  1136. RelativePath="..\..\include\ISceneNodeAnimatorCollisionResponse.h"
  1137. >
  1138. </File>
  1139. <File
  1140. RelativePath="..\..\include\ISceneNodeAnimatorFactory.h"
  1141. >
  1142. </File>
  1143. <File
  1144. RelativePath="..\..\include\ISceneNodeFactory.h"
  1145. >
  1146. </File>
  1147. <File
  1148. RelativePath="..\..\include\IShadowVolumeSceneNode.h"
  1149. >
  1150. </File>
  1151. <File
  1152. RelativePath="..\..\include\ISkinnedMesh.h"
  1153. >
  1154. </File>
  1155. <File
  1156. RelativePath="..\..\include\ITerrainSceneNode.h"
  1157. >
  1158. </File>
  1159. <File
  1160. RelativePath="..\..\include\ITextSceneNode.h"
  1161. >
  1162. </File>
  1163. <File
  1164. RelativePath="..\..\include\ITriangleSelector.h"
  1165. >
  1166. </File>
  1167. <File
  1168. RelativePath="..\..\include\IVolumeLightSceneNode.h"
  1169. >
  1170. </File>
  1171. <File
  1172. RelativePath="..\..\include\SAnimatedMesh.h"
  1173. >
  1174. </File>
  1175. <File
  1176. RelativePath="..\..\include\SceneParameters.h"
  1177. >
  1178. </File>
  1179. <File
  1180. RelativePath="..\..\include\SMesh.h"
  1181. >
  1182. </File>
  1183. <File
  1184. RelativePath="..\..\include\SMeshBuffer.h"
  1185. >
  1186. </File>
  1187. <File
  1188. RelativePath="..\..\include\SMeshBufferLightMap.h"
  1189. >
  1190. </File>
  1191. <File
  1192. RelativePath="..\..\include\SMeshBufferTangents.h"
  1193. >
  1194. </File>
  1195. <File
  1196. RelativePath="..\..\include\SParticle.h"
  1197. >
  1198. </File>
  1199. <File
  1200. RelativePath="..\..\include\SSkinMeshBuffer.h"
  1201. >
  1202. </File>
  1203. <File
  1204. RelativePath="..\..\include\SViewFrustum.h"
  1205. >
  1206. </File>
  1207. </Filter>
  1208. <Filter
  1209. Name="gui"
  1210. >
  1211. <File
  1212. RelativePath="..\..\include\EGUIAlignment.h"
  1213. >
  1214. </File>
  1215. <File
  1216. RelativePath="..\..\include\EGUIElementTypes.h"
  1217. >
  1218. </File>
  1219. <File
  1220. RelativePath="..\..\include\EMessageBoxFlags.h"
  1221. >
  1222. </File>
  1223. <File
  1224. RelativePath="..\..\include\ICursorControl.h"
  1225. >
  1226. </File>
  1227. <File
  1228. RelativePath="..\..\include\IGUIButton.h"
  1229. >
  1230. </File>
  1231. <File
  1232. RelativePath="..\..\include\IGUICheckbox.h"
  1233. >
  1234. </File>
  1235. <File
  1236. RelativePath="..\..\include\IGUIComboBox.h"
  1237. >
  1238. </File>
  1239. <File
  1240. RelativePath="..\..\include\IGUIContextMenu.h"
  1241. >
  1242. </File>
  1243. <File
  1244. RelativePath="..\..\include\IGUIEditBox.h"
  1245. >
  1246. </File>
  1247. <File
  1248. RelativePath="..\..\include\IGUIElement.h"
  1249. >
  1250. </File>
  1251. <File
  1252. RelativePath="..\..\include\IGUIElementFactory.h"
  1253. >
  1254. </File>
  1255. <File
  1256. RelativePath="..\..\include\IGUIEnvironment.h"
  1257. >
  1258. </File>
  1259. <File
  1260. RelativePath="..\..\include\IGUIFileOpenDialog.h"
  1261. >
  1262. </File>
  1263. <File
  1264. RelativePath="..\..\include\IGUIFont.h"
  1265. >
  1266. </File>
  1267. <File
  1268. RelativePath="..\..\include\IGUIImage.h"
  1269. >
  1270. </File>
  1271. <File
  1272. RelativePath="..\..\include\IGUIImageList.h"
  1273. >
  1274. </File>
  1275. <File
  1276. RelativePath="..\..\include\IGUIInOutFader.h"
  1277. >
  1278. </File>
  1279. <File
  1280. RelativePath="..\..\include\IGUIListBox.h"
  1281. >
  1282. </File>
  1283. <File
  1284. RelativePath="..\..\include\IGUIMeshViewer.h"
  1285. >
  1286. </File>
  1287. <File
  1288. RelativePath="..\..\include\IGUIScrollBar.h"
  1289. >
  1290. </File>
  1291. <File
  1292. RelativePath="..\..\include\IGUISkin.h"
  1293. >
  1294. </File>
  1295. <File
  1296. RelativePath="..\..\include\IGUISpinBox.h"
  1297. >
  1298. </File>
  1299. <File
  1300. RelativePath="..\..\include\IGUISpriteBank.h"
  1301. >
  1302. </File>
  1303. <File
  1304. RelativePath="..\..\include\IGUIStaticText.h"
  1305. >
  1306. </File>
  1307. <File
  1308. RelativePath="..\..\include\IGUITabControl.h"
  1309. >
  1310. </File>
  1311. <File
  1312. RelativePath="..\..\include\IGUIToolbar.h"
  1313. >
  1314. </File>
  1315. <File
  1316. RelativePath="..\..\include\IGUITreeView.h"
  1317. >
  1318. </File>
  1319. <File
  1320. RelativePath="..\..\include\IGUIWindow.h"
  1321. >
  1322. </File>
  1323. </Filter>
  1324. </Filter>
  1325. <Filter
  1326. Name="doc"
  1327. >
  1328. <File
  1329. RelativePath="..\..\changes.txt"
  1330. >
  1331. </File>
  1332. <File
  1333. RelativePath="..\..\readme.txt"
  1334. >
  1335. </File>
  1336. </Filter>
  1337. <Filter
  1338. Name="Irrlicht"
  1339. >
  1340. <Filter
  1341. Name="scene"
  1342. >
  1343. <File
  1344. RelativePath="CDefaultSceneNodeAnimatorFactory.cpp"
  1345. >
  1346. </File>
  1347. <File
  1348. RelativePath="CDefaultSceneNodeAnimatorFactory.h"
  1349. >
  1350. </File>
  1351. <File
  1352. RelativePath="CDefaultSceneNodeFactory.cpp"
  1353. >
  1354. </File>
  1355. <File
  1356. RelativePath="CDefaultSceneNodeFactory.h"
  1357. >
  1358. </File>
  1359. <File
  1360. RelativePath="CGeometryCreator.cpp"
  1361. >
  1362. </File>
  1363. <File
  1364. RelativePath="CGeometryCreator.h"
  1365. >
  1366. </File>
  1367. <File
  1368. RelativePath="CMeshCache.cpp"
  1369. >
  1370. </File>
  1371. <File
  1372. RelativePath="CMeshCache.h"
  1373. >
  1374. </File>
  1375. <File
  1376. RelativePath="CMeshManipulator.cpp"
  1377. >
  1378. </File>
  1379. <File
  1380. RelativePath="CMeshManipulator.h"
  1381. >
  1382. </File>
  1383. <File
  1384. RelativePath="CSceneLoaderIrr.cpp"
  1385. >
  1386. </File>
  1387. <File
  1388. RelativePath="CSceneLoaderIrr.h"
  1389. >
  1390. </File>
  1391. <File
  1392. RelativePath="CSceneManager.cpp"
  1393. >
  1394. </File>
  1395. <File
  1396. RelativePath="CSceneManager.h"
  1397. >
  1398. </File>
  1399. <File
  1400. RelativePath="Octree.h"
  1401. >
  1402. </File>
  1403. <Filter
  1404. Name="loaders"
  1405. >
  1406. <File
  1407. RelativePath="C3DSMeshFileLoader.cpp"
  1408. >
  1409. </File>
  1410. <File
  1411. RelativePath="C3DSMeshFileLoader.h"
  1412. >
  1413. </File>
  1414. <File
  1415. RelativePath=".\CAnimatedMeshHalfLife.cpp"
  1416. >
  1417. </File>
  1418. <File
  1419. RelativePath=".\CAnimatedMeshHalfLife.h"
  1420. >
  1421. </File>
  1422. <File
  1423. RelativePath="CAnimatedMeshMD2.cpp"
  1424. >
  1425. </File>
  1426. <File
  1427. RelativePath="CAnimatedMeshMD2.h"
  1428. >
  1429. </File>
  1430. <File
  1431. RelativePath="CAnimatedMeshMD3.cpp"
  1432. >
  1433. </File>
  1434. <File
  1435. RelativePath="CAnimatedMeshMD3.h"
  1436. >
  1437. </File>
  1438. <File
  1439. RelativePath="CB3DMeshFileLoader.cpp"
  1440. >
  1441. </File>
  1442. <File
  1443. RelativePath="CB3DMeshFileLoader.h"
  1444. >
  1445. </File>
  1446. <File
  1447. RelativePath="CBSPMeshFileLoader.cpp"
  1448. >
  1449. </File>
  1450. <File
  1451. RelativePath="CBSPMeshFileLoader.h"
  1452. >
  1453. </File>
  1454. <File
  1455. RelativePath="CColladaFileLoader.cpp"
  1456. >
  1457. </File>
  1458. <File
  1459. RelativePath="CColladaFileLoader.h"
  1460. >
  1461. </File>
  1462. <File
  1463. RelativePath="CCSMLoader.cpp"
  1464. >
  1465. </File>
  1466. <File
  1467. RelativePath="CCSMLoader.h"
  1468. >
  1469. </File>
  1470. <File
  1471. RelativePath="CDMFLoader.cpp"
  1472. >
  1473. </File>
  1474. <File
  1475. RelativePath="CDMFLoader.h"
  1476. >
  1477. </File>
  1478. <File
  1479. RelativePath="CIrrMeshFileLoader.cpp"
  1480. >
  1481. </File>
  1482. <File
  1483. RelativePath="CIrrMeshFileLoader.h"
  1484. >
  1485. </File>
  1486. <File
  1487. RelativePath="CLMTSMeshFileLoader.cpp"
  1488. >
  1489. </File>
  1490. <File
  1491. RelativePath="CLMTSMeshFileLoader.h"
  1492. >
  1493. </File>
  1494. <File
  1495. RelativePath="CLWOMeshFileLoader.cpp"
  1496. >
  1497. </File>
  1498. <File
  1499. RelativePath="CLWOMeshFileLoader.h"
  1500. >
  1501. </File>
  1502. <File
  1503. RelativePath="CMD2MeshFileLoader.cpp"
  1504. >
  1505. </File>
  1506. <File
  1507. RelativePath="CMD2MeshFileLoader.h"
  1508. >
  1509. </File>
  1510. <File
  1511. RelativePath="CMD3MeshFileLoader.cpp"
  1512. >
  1513. </File>
  1514. <File
  1515. RelativePath="CMD3MeshFileLoader.h"
  1516. >
  1517. </File>
  1518. <File
  1519. RelativePath="CMS3DMeshFileLoader.cpp"
  1520. >
  1521. </File>
  1522. <File
  1523. RelativePath="CMS3DMeshFileLoader.h"
  1524. >
  1525. </File>
  1526. <File
  1527. RelativePath="CMY3DHelper.h"
  1528. >
  1529. </File>
  1530. <File
  1531. RelativePath="CMY3DMeshFileLoader.cpp"
  1532. >
  1533. </File>
  1534. <File
  1535. RelativePath="CMY3DMeshFileLoader.h"
  1536. >
  1537. </File>
  1538. <File
  1539. RelativePath="COBJMeshFileLoader.cpp"
  1540. >
  1541. </File>
  1542. <File
  1543. RelativePath="COBJMeshFileLoader.h"
  1544. >
  1545. </File>
  1546. <File
  1547. RelativePath="COCTLoader.cpp"
  1548. >
  1549. </File>
  1550. <File
  1551. RelativePath="COCTLoader.h"
  1552. >
  1553. </File>
  1554. <File
  1555. RelativePath="COgreMeshFileLoader.cpp"
  1556. >
  1557. </File>
  1558. <File
  1559. RelativePath="COgreMeshFileLoader.h"
  1560. >
  1561. </File>
  1562. <File
  1563. RelativePath="CPLYMeshFileLoader.cpp"
  1564. >
  1565. </File>
  1566. <File
  1567. RelativePath="CPLYMeshFileLoader.h"
  1568. >
  1569. </File>
  1570. <File
  1571. RelativePath="CQ3LevelMesh.cpp"
  1572. >
  1573. </File>
  1574. <File
  1575. RelativePath="CQ3LevelMesh.h"
  1576. >
  1577. </File>
  1578. <File
  1579. RelativePath="CSkinnedMesh.cpp"
  1580. >
  1581. </File>
  1582. <File
  1583. RelativePath="CSkinnedMesh.h"
  1584. >
  1585. </File>
  1586. <File
  1587. RelativePath="CSMFMeshFileLoader.cpp"
  1588. >
  1589. </File>
  1590. <File
  1591. RelativePath="CSMFMeshFileLoader.h"
  1592. >
  1593. </File>
  1594. <File
  1595. RelativePath="CSTLMeshFileLoader.cpp"
  1596. >
  1597. </File>
  1598. <File
  1599. RelativePath="CSTLMeshFileLoader.h"
  1600. >
  1601. </File>
  1602. <File
  1603. RelativePath="CXMeshFileLoader.cpp"
  1604. >
  1605. </File>
  1606. <File
  1607. RelativePath="CXMeshFileLoader.h"
  1608. >
  1609. </File>
  1610. <File
  1611. RelativePath="dmfsupport.h"
  1612. >
  1613. </File>
  1614. </Filter>
  1615. <Filter
  1616. Name="sceneNodes"
  1617. >
  1618. <File
  1619. RelativePath="CAnimatedMeshSceneNode.cpp"
  1620. >
  1621. </File>
  1622. <File
  1623. RelativePath="CAnimatedMeshSceneNode.h"
  1624. >
  1625. </File>
  1626. <File
  1627. RelativePath="CBillboardSceneNode.cpp"
  1628. >
  1629. </File>
  1630. <File
  1631. RelativePath="CBillboardSceneNode.h"
  1632. >
  1633. </File>
  1634. <File
  1635. RelativePath="CBoneSceneNode.cpp"
  1636. >
  1637. </File>
  1638. <File
  1639. RelativePath="CBoneSceneNode.h"
  1640. >
  1641. </File>
  1642. <File
  1643. RelativePath="CCameraSceneNode.cpp"
  1644. >
  1645. </File>
  1646. <File
  1647. RelativePath="CCameraSceneNode.h"
  1648. >
  1649. </File>
  1650. <File
  1651. RelativePath="CCubeSceneNode.cpp"
  1652. >
  1653. </File>
  1654. <File
  1655. RelativePath="CCubeSceneNode.h"
  1656. >
  1657. </File>
  1658. <File
  1659. RelativePath="CDummyTransformationSceneNode.cpp"
  1660. >
  1661. </File>
  1662. <File
  1663. RelativePath="CDummyTransformationSceneNode.h"
  1664. >
  1665. </File>
  1666. <File
  1667. RelativePath="CEmptySceneNode.cpp"
  1668. >
  1669. </File>
  1670. <File
  1671. RelativePath="CEmptySceneNode.h"
  1672. >
  1673. </File>
  1674. <File
  1675. RelativePath="CLightSceneNode.cpp"
  1676. >
  1677. </File>
  1678. <File
  1679. RelativePath="CLightSceneNode.h"
  1680. >
  1681. </File>
  1682. <File
  1683. RelativePath="CMeshSceneNode.cpp"
  1684. >
  1685. </File>
  1686. <File
  1687. RelativePath="CMeshSceneNode.h"
  1688. >
  1689. </File>
  1690. <File
  1691. RelativePath="COctreeSceneNode.cpp"
  1692. >
  1693. </File>
  1694. <File
  1695. RelativePath="COctreeSceneNode.h"
  1696. >
  1697. </File>
  1698. <File
  1699. RelativePath="CQuake3ShaderSceneNode.cpp"
  1700. >
  1701. </File>
  1702. <File
  1703. RelativePath="CQuake3ShaderSceneNode.h"
  1704. >
  1705. </File>
  1706. <File
  1707. RelativePath="CShadowVolumeSceneNode.cpp"
  1708. >
  1709. </File>
  1710. <File
  1711. RelativePath="CShadowVolumeSceneNode.h"
  1712. >
  1713. </File>
  1714. <File
  1715. RelativePath="CSkyBoxSceneNode.cpp"
  1716. >
  1717. </File>
  1718. <File
  1719. RelativePath="CSkyBoxSceneNode.h"
  1720. >
  1721. </File>
  1722. <File
  1723. RelativePath="CSkyDomeSceneNode.cpp"
  1724. >
  1725. </File>
  1726. <File
  1727. RelativePath="CSkyDomeSceneNode.h"
  1728. >
  1729. </File>
  1730. <File
  1731. RelativePath="CSphereSceneNode.cpp"
  1732. >
  1733. </File>
  1734. <File
  1735. RelativePath="CSphereSceneNode.h"
  1736. >
  1737. </File>
  1738. <File
  1739. RelativePath="CTerrainSceneNode.cpp"
  1740. >
  1741. </File>
  1742. <File
  1743. RelativePath="CTerrainSceneNode.h"
  1744. >
  1745. </File>
  1746. <File
  1747. RelativePath="CTextSceneNode.cpp"
  1748. >
  1749. </File>
  1750. <File
  1751. RelativePath="CTextSceneNode.h"
  1752. >
  1753. </File>
  1754. <File
  1755. RelativePath="CVolumeLightSceneNode.cpp"
  1756. >
  1757. </File>
  1758. <File
  1759. RelativePath="CVolumeLightSceneNode.h"
  1760. >
  1761. </File>
  1762. <File
  1763. RelativePath="CWaterSurfaceSceneNode.cpp"
  1764. >
  1765. </File>
  1766. <File
  1767. RelativePath="CWaterSurfaceSceneNode.h"
  1768. >
  1769. </File>
  1770. </Filter>
  1771. <Filter
  1772. Name="particleSystem"
  1773. >
  1774. <File
  1775. RelativePath="CParticleAnimatedMeshSceneNodeEmitter.cpp"
  1776. >
  1777. </File>
  1778. <File
  1779. RelativePath=".\CParticleAnimatedMeshSceneNodeEmitter.h"
  1780. >
  1781. </File>
  1782. <File
  1783. RelativePath="CParticleAttractionAffector.cpp"
  1784. >
  1785. </File>
  1786. <File
  1787. RelativePath=".\CParticleAttractionAffector.h"
  1788. >
  1789. </File>
  1790. <File
  1791. RelativePath="CParticleBoxEmitter.cpp"
  1792. >
  1793. </File>
  1794. <File
  1795. RelativePath="CParticleBoxEmitter.h"
  1796. >
  1797. </File>
  1798. <File
  1799. RelativePath="CParticleCylinderEmitter.cpp"
  1800. >
  1801. </File>
  1802. <File
  1803. RelativePath=".\CParticleCylinderEmitter.h"
  1804. >
  1805. </File>
  1806. <File
  1807. RelativePath="CParticleFadeOutAffector.cpp"
  1808. >
  1809. </File>
  1810. <File
  1811. RelativePath="CParticleFadeOutAffector.h"
  1812. >
  1813. </File>
  1814. <File
  1815. RelativePath="CParticleGravityAffector.cpp"
  1816. >
  1817. </File>
  1818. <File
  1819. RelativePath="CParticleGravityAffector.h"
  1820. >
  1821. </File>
  1822. <File
  1823. RelativePath="CParticleMeshEmitter.cpp"
  1824. >
  1825. </File>
  1826. <File
  1827. RelativePath=".\CParticleMeshEmitter.h"
  1828. >
  1829. </File>
  1830. <File
  1831. RelativePath="CParticlePointEmitter.cpp"
  1832. >
  1833. </File>
  1834. <File
  1835. RelativePath="CParticlePointEmitter.h"
  1836. >
  1837. </File>
  1838. <File
  1839. RelativePath="CParticleRingEmitter.cpp"
  1840. >
  1841. </File>
  1842. <File
  1843. RelativePath=".\CParticleRingEmitter.h"
  1844. >
  1845. </File>
  1846. <File
  1847. RelativePath="CParticleRotationAffector.cpp"
  1848. >
  1849. </File>
  1850. <File
  1851. RelativePath=".\CParticleRotationAffector.h"
  1852. >
  1853. </File>
  1854. <File
  1855. RelativePath="CParticleScaleAffector.cpp"
  1856. >
  1857. </File>
  1858. <File
  1859. RelativePath="CParticleScaleAffector.h"
  1860. >
  1861. </File>
  1862. <File
  1863. RelativePath="CParticleSphereEmitter.cpp"
  1864. >
  1865. </File>
  1866. <File
  1867. RelativePath=".\CParticleSphereEmitter.h"
  1868. >
  1869. </File>
  1870. <File
  1871. RelativePath="CParticleSystemSceneNode.cpp"
  1872. >
  1873. </File>
  1874. <File
  1875. RelativePath="CParticleSystemSceneNode.h"
  1876. >
  1877. </File>
  1878. </Filter>
  1879. <Filter
  1880. Name="collision"
  1881. >
  1882. <File
  1883. RelativePath="CMetaTriangleSelector.cpp"
  1884. >
  1885. </File>
  1886. <File
  1887. RelativePath="CMetaTriangleSelector.h"
  1888. >
  1889. </File>
  1890. <File
  1891. RelativePath="COctreeTriangleSelector.cpp"
  1892. >
  1893. </File>
  1894. <File
  1895. RelativePath="COctreeTriangleSelector.h"
  1896. >
  1897. </File>
  1898. <File
  1899. RelativePath="CSceneCollisionManager.cpp"
  1900. >
  1901. </File>
  1902. <File
  1903. RelativePath="CSceneCollisionManager.h"
  1904. >
  1905. </File>
  1906. <File
  1907. RelativePath="CTerrainTriangleSelector.cpp"
  1908. >
  1909. </File>
  1910. <File
  1911. RelativePath="CTerrainTriangleSelector.h"
  1912. >
  1913. </File>
  1914. <File
  1915. RelativePath="CTriangleBBSelector.cpp"
  1916. >
  1917. </File>
  1918. <File
  1919. RelativePath="CTriangleBBSelector.h"
  1920. >
  1921. </File>
  1922. <File
  1923. RelativePath="CTriangleSelector.cpp"
  1924. >
  1925. </File>
  1926. <File
  1927. RelativePath="CTriangleSelector.h"
  1928. >
  1929. </File>
  1930. </Filter>
  1931. <Filter
  1932. Name="animators"
  1933. >
  1934. <File
  1935. RelativePath="CSceneNodeAnimatorCameraFPS.cpp"
  1936. >
  1937. </File>
  1938. <File
  1939. RelativePath="CSceneNodeAnimatorCameraFPS.h"
  1940. >
  1941. </File>
  1942. <File
  1943. RelativePath="CSceneNodeAnimatorCameraMaya.cpp"
  1944. >
  1945. </File>
  1946. <File
  1947. RelativePath="CSceneNodeAnimatorCameraMaya.h"
  1948. >
  1949. </File>
  1950. <File
  1951. RelativePath="CSceneNodeAnimatorCollisionResponse.cpp"
  1952. >
  1953. </File>
  1954. <File
  1955. RelativePath="CSceneNodeAnimatorCollisionResponse.h"
  1956. >
  1957. </File>
  1958. <File
  1959. RelativePath="CSceneNodeAnimatorDelete.cpp"
  1960. >
  1961. </File>
  1962. <File
  1963. RelativePath="CSceneNodeAnimatorDelete.h"
  1964. >
  1965. </File>
  1966. <File
  1967. RelativePath="CSceneNodeAnimatorFlyCircle.cpp"
  1968. >
  1969. </File>
  1970. <File
  1971. RelativePath="CSceneNodeAnimatorFlyCircle.h"
  1972. >
  1973. </File>
  1974. <File
  1975. RelativePath="CSceneNodeAnimatorFlyStraight.cpp"
  1976. >
  1977. </File>
  1978. <File
  1979. RelativePath="CSceneNodeAnimatorFlyStraight.h"
  1980. >
  1981. </File>
  1982. <File
  1983. RelativePath="CSceneNodeAnimatorFollowSpline.cpp"
  1984. >
  1985. </File>
  1986. <File
  1987. RelativePath="CSceneNodeAnimatorFollowSpline.h"
  1988. >
  1989. </File>
  1990. <File
  1991. RelativePath="CSceneNodeAnimatorRotation.cpp"
  1992. >
  1993. </File>
  1994. <File
  1995. RelativePath="CSceneNodeAnimatorRotation.h"
  1996. >
  1997. </File>
  1998. <File
  1999. RelativePath="CSceneNodeAnimatorTexture.cpp"
  2000. >
  2001. </File>
  2002. <File
  2003. RelativePath="CSceneNodeAnimatorTexture.h"
  2004. >
  2005. </File>
  2006. </Filter>
  2007. <Filter
  2008. Name="writers"
  2009. >
  2010. <File
  2011. RelativePath="CColladaMeshWriter.cpp"
  2012. >
  2013. </File>
  2014. <File
  2015. RelativePath="CColladaMeshWriter.h"
  2016. >
  2017. </File>
  2018. <File
  2019. RelativePath="CIrrMeshWriter.cpp"
  2020. >
  2021. </File>
  2022. <File
  2023. RelativePath="CIrrMeshWriter.h"
  2024. >
  2025. </File>
  2026. <File
  2027. RelativePath="COBJMeshWriter.cpp"
  2028. >
  2029. </File>
  2030. <File
  2031. RelativePath="COBJMeshWriter.h"
  2032. >
  2033. </File>
  2034. <File
  2035. RelativePath=".\CPLYMeshWriter.cpp"
  2036. >
  2037. </File>
  2038. <File
  2039. RelativePath=".\CPLYMeshWriter.h"
  2040. >
  2041. </File>
  2042. <File
  2043. RelativePath="CSTLMeshWriter.cpp"
  2044. >
  2045. </File>
  2046. <File
  2047. RelativePath="CSTLMeshWriter.h"
  2048. >
  2049. </File>
  2050. </Filter>
  2051. </Filter>
  2052. <Filter
  2053. Name="video"
  2054. >
  2055. <File
  2056. RelativePath="CCgMaterialRenderer.cpp"
  2057. >
  2058. </File>
  2059. <File
  2060. RelativePath="CCgMaterialRenderer.h"
  2061. >
  2062. </File>
  2063. <File
  2064. RelativePath="CVideoModeList.cpp"
  2065. >
  2066. </File>
  2067. <File
  2068. RelativePath="CVideoModeList.h"
  2069. >
  2070. </File>
  2071. <Filter
  2072. Name="Software"
  2073. >
  2074. <File
  2075. RelativePath="CSoftwareDriver.cpp"
  2076. >
  2077. </File>
  2078. <File
  2079. RelativePath="CSoftwareDriver.h"
  2080. >
  2081. </File>
  2082. <File
  2083. RelativePath="CSoftwareTexture.cpp"
  2084. >
  2085. </File>
  2086. <File
  2087. RelativePath="CSoftwareTexture.h"
  2088. >
  2089. </File>
  2090. <File
  2091. RelativePath="CTRFlat.cpp"
  2092. >
  2093. </File>
  2094. <File
  2095. RelativePath="CTRFlatWire.cpp"
  2096. >
  2097. </File>
  2098. <File
  2099. RelativePath="CTRGouraud.cpp"
  2100. >
  2101. </File>
  2102. <File
  2103. RelativePath="CTRGouraudWire.cpp"
  2104. >
  2105. </File>
  2106. <File
  2107. RelativePath="CTRTextureFlat.cpp"
  2108. >
  2109. </File>
  2110. <File
  2111. RelativePath="CTRTextureFlatWire.cpp"
  2112. >
  2113. </File>
  2114. <File
  2115. RelativePath="CTRTextureGouraud.cpp"
  2116. >
  2117. </File>
  2118. <File
  2119. RelativePath="CTRTextureGouraud.h"
  2120. >
  2121. </File>
  2122. <File
  2123. RelativePath="CTRTextureGouraudAdd.cpp"
  2124. >
  2125. </File>
  2126. <File
  2127. RelativePath="CTRTextureGouraudNoZ.cpp"
  2128. >
  2129. </File>
  2130. <File
  2131. RelativePath="CTRTextureGouraudWire.cpp"
  2132. >
  2133. </File>
  2134. <File
  2135. RelativePath="CZBuffer.cpp"
  2136. >
  2137. </File>
  2138. <File
  2139. RelativePath="CZBuffer.h"
  2140. >
  2141. </File>
  2142. <File
  2143. RelativePath="ITriangleRenderer.h"
  2144. >
  2145. </File>
  2146. <File
  2147. RelativePath="IZBuffer.h"
  2148. >
  2149. </File>
  2150. <File
  2151. RelativePath="S2DVertex.h"
  2152. >
  2153. </File>
  2154. </Filter>
  2155. <Filter
  2156. Name="OpenGL"
  2157. >
  2158. <File
  2159. RelativePath=".\COpenGLCgMaterialRenderer.cpp"
  2160. >
  2161. </File>
  2162. <File
  2163. RelativePath=".\COpenGLCgMaterialRenderer.h"
  2164. >
  2165. </File>
  2166. <File
  2167. RelativePath="COpenGLDriver.cpp"
  2168. >
  2169. </File>
  2170. <File
  2171. RelativePath="COpenGLDriver.h"
  2172. >
  2173. </File>
  2174. <File
  2175. RelativePath="COpenGLExtensionHandler.cpp"
  2176. >
  2177. </File>
  2178. <File
  2179. RelativePath="COpenGLExtensionHandler.h"
  2180. >
  2181. </File>
  2182. <File
  2183. RelativePath="COpenGLMaterialRenderer.h"
  2184. >
  2185. </File>
  2186. <File
  2187. RelativePath="COpenGLNormalMapRenderer.cpp"
  2188. >
  2189. </File>
  2190. <File
  2191. RelativePath="COpenGLNormalMapRenderer.h"
  2192. >
  2193. </File>
  2194. <File
  2195. RelativePath="COpenGLParallaxMapRenderer.cpp"
  2196. >
  2197. </File>
  2198. <File
  2199. RelativePath="COpenGLParallaxMapRenderer.h"
  2200. >
  2201. </File>
  2202. <File
  2203. RelativePath="COpenGLShaderMaterialRenderer.cpp"
  2204. >
  2205. </File>
  2206. <File
  2207. RelativePath="COpenGLShaderMaterialRenderer.h"
  2208. >
  2209. </File>
  2210. <File
  2211. RelativePath="COpenGLSLMaterialRenderer.cpp"
  2212. >
  2213. </File>
  2214. <File
  2215. RelativePath="COpenGLSLMaterialRenderer.h"
  2216. >
  2217. </File>
  2218. <File
  2219. RelativePath="COpenGLTexture.cpp"
  2220. >
  2221. </File>
  2222. <File
  2223. RelativePath="COpenGLTexture.h"
  2224. >
  2225. </File>
  2226. <File
  2227. RelativePath="glext.h"
  2228. >
  2229. </File>
  2230. <File
  2231. RelativePath=".\wglext.h"
  2232. >
  2233. </File>
  2234. </Filter>
  2235. <Filter
  2236. Name="Direct3D8"
  2237. >
  2238. <File
  2239. RelativePath="CD3D8Driver.cpp"
  2240. >
  2241. </File>
  2242. <File
  2243. RelativePath="CD3D8Driver.h"
  2244. >
  2245. </File>
  2246. <File
  2247. RelativePath="CD3D8MaterialRenderer.h"
  2248. >
  2249. </File>
  2250. <File
  2251. RelativePath="CD3D8NormalMapRenderer.cpp"
  2252. >
  2253. </File>
  2254. <File
  2255. RelativePath="CD3D8NormalMapRenderer.h"
  2256. >
  2257. </File>
  2258. <File
  2259. RelativePath="CD3D8ParallaxMapRenderer.cpp"
  2260. >
  2261. </File>
  2262. <File
  2263. RelativePath="CD3D8ParallaxMapRenderer.h"
  2264. >
  2265. </File>
  2266. <File
  2267. RelativePath="CD3D8ShaderMaterialRenderer.cpp"
  2268. >
  2269. </File>
  2270. <File
  2271. RelativePath="CD3D8ShaderMaterialRenderer.h"
  2272. >
  2273. </File>
  2274. <File
  2275. RelativePath="CD3D8Texture.cpp"
  2276. >
  2277. </File>
  2278. <File
  2279. RelativePath="CD3D8Texture.h"
  2280. >
  2281. </File>
  2282. </Filter>
  2283. <Filter
  2284. Name="Null"
  2285. >
  2286. <File
  2287. RelativePath=".\CBlit.h"
  2288. >
  2289. </File>
  2290. <File
  2291. RelativePath="CColorConverter.cpp"
  2292. >
  2293. </File>
  2294. <File
  2295. RelativePath="CColorConverter.h"
  2296. >
  2297. </File>
  2298. <File
  2299. RelativePath="CFPSCounter.cpp"
  2300. >
  2301. </File>
  2302. <File
  2303. RelativePath="CFPSCounter.h"
  2304. >
  2305. </File>
  2306. <File
  2307. RelativePath="CImage.cpp"
  2308. >
  2309. </File>
  2310. <File
  2311. RelativePath="CImage.h"
  2312. >
  2313. </File>
  2314. <File
  2315. RelativePath="CNullDriver.cpp"
  2316. >
  2317. </File>
  2318. <File
  2319. RelativePath="CNullDriver.h"
  2320. >
  2321. </File>
  2322. <File
  2323. RelativePath="IImagePresenter.h"
  2324. >
  2325. </File>
  2326. <Filter
  2327. Name="Writer"
  2328. >
  2329. <File
  2330. RelativePath="CImageWriterBMP.cpp"
  2331. >
  2332. </File>
  2333. <File
  2334. RelativePath="CImageWriterBMP.h"
  2335. >
  2336. </File>
  2337. <File
  2338. RelativePath="CImageWriterJPG.cpp"
  2339. >
  2340. </File>
  2341. <File
  2342. RelativePath="CImageWriterJPG.h"
  2343. >
  2344. </File>
  2345. <File
  2346. RelativePath="CImageWriterPCX.cpp"
  2347. >
  2348. </File>
  2349. <File
  2350. RelativePath="CImageWriterPCX.h"
  2351. >
  2352. </File>
  2353. <File
  2354. RelativePath="CImageWriterPNG.cpp"
  2355. >
  2356. </File>
  2357. <File
  2358. RelativePath="CImageWriterPNG.h"
  2359. >
  2360. </File>
  2361. <File
  2362. RelativePath="CImageWriterPPM.cpp"
  2363. >
  2364. </File>
  2365. <File
  2366. RelativePath="CImageWriterPPM.h"
  2367. >
  2368. </File>
  2369. <File
  2370. RelativePath="CImageWriterPSD.cpp"
  2371. >
  2372. </File>
  2373. <File
  2374. RelativePath="CImageWriterPSD.h"
  2375. >
  2376. </File>
  2377. <File
  2378. RelativePath="CImageWriterTGA.cpp"
  2379. >
  2380. </File>
  2381. <File
  2382. RelativePath="CImageWriterTGA.h"
  2383. >
  2384. </File>
  2385. </Filter>
  2386. <Filter
  2387. Name="Loader"
  2388. >
  2389. <File
  2390. RelativePath="CImageLoaderBMP.cpp"
  2391. >
  2392. </File>
  2393. <File
  2394. RelativePath="CImageLoaderBMP.h"
  2395. >
  2396. </File>
  2397. <File
  2398. RelativePath=".\CImageLoaderDDS.cpp"
  2399. >
  2400. </File>
  2401. <File
  2402. RelativePath=".\CImageLoaderDDS.h"
  2403. >
  2404. </File>
  2405. <File
  2406. RelativePath="CImageLoaderJPG.cpp"
  2407. >
  2408. </File>
  2409. <File
  2410. RelativePath="CImageLoaderJPG.h"
  2411. >
  2412. </File>
  2413. <File
  2414. RelativePath="CImageLoaderPCX.cpp"
  2415. >
  2416. </File>
  2417. <File
  2418. RelativePath="CImageLoaderPCX.h"
  2419. >
  2420. </File>
  2421. <File
  2422. RelativePath="CImageLoaderPNG.cpp"
  2423. >
  2424. </File>
  2425. <File
  2426. RelativePath="CImageLoaderPNG.h"
  2427. >
  2428. </File>
  2429. <File
  2430. RelativePath="CImageLoaderPPM.cpp"
  2431. >
  2432. </File>
  2433. <File
  2434. RelativePath="CImageLoaderPPM.h"
  2435. >
  2436. </File>
  2437. <File
  2438. RelativePath="CImageLoaderPSD.cpp"
  2439. >
  2440. </File>
  2441. <File
  2442. RelativePath="CImageLoaderPSD.h"
  2443. >
  2444. </File>
  2445. <File
  2446. RelativePath=".\CImageLoaderRGB.cpp"
  2447. >
  2448. </File>
  2449. <File
  2450. RelativePath=".\CImageLoaderRGB.h"
  2451. >
  2452. </File>
  2453. <File
  2454. RelativePath="CImageLoaderTGA.cpp"
  2455. >
  2456. </File>
  2457. <File
  2458. RelativePath="CImageLoaderTGA.h"
  2459. >
  2460. </File>
  2461. <File
  2462. RelativePath="CImageLoaderWAL.cpp"
  2463. >
  2464. </File>
  2465. <File
  2466. RelativePath="CImageLoaderWAL.h"
  2467. >
  2468. </File>
  2469. </Filter>
  2470. </Filter>
  2471. <Filter
  2472. Name="Direct3D9"
  2473. >
  2474. <File
  2475. RelativePath="CD3D9CgMaterialRenderer.cpp"
  2476. >
  2477. </File>
  2478. <File
  2479. RelativePath="CD3D9CgMaterialRenderer.h"
  2480. >
  2481. </File>
  2482. <File
  2483. RelativePath="CD3D9Driver.cpp"
  2484. >
  2485. </File>
  2486. <File
  2487. RelativePath="CD3D9Driver.h"
  2488. >
  2489. </File>
  2490. <File
  2491. RelativePath="CD3D9HLSLMaterialRenderer.cpp"
  2492. >
  2493. </File>
  2494. <File
  2495. RelativePath="CD3D9HLSLMaterialRenderer.h"
  2496. >
  2497. </File>
  2498. <File
  2499. RelativePath="CD3D9MaterialRenderer.h"
  2500. >
  2501. </File>
  2502. <File
  2503. RelativePath="CD3D9NormalMapRenderer.cpp"
  2504. >
  2505. </File>
  2506. <File
  2507. RelativePath="CD3D9NormalMapRenderer.h"
  2508. >
  2509. </File>
  2510. <File
  2511. RelativePath="CD3D9ParallaxMapRenderer.cpp"
  2512. >
  2513. </File>
  2514. <File
  2515. RelativePath="CD3D9ParallaxMapRenderer.h"
  2516. >
  2517. </File>
  2518. <File
  2519. RelativePath="CD3D9ShaderMaterialRenderer.cpp"
  2520. >
  2521. </File>
  2522. <File
  2523. RelativePath="CD3D9ShaderMaterialRenderer.h"
  2524. >
  2525. </File>
  2526. <File
  2527. RelativePath="CD3D9Texture.cpp"
  2528. >
  2529. </File>
  2530. <File
  2531. RelativePath="CD3D9Texture.h"
  2532. >
  2533. </File>
  2534. </Filter>
  2535. <Filter
  2536. Name="Burning Video"
  2537. >
  2538. <File
  2539. RelativePath="CBurningShader_Raster_Reference.cpp"
  2540. >
  2541. </File>
  2542. <File
  2543. RelativePath="CDepthBuffer.cpp"
  2544. >
  2545. </File>
  2546. <File
  2547. RelativePath="CDepthBuffer.h"
  2548. >
  2549. </File>
  2550. <File
  2551. RelativePath="CSoftware2MaterialRenderer.h"
  2552. >
  2553. </File>
  2554. <File
  2555. RelativePath="CSoftwareDriver2.cpp"
  2556. >
  2557. </File>
  2558. <File
  2559. RelativePath="CSoftwareDriver2.h"
  2560. >
  2561. </File>
  2562. <File
  2563. RelativePath="CSoftwareTexture2.cpp"
  2564. >
  2565. </File>
  2566. <File
  2567. RelativePath="CSoftwareTexture2.h"
  2568. >
  2569. </File>
  2570. <File
  2571. RelativePath="CTRGouraud2.cpp"
  2572. >
  2573. </File>
  2574. <File
  2575. RelativePath="CTRGouraudAlpha2.cpp"
  2576. >
  2577. </File>
  2578. <File
  2579. RelativePath="CTRGouraudAlphaNoZ2.cpp"
  2580. >
  2581. </File>
  2582. <File
  2583. RelativePath=".\CTRNormalMap.cpp"
  2584. >
  2585. </File>
  2586. <File
  2587. RelativePath=".\CTRStencilShadow.cpp"
  2588. >
  2589. </File>
  2590. <File
  2591. RelativePath="CTRTextureBlend.cpp"
  2592. >
  2593. </File>
  2594. <File
  2595. RelativePath="CTRTextureDetailMap2.cpp"
  2596. >
  2597. </File>
  2598. <File
  2599. RelativePath="CTRTextureGouraud2.cpp"
  2600. >
  2601. </File>
  2602. <File
  2603. RelativePath="CTRTextureGouraudAdd2.cpp"
  2604. >
  2605. </File>
  2606. <File
  2607. RelativePath="CTRTextureGouraudAddNoZ2.cpp"
  2608. >
  2609. </File>
  2610. <File
  2611. RelativePath="CTRTextureGouraudAlpha.cpp"
  2612. >
  2613. </File>
  2614. <File
  2615. RelativePath="CTRTextureGouraudAlphaNoZ.cpp"
  2616. >
  2617. </File>
  2618. <File
  2619. RelativePath="CTRTextureGouraudNoZ2.cpp"
  2620. >
  2621. </File>
  2622. <File
  2623. RelativePath="CTRTextureGouraudVertexAlpha2.cpp"
  2624. >
  2625. </File>
  2626. <File
  2627. RelativePath="CTRTextureLightMap2_Add.cpp"
  2628. >
  2629. </File>
  2630. <File
  2631. RelativePath="CTRTextureLightMap2_M1.cpp"
  2632. >
  2633. </File>
  2634. <File
  2635. RelativePath="CTRTextureLightMap2_M2.cpp"
  2636. >
  2637. </File>
  2638. <File
  2639. RelativePath="CTRTextureLightMap2_M4.cpp"
  2640. >
  2641. </File>
  2642. <File
  2643. RelativePath="CTRTextureLightMapGouraud2_M4.cpp"
  2644. >
  2645. </File>
  2646. <File
  2647. RelativePath="CTRTextureWire2.cpp"
  2648. >
  2649. </File>
  2650. <File
  2651. RelativePath="IBurningShader.cpp"
  2652. >
  2653. </File>
  2654. <File
  2655. RelativePath="IBurningShader.h"
  2656. >
  2657. </File>
  2658. <File
  2659. RelativePath="IDepthBuffer.h"
  2660. >
  2661. </File>
  2662. <File
  2663. RelativePath="S4DVertex.h"
  2664. >
  2665. </File>
  2666. <File
  2667. RelativePath="SoftwareDriver2_compile_config.h"
  2668. >
  2669. </File>
  2670. <File
  2671. RelativePath="SoftwareDriver2_helper.h"
  2672. >
  2673. </File>
  2674. </Filter>
  2675. </Filter>
  2676. <Filter
  2677. Name="irr"
  2678. >
  2679. <File
  2680. RelativePath="CLogger.cpp"
  2681. >
  2682. </File>
  2683. <File
  2684. RelativePath="CLogger.h"
  2685. >
  2686. </File>
  2687. <File
  2688. RelativePath="COSOperator.cpp"
  2689. >
  2690. </File>
  2691. <File
  2692. RelativePath="COSOperator.h"
  2693. >
  2694. </File>
  2695. <File
  2696. RelativePath="CTimer.h"
  2697. >
  2698. </File>
  2699. <File
  2700. RelativePath="Irrlicht.cpp"
  2701. >
  2702. </File>
  2703. <File
  2704. RelativePath="os.cpp"
  2705. >
  2706. </File>
  2707. <File
  2708. RelativePath="os.h"
  2709. >
  2710. </File>
  2711. <Filter
  2712. Name="extern"
  2713. >
  2714. <File
  2715. RelativePath=".\lzma\LzmaDec.c"
  2716. >
  2717. </File>
  2718. <File
  2719. RelativePath=".\lzma\LzmaDec.h"
  2720. >
  2721. </File>
  2722. <File
  2723. RelativePath=".\lzma\Types.h"
  2724. >
  2725. </File>
  2726. <Filter
  2727. Name="zlib"
  2728. >
  2729. <File
  2730. RelativePath="zlib\adler32.c"
  2731. >
  2732. </File>
  2733. <File
  2734. RelativePath="zlib\compress.c"
  2735. >
  2736. </File>
  2737. <File
  2738. RelativePath="zlib\crc32.c"
  2739. >
  2740. </File>
  2741. <File
  2742. RelativePath="zlib\crc32.h"
  2743. >
  2744. </File>
  2745. <File
  2746. RelativePath="zlib\deflate.c"
  2747. >
  2748. </File>
  2749. <File
  2750. RelativePath="zlib\deflate.h"
  2751. >
  2752. </File>
  2753. <File
  2754. RelativePath="zlib\inffast.c"
  2755. >
  2756. </File>
  2757. <File
  2758. RelativePath="zlib\inffast.h"
  2759. >
  2760. </File>
  2761. <File
  2762. RelativePath="zlib\inffixed.h"
  2763. >
  2764. </File>
  2765. <File
  2766. RelativePath="zlib\inflate.c"
  2767. >
  2768. </File>
  2769. <File
  2770. RelativePath="zlib\inftrees.c"
  2771. >
  2772. </File>
  2773. <File
  2774. RelativePath="zlib\inftrees.h"
  2775. >
  2776. </File>
  2777. <File
  2778. RelativePath="zlib\trees.c"
  2779. >
  2780. </File>
  2781. <File
  2782. RelativePath="zlib\trees.h"
  2783. >
  2784. </File>
  2785. <File
  2786. RelativePath="zlib\uncompr.c"
  2787. >
  2788. </File>
  2789. <File
  2790. RelativePath="zlib\zconf.h"
  2791. >
  2792. </File>
  2793. <File
  2794. RelativePath="zlib\zlib.h"
  2795. >
  2796. </File>
  2797. <File
  2798. RelativePath="zlib\zutil.c"
  2799. >
  2800. </File>
  2801. <File
  2802. RelativePath="zlib\zutil.h"
  2803. >
  2804. </File>
  2805. </Filter>
  2806. <Filter
  2807. Name="jpeglib"
  2808. >
  2809. <File
  2810. RelativePath="jpeglib\cderror.h"
  2811. >
  2812. </File>
  2813. <File
  2814. RelativePath="jpeglib\jaricom.c"
  2815. >
  2816. </File>
  2817. <File
  2818. RelativePath="jpeglib\jcapimin.c"
  2819. >
  2820. </File>
  2821. <File
  2822. RelativePath="jpeglib\jcapistd.c"
  2823. >
  2824. </File>
  2825. <File
  2826. RelativePath="jpeglib\jcarith.c"
  2827. >
  2828. </File>
  2829. <File
  2830. RelativePath="jpeglib\jccoefct.c"
  2831. >
  2832. </File>
  2833. <File
  2834. RelativePath="jpeglib\jccolor.c"
  2835. >
  2836. </File>
  2837. <File
  2838. RelativePath="jpeglib\jcdctmgr.c"
  2839. >
  2840. </File>
  2841. <File
  2842. RelativePath="jpeglib\jchuff.c"
  2843. >
  2844. </File>
  2845. <File
  2846. RelativePath="jpeglib\jcinit.c"
  2847. >
  2848. </File>
  2849. <File
  2850. RelativePath="jpeglib\jcmainct.c"
  2851. >
  2852. </File>
  2853. <File
  2854. RelativePath="jpeglib\jcmarker.c"
  2855. >
  2856. </File>
  2857. <File
  2858. RelativePath="jpeglib\jcmaster.c"
  2859. >
  2860. </File>
  2861. <File
  2862. RelativePath="jpeglib\jcomapi.c"
  2863. >
  2864. </File>
  2865. <File
  2866. RelativePath="jpeglib\jconfig.h"
  2867. >
  2868. </File>
  2869. <File
  2870. RelativePath="jpeglib\jcparam.c"
  2871. >
  2872. </File>
  2873. <File
  2874. RelativePath="jpeglib\jcprepct.c"
  2875. >
  2876. </File>
  2877. <File
  2878. RelativePath="jpeglib\jcsample.c"
  2879. >
  2880. </File>
  2881. <File
  2882. RelativePath="jpeglib\jctrans.c"
  2883. >
  2884. </File>
  2885. <File
  2886. RelativePath="jpeglib\jdapimin.c"
  2887. >
  2888. </File>
  2889. <File
  2890. RelativePath="jpeglib\jdapistd.c"
  2891. >
  2892. </File>
  2893. <File
  2894. RelativePath="jpeglib\jdarith.c"
  2895. >
  2896. </File>
  2897. <File
  2898. RelativePath="jpeglib\jdatadst.c"
  2899. >
  2900. </File>
  2901. <File
  2902. RelativePath="jpeglib\jdatasrc.c"
  2903. >
  2904. </File>
  2905. <File
  2906. RelativePath="jpeglib\jdcoefct.c"
  2907. >
  2908. </File>
  2909. <File
  2910. RelativePath="jpeglib\jdcolor.c"
  2911. >
  2912. </File>
  2913. <File
  2914. RelativePath="jpeglib\jdct.h"
  2915. >
  2916. </File>
  2917. <File
  2918. RelativePath="jpeglib\jddctmgr.c"
  2919. >
  2920. </File>
  2921. <File
  2922. RelativePath="jpeglib\jdhuff.c"
  2923. >
  2924. </File>
  2925. <File
  2926. RelativePath="jpeglib\jdinput.c"
  2927. >
  2928. </File>
  2929. <File
  2930. RelativePath="jpeglib\jdmainct.c"
  2931. >
  2932. </File>
  2933. <File
  2934. RelativePath="jpeglib\jdmarker.c"
  2935. >
  2936. </File>
  2937. <File
  2938. RelativePath="jpeglib\jdmaster.c"
  2939. >
  2940. </File>
  2941. <File
  2942. RelativePath="jpeglib\jdmerge.c"
  2943. >
  2944. </File>
  2945. <File
  2946. RelativePath="jpeglib\jdpostct.c"
  2947. >
  2948. </File>
  2949. <File
  2950. RelativePath="jpeglib\jdsample.c"
  2951. >
  2952. </File>
  2953. <File
  2954. RelativePath="jpeglib\jdtrans.c"
  2955. >
  2956. </File>
  2957. <File
  2958. RelativePath="jpeglib\jerror.c"
  2959. >
  2960. </File>
  2961. <File
  2962. RelativePath="jpeglib\jerror.h"
  2963. >
  2964. </File>
  2965. <File
  2966. RelativePath="jpeglib\jfdctflt.c"
  2967. >
  2968. </File>
  2969. <File
  2970. RelativePath="jpeglib\jfdctfst.c"
  2971. >
  2972. </File>
  2973. <File
  2974. RelativePath="jpeglib\jfdctint.c"
  2975. >
  2976. </File>
  2977. <File
  2978. RelativePath="jpeglib\jidctflt.c"
  2979. >
  2980. </File>
  2981. <File
  2982. RelativePath="jpeglib\jidctfst.c"
  2983. >
  2984. </File>
  2985. <File
  2986. RelativePath="jpeglib\jidctint.c"
  2987. >
  2988. </File>
  2989. <File
  2990. RelativePath="jpeglib\jinclude.h"
  2991. >
  2992. </File>
  2993. <File
  2994. RelativePath="jpeglib\jmemmgr.c"
  2995. >
  2996. </File>
  2997. <File
  2998. RelativePath="jpeglib\jmemnobs.c"
  2999. >
  3000. </File>
  3001. <File
  3002. RelativePath="jpeglib\jmemsys.h"
  3003. >
  3004. </File>
  3005. <File
  3006. RelativePath="jpeglib\jmorecfg.h"
  3007. >
  3008. </File>
  3009. <File
  3010. RelativePath="jpeglib\jpegint.h"
  3011. >
  3012. </File>
  3013. <File
  3014. RelativePath="jpeglib\jpeglib.h"
  3015. >
  3016. </File>
  3017. <File
  3018. RelativePath="jpeglib\jquant1.c"
  3019. >
  3020. </File>
  3021. <File
  3022. RelativePath="jpeglib\jquant2.c"
  3023. >
  3024. </File>
  3025. <File
  3026. RelativePath="jpeglib\jutils.c"
  3027. >
  3028. </File>
  3029. <File
  3030. RelativePath="jpeglib\jversion.h"
  3031. >
  3032. </File>
  3033. </Filter>
  3034. <Filter
  3035. Name="libpng"
  3036. >
  3037. <File
  3038. RelativePath="libpng\png.c"
  3039. >
  3040. </File>
  3041. <File
  3042. RelativePath="libpng\png.h"
  3043. >
  3044. </File>
  3045. <File
  3046. RelativePath="libpng\pngconf.h"
  3047. >
  3048. </File>
  3049. <File
  3050. RelativePath="libpng\pngerror.c"
  3051. >
  3052. </File>
  3053. <File
  3054. RelativePath="libpng\pngget.c"
  3055. >
  3056. </File>
  3057. <File
  3058. RelativePath="libpng\pngmem.c"
  3059. >
  3060. </File>
  3061. <File
  3062. RelativePath="libpng\pngpread.c"
  3063. >
  3064. </File>
  3065. <File
  3066. RelativePath="libpng\pngread.c"
  3067. >
  3068. </File>
  3069. <File
  3070. RelativePath="libpng\pngrio.c"
  3071. >
  3072. </File>
  3073. <File
  3074. RelativePath="libpng\pngrtran.c"
  3075. >
  3076. </File>
  3077. <File
  3078. RelativePath="libpng\pngrutil.c"
  3079. >
  3080. </File>
  3081. <File
  3082. RelativePath="libpng\pngset.c"
  3083. >
  3084. </File>
  3085. <File
  3086. RelativePath="libpng\pngtrans.c"
  3087. >
  3088. </File>
  3089. <File
  3090. RelativePath="libpng\pngwio.c"
  3091. >
  3092. </File>
  3093. <File
  3094. RelativePath="libpng\pngwrite.c"
  3095. >
  3096. </File>
  3097. <File
  3098. RelativePath="libpng\pngwtran.c"
  3099. >
  3100. </File>
  3101. <File
  3102. RelativePath="libpng\pngwutil.c"
  3103. >
  3104. </File>
  3105. </Filter>
  3106. <Filter
  3107. Name="aesGladman"
  3108. >
  3109. <File
  3110. RelativePath=".\aesGladman\aes.h"
  3111. >
  3112. </File>
  3113. <File
  3114. RelativePath=".\aesGladman\aescrypt.cpp"
  3115. >
  3116. </File>
  3117. <File
  3118. RelativePath=".\aesGladman\aeskey.cpp"
  3119. >
  3120. </File>
  3121. <File
  3122. RelativePath=".\aesGladman\aesopt.h"
  3123. >
  3124. </File>
  3125. <File
  3126. RelativePath=".\aesGladman\aestab.cpp"
  3127. >
  3128. </File>
  3129. <File
  3130. RelativePath=".\aesGladman\fileenc.cpp"
  3131. >
  3132. </File>
  3133. <File
  3134. RelativePath=".\aesGladman\fileenc.h"
  3135. >
  3136. </File>
  3137. <File
  3138. RelativePath=".\aesGladman\hmac.cpp"
  3139. >
  3140. </File>
  3141. <File
  3142. RelativePath=".\aesGladman\hmac.h"
  3143. >
  3144. </File>
  3145. <File
  3146. RelativePath=".\aesGladman\prng.cpp"
  3147. >
  3148. </File>
  3149. <File
  3150. RelativePath=".\aesGladman\prng.h"
  3151. >
  3152. </File>
  3153. <File
  3154. RelativePath=".\aesGladman\pwd2key.cpp"
  3155. >
  3156. </File>
  3157. <File
  3158. RelativePath=".\aesGladman\pwd2key.h"
  3159. >
  3160. </File>
  3161. <File
  3162. RelativePath=".\aesGladman\sha1.cpp"
  3163. >
  3164. </File>
  3165. <File
  3166. RelativePath=".\aesGladman\sha1.h"
  3167. >
  3168. </File>
  3169. <File
  3170. RelativePath=".\aesGladman\sha2.cpp"
  3171. >
  3172. </File>
  3173. <File
  3174. RelativePath=".\aesGladman\sha2.h"
  3175. >
  3176. </File>
  3177. </Filter>
  3178. <Filter
  3179. Name="bzip2"
  3180. >
  3181. <File
  3182. RelativePath=".\bzip2\blocksort.c"
  3183. >
  3184. </File>
  3185. <File
  3186. RelativePath=".\bzip2\bzcompress.c"
  3187. >
  3188. </File>
  3189. <File
  3190. RelativePath=".\bzip2\bzlib.c"
  3191. >
  3192. </File>
  3193. <File
  3194. RelativePath=".\bzip2\bzlib.h"
  3195. >
  3196. </File>
  3197. <File
  3198. RelativePath=".\bzip2\bzlib_private.h"
  3199. >
  3200. </File>
  3201. <File
  3202. RelativePath=".\bzip2\crctable.c"
  3203. >
  3204. </File>
  3205. <File
  3206. RelativePath=".\bzip2\decompress.c"
  3207. >
  3208. </File>
  3209. <File
  3210. RelativePath=".\bzip2\huffman.c"
  3211. >
  3212. </File>
  3213. <File
  3214. RelativePath=".\bzip2\randtable.c"
  3215. >
  3216. </File>
  3217. </Filter>
  3218. </Filter>
  3219. <Filter
  3220. Name="device"
  3221. >
  3222. <File
  3223. RelativePath=".\CIrrDeviceConsole.cpp"
  3224. >
  3225. </File>
  3226. <File
  3227. RelativePath=".\CIrrDeviceConsole.h"
  3228. >
  3229. </File>
  3230. <File
  3231. RelativePath=".\CIrrDeviceFB.cpp"
  3232. >
  3233. </File>
  3234. <File
  3235. RelativePath=".\CIrrDeviceFB.h"
  3236. >
  3237. </File>
  3238. <File
  3239. RelativePath="CIrrDeviceLinux.cpp"
  3240. >
  3241. </File>
  3242. <File
  3243. RelativePath="CIrrDeviceLinux.h"
  3244. >
  3245. </File>
  3246. <File
  3247. RelativePath="CIrrDeviceSDL.cpp"
  3248. >
  3249. </File>
  3250. <File
  3251. RelativePath="CIrrDeviceSDL.h"
  3252. >
  3253. </File>
  3254. <File
  3255. RelativePath="CIrrDeviceStub.cpp"
  3256. >
  3257. </File>
  3258. <File
  3259. RelativePath="CIrrDeviceStub.h"
  3260. >
  3261. </File>
  3262. <File
  3263. RelativePath="CIrrDeviceWin32.cpp"
  3264. >
  3265. </File>
  3266. <File
  3267. RelativePath="CIrrDeviceWin32.h"
  3268. >
  3269. </File>
  3270. <File
  3271. RelativePath=".\CIrrDeviceWinCE.cpp"
  3272. >
  3273. </File>
  3274. <File
  3275. RelativePath=".\CIrrDeviceWinCE.h"
  3276. >
  3277. </File>
  3278. </Filter>
  3279. </Filter>
  3280. <Filter
  3281. Name="io"
  3282. >
  3283. <File
  3284. RelativePath="CAttributeImpl.h"
  3285. >
  3286. </File>
  3287. <File
  3288. RelativePath="CAttributes.cpp"
  3289. >
  3290. </File>
  3291. <File
  3292. RelativePath="CAttributes.h"
  3293. >
  3294. </File>
  3295. <File
  3296. RelativePath="CFileList.cpp"
  3297. >
  3298. </File>
  3299. <File
  3300. RelativePath="CFileList.h"
  3301. >
  3302. </File>
  3303. <File
  3304. RelativePath="CFileSystem.cpp"
  3305. >
  3306. </File>
  3307. <File
  3308. RelativePath="CFileSystem.h"
  3309. >
  3310. </File>
  3311. <File
  3312. RelativePath="CLimitReadFile.cpp"
  3313. >
  3314. </File>
  3315. <File
  3316. RelativePath="CLimitReadFile.h"
  3317. >
  3318. </File>
  3319. <File
  3320. RelativePath="CMemoryFile.cpp"
  3321. >
  3322. </File>
  3323. <File
  3324. RelativePath="CMemoryFile.h"
  3325. >
  3326. </File>
  3327. <File
  3328. RelativePath="CMountPointReader.cpp"
  3329. >
  3330. </File>
  3331. <File
  3332. RelativePath="CMountPointReader.h"
  3333. >
  3334. </File>
  3335. <File
  3336. RelativePath="CNPKReader.cpp"
  3337. >
  3338. </File>
  3339. <File
  3340. RelativePath="CNPKReader.h"
  3341. >
  3342. </File>
  3343. <File
  3344. RelativePath="CPakReader.cpp"
  3345. >
  3346. </File>
  3347. <File
  3348. RelativePath="CPakReader.h"
  3349. >
  3350. </File>
  3351. <File
  3352. RelativePath="CReadFile.cpp"
  3353. >
  3354. </File>
  3355. <File
  3356. RelativePath="CReadFile.h"
  3357. >
  3358. </File>
  3359. <File
  3360. RelativePath="CTarReader.cpp"
  3361. >
  3362. </File>
  3363. <File
  3364. RelativePath="CTarReader.h"
  3365. >
  3366. </File>
  3367. <File
  3368. RelativePath=".\CWADReader.cpp"
  3369. >
  3370. </File>
  3371. <File
  3372. RelativePath=".\CWADReader.h"
  3373. >
  3374. </File>
  3375. <File
  3376. RelativePath="CWriteFile.cpp"
  3377. >
  3378. </File>
  3379. <File
  3380. RelativePath="CWriteFile.h"
  3381. >
  3382. </File>
  3383. <File
  3384. RelativePath="CXMLReader.cpp"
  3385. >
  3386. </File>
  3387. <File
  3388. RelativePath="CXMLReader.h"
  3389. >
  3390. </File>
  3391. <File
  3392. RelativePath="CXMLReaderImpl.h"
  3393. >
  3394. </File>
  3395. <File
  3396. RelativePath="CXMLWriter.cpp"
  3397. >
  3398. </File>
  3399. <File
  3400. RelativePath="CXMLWriter.h"
  3401. >
  3402. </File>
  3403. <File
  3404. RelativePath="CZipReader.cpp"
  3405. >
  3406. </File>
  3407. <File
  3408. RelativePath="CZipReader.h"
  3409. >
  3410. </File>
  3411. <File
  3412. RelativePath="IAttribute.h"
  3413. >
  3414. </File>
  3415. <File
  3416. RelativePath="irrXML.cpp"
  3417. >
  3418. </File>
  3419. </Filter>
  3420. <Filter
  3421. Name="gui"
  3422. >
  3423. <File
  3424. RelativePath="BuiltInFont.h"
  3425. >
  3426. </File>
  3427. <File
  3428. RelativePath="CDefaultGUIElementFactory.cpp"
  3429. >
  3430. </File>
  3431. <File
  3432. RelativePath="CDefaultGUIElementFactory.h"
  3433. >
  3434. </File>
  3435. <File
  3436. RelativePath="CGUIButton.cpp"
  3437. >
  3438. </File>
  3439. <File
  3440. RelativePath="CGUIButton.h"
  3441. >
  3442. </File>
  3443. <File
  3444. RelativePath="CGUICheckbox.cpp"
  3445. >
  3446. </File>
  3447. <File
  3448. RelativePath="CGUICheckbox.h"
  3449. >
  3450. </File>
  3451. <File
  3452. RelativePath="CGUIColorSelectDialog.cpp"
  3453. >
  3454. </File>
  3455. <File
  3456. RelativePath="CGUIColorSelectDialog.h"
  3457. >
  3458. </File>
  3459. <File
  3460. RelativePath="CGUIComboBox.cpp"
  3461. >
  3462. </File>
  3463. <File
  3464. RelativePath="CGUIComboBox.h"
  3465. >
  3466. </File>
  3467. <File
  3468. RelativePath="CGUIContextMenu.cpp"
  3469. >
  3470. </File>
  3471. <File
  3472. RelativePath="CGUIContextMenu.h"
  3473. >
  3474. </File>
  3475. <File
  3476. RelativePath="CGUIEditBox.cpp"
  3477. >
  3478. </File>
  3479. <File
  3480. RelativePath="CGUIEditBox.h"
  3481. >
  3482. </File>
  3483. <File
  3484. RelativePath="CGUIEnvironment.cpp"
  3485. >
  3486. </File>
  3487. <File
  3488. RelativePath="CGUIEnvironment.h"
  3489. >
  3490. </File>
  3491. <File
  3492. RelativePath="CGUIFileOpenDialog.cpp"
  3493. >
  3494. </File>
  3495. <File
  3496. RelativePath="CGUIFileOpenDialog.h"
  3497. >
  3498. </File>
  3499. <File
  3500. RelativePath="CGUIFont.cpp"
  3501. >
  3502. </File>
  3503. <File
  3504. RelativePath="CGUIFont.h"
  3505. >
  3506. </File>
  3507. <File
  3508. RelativePath="CGUIImage.cpp"
  3509. >
  3510. </File>
  3511. <File
  3512. RelativePath="CGUIImage.h"
  3513. >
  3514. </File>
  3515. <File
  3516. RelativePath=".\CGUIImageList.cpp"
  3517. >
  3518. </File>
  3519. <File
  3520. RelativePath=".\CGUIImageList.h"
  3521. >
  3522. </File>
  3523. <File
  3524. RelativePath="CGUIInOutFader.cpp"
  3525. >
  3526. </File>
  3527. <File
  3528. RelativePath="CGUIInOutFader.h"
  3529. >
  3530. </File>
  3531. <File
  3532. RelativePath="CGUIListBox.cpp"
  3533. >
  3534. </File>
  3535. <File
  3536. RelativePath="CGUIListBox.h"
  3537. >
  3538. </File>
  3539. <File
  3540. RelativePath="CGUIMenu.cpp"
  3541. >
  3542. </File>
  3543. <File
  3544. RelativePath="CGUIMenu.h"
  3545. >
  3546. </File>
  3547. <File
  3548. RelativePath="CGUIMeshViewer.cpp"
  3549. >
  3550. </File>
  3551. <File
  3552. RelativePath="CGUIMeshViewer.h"
  3553. >
  3554. </File>
  3555. <File
  3556. RelativePath="CGUIMessageBox.cpp"
  3557. >
  3558. </File>
  3559. <File
  3560. RelativePath="CGUIMessageBox.h"
  3561. >
  3562. </File>
  3563. <File
  3564. RelativePath="CGUIModalScreen.cpp"
  3565. >
  3566. </File>
  3567. <File
  3568. RelativePath="CGUIModalScreen.h"
  3569. >
  3570. </File>
  3571. <File
  3572. RelativePath="CGUIScrollBar.cpp"
  3573. >
  3574. </File>
  3575. <File
  3576. RelativePath="CGUIScrollBar.h"
  3577. >
  3578. </File>
  3579. <File
  3580. RelativePath="CGUISkin.cpp"
  3581. >
  3582. </File>
  3583. <File
  3584. RelativePath="CGUISkin.h"
  3585. >
  3586. </File>
  3587. <File
  3588. RelativePath="CGUISpinBox.cpp"
  3589. >
  3590. </File>
  3591. <File
  3592. RelativePath="CGUISpinBox.h"
  3593. >
  3594. </File>
  3595. <File
  3596. RelativePath="CGUISpriteBank.cpp"
  3597. >
  3598. </File>
  3599. <File
  3600. RelativePath="CGUISpriteBank.h"
  3601. >
  3602. </File>
  3603. <File
  3604. RelativePath="CGUIStaticText.cpp"
  3605. >
  3606. </File>
  3607. <File
  3608. RelativePath="CGUIStaticText.h"
  3609. >
  3610. </File>
  3611. <File
  3612. RelativePath="CGUITabControl.cpp"
  3613. >
  3614. </File>
  3615. <File
  3616. RelativePath="CGUITabControl.h"
  3617. >
  3618. </File>
  3619. <File
  3620. RelativePath="CGUITable.cpp"
  3621. >
  3622. </File>
  3623. <File
  3624. RelativePath="CGUITable.h"
  3625. >
  3626. </File>
  3627. <File
  3628. RelativePath="CGUIToolBar.cpp"
  3629. >
  3630. </File>
  3631. <File
  3632. RelativePath="CGUIToolBar.h"
  3633. >
  3634. </File>
  3635. <File
  3636. RelativePath=".\CGUITreeView.cpp"
  3637. >
  3638. </File>
  3639. <File
  3640. RelativePath=".\CGUITreeView.h"
  3641. >
  3642. </File>
  3643. <File
  3644. RelativePath="CGUIWindow.cpp"
  3645. >
  3646. </File>
  3647. <File
  3648. RelativePath="CGUIWindow.h"
  3649. >
  3650. </File>
  3651. </Filter>
  3652. </Filter>
  3653. </Files>
  3654. <Globals>
  3655. </Globals>
  3656. </VisualStudioProject>