summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/MSVC
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-12 08:03:13 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-12 08:03:13 -0700
commite902c1dbf887d58cd370a86bc676c5297cfffad5 (patch)
treee292c5ad001296d59fc412adcef9710805836ccf /crawl-ref/source/MSVC
parent94c8330d25fcece0e2811f82edea8258c0869b8e (diff)
downloadcrawl-ref-e902c1dbf887d58cd370a86bc676c5297cfffad5.tar.gz
crawl-ref-e902c1dbf887d58cd370a86bc676c5297cfffad5.zip
MSVC: add tiles build support
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/MSVC')
-rw-r--r--crawl-ref/source/MSVC/Release.vsprops36
-rw-r--r--crawl-ref/source/MSVC/Tiles.vsprops17
-rw-r--r--crawl-ref/source/MSVC/crawl-ref.sln89
-rw-r--r--crawl-ref/source/MSVC/crawl.vcproj2837
-rw-r--r--crawl-ref/source/MSVC/tilegen.vcproj209
5 files changed, 1955 insertions, 1233 deletions
diff --git a/crawl-ref/source/MSVC/Release.vsprops b/crawl-ref/source/MSVC/Release.vsprops
index 76028517a3..34cdffd24d 100644
--- a/crawl-ref/source/MSVC/Release.vsprops
+++ b/crawl-ref/source/MSVC/Release.vsprops
@@ -1,16 +1,20 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
- ProjectType="Visual C++"
- Version="8.00"
- Name="Release"
- >
- <Tool
- Name="VCCLCompilerTool"
- Optimization="2"
- InlineFunctionExpansion="2"
- EnableIntrinsicFunctions="true"
- FavorSizeOrSpeed="1"
- WholeProgramOptimization="false"
- RuntimeLibrary="0"
- />
-</VisualStudioPropertySheet>
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioPropertySheet
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="Release"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ InlineFunctionExpansion="2"
+ EnableIntrinsicFunctions="true"
+ FavorSizeOrSpeed="1"
+ WholeProgramOptimization="false"
+ RuntimeLibrary="0"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ IgnoreDefaultLibraryNames="MSVCRT"
+ />
+</VisualStudioPropertySheet>
diff --git a/crawl-ref/source/MSVC/Tiles.vsprops b/crawl-ref/source/MSVC/Tiles.vsprops
new file mode 100644
index 0000000000..9fc3b2bcbf
--- /dev/null
+++ b/crawl-ref/source/MSVC/Tiles.vsprops
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioPropertySheet
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="Tiles"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories="C:\SDKs\SDL\include;C:\SDKs\SDL_image\include;C:\SDKs\libpng\include;C:\SDKs\zlib\include;C:\SDKs\freetype\include"
+ PreprocessorDefinitions="WIN32TILES;USE_TILE"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="SDL.lib SDL_image.lib SDLmain.lib libpng.lib zlib.lib freetype.lib opengl32.lib glu32.lib"
+ AdditionalLibraryDirectories="C:\SDKs\SDL\lib;C:\SDKs\SDL_image\lib;C:\SDKs\libpng\lib;C:\SDKs\zlib\lib;C:\SDKs\freetype\lib"
+ />
+</VisualStudioPropertySheet>
diff --git a/crawl-ref/source/MSVC/crawl-ref.sln b/crawl-ref/source/MSVC/crawl-ref.sln
index 9784f77999..9056563d63 100644
--- a/crawl-ref/source/MSVC/crawl-ref.sln
+++ b/crawl-ref/source/MSVC/crawl-ref.sln
@@ -1,41 +1,92 @@

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "crawl", "crawl.vcproj", "{3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "crawl", "crawl.vcproj", "{3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}"
ProjectSection(ProjectDependencies) = postProject
- {5783572B-479A-4EE8-8F16-1FDB24DDD1A0} = {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}
- {A0FDC72E-0BE5-4542-B381-6A482DAC2125} = {A0FDC72E-0BE5-4542-B381-6A482DAC2125}
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0} = {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}
+ {DAE92A45-087B-445B-8E94-BA864173A73F} = {DAE92A45-087B-445B-8E94-BA864173A73F}
{A61349B6-4099-4688-AA1A-00D91397857D} = {A61349B6-4099-4688-AA1A-00D91397857D}
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125} = {A0FDC72E-0BE5-4542-B381-6A482DAC2125}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lua", "lua.vcproj", "{A61349B6-4099-4688-AA1A-00D91397857D}"
EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite", "sqlite.vcproj", "{5783572B-479A-4EE8-8F16-1FDB24DDD1A0}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcre", "pcre.vcproj", "{A0FDC72E-0BE5-4542-B381-6A482DAC2125}"
-EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite", "sqlite.vcproj", "{5783572B-479A-4EE8-8F16-1FDB24DDD1A0}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pcre", "pcre.vcproj", "{A0FDC72E-0BE5-4542-B381-6A482DAC2125}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tilegen", "tilegen.vcproj", "{DAE92A45-087B-445B-8E94-BA864173A73F}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug Console|Win32 = Debug Console|Win32
+ Debug Tiles|Win32 = Debug Tiles|Win32
Debug|Win32 = Debug|Win32
+ Release Console|Win32 = Release Console|Win32
+ Release Tiles|Win32 = Release Tiles|Win32
Release|Win32 = Release|Win32
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Debug|Win32.ActiveCfg = Debug|Win32
- {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Debug|Win32.Build.0 = Debug|Win32
- {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Release|Win32.ActiveCfg = Release|Win32
- {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Release|Win32.Build.0 = Release|Win32
+ {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Debug Console|Win32.ActiveCfg = Debug Console|Win32
+ {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Debug Console|Win32.Build.0 = Debug Console|Win32
+ {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Debug Tiles|Win32.ActiveCfg = Debug Tiles|Win32
+ {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Debug Tiles|Win32.Build.0 = Debug Tiles|Win32
+ {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Debug|Win32.ActiveCfg = Debug Tiles|Win32
+ {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Debug|Win32.Build.0 = Debug Tiles|Win32
+ {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Release Console|Win32.ActiveCfg = Release Console|Win32
+ {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Release Console|Win32.Build.0 = Release Console|Win32
+ {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Release Tiles|Win32.ActiveCfg = Release Tiles|Win32
+ {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Release Tiles|Win32.Build.0 = Release Tiles|Win32
+ {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Release|Win32.ActiveCfg = Release Tiles|Win32
+ {3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}.Release|Win32.Build.0 = Release Tiles|Win32
+ {A61349B6-4099-4688-AA1A-00D91397857D}.Debug Console|Win32.ActiveCfg = Debug|Win32
+ {A61349B6-4099-4688-AA1A-00D91397857D}.Debug Console|Win32.Build.0 = Debug|Win32
+ {A61349B6-4099-4688-AA1A-00D91397857D}.Debug Tiles|Win32.ActiveCfg = Debug|Win32
+ {A61349B6-4099-4688-AA1A-00D91397857D}.Debug Tiles|Win32.Build.0 = Debug|Win32
{A61349B6-4099-4688-AA1A-00D91397857D}.Debug|Win32.ActiveCfg = Debug|Win32
{A61349B6-4099-4688-AA1A-00D91397857D}.Debug|Win32.Build.0 = Debug|Win32
+ {A61349B6-4099-4688-AA1A-00D91397857D}.Release Console|Win32.ActiveCfg = Release|Win32
+ {A61349B6-4099-4688-AA1A-00D91397857D}.Release Console|Win32.Build.0 = Release|Win32
+ {A61349B6-4099-4688-AA1A-00D91397857D}.Release Tiles|Win32.ActiveCfg = Release|Win32
+ {A61349B6-4099-4688-AA1A-00D91397857D}.Release Tiles|Win32.Build.0 = Release|Win32
{A61349B6-4099-4688-AA1A-00D91397857D}.Release|Win32.ActiveCfg = Release|Win32
{A61349B6-4099-4688-AA1A-00D91397857D}.Release|Win32.Build.0 = Release|Win32
- {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Debug|Win32.ActiveCfg = Debug|Win32
- {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Debug|Win32.Build.0 = Debug|Win32
- {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Release|Win32.ActiveCfg = Release|Win32
- {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Release|Win32.Build.0 = Release|Win32
- {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Debug|Win32.ActiveCfg = Debug|Win32
- {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Debug|Win32.Build.0 = Debug|Win32
- {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Release|Win32.ActiveCfg = Release|Win32
- {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Release|Win32.Build.0 = Release|Win32
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Debug Console|Win32.ActiveCfg = Debug|Win32
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Debug Console|Win32.Build.0 = Debug|Win32
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Debug Tiles|Win32.ActiveCfg = Debug|Win32
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Debug Tiles|Win32.Build.0 = Debug|Win32
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Debug|Win32.Build.0 = Debug|Win32
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Release Console|Win32.ActiveCfg = Release|Win32
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Release Console|Win32.Build.0 = Release|Win32
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Release Tiles|Win32.ActiveCfg = Release|Win32
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Release Tiles|Win32.Build.0 = Release|Win32
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Release|Win32.ActiveCfg = Release|Win32
+ {5783572B-479A-4EE8-8F16-1FDB24DDD1A0}.Release|Win32.Build.0 = Release|Win32
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Debug Console|Win32.ActiveCfg = Debug|Win32
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Debug Console|Win32.Build.0 = Debug|Win32
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Debug Tiles|Win32.ActiveCfg = Debug|Win32
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Debug Tiles|Win32.Build.0 = Debug|Win32
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Debug|Win32.Build.0 = Debug|Win32
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Release Console|Win32.ActiveCfg = Release|Win32
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Release Console|Win32.Build.0 = Release|Win32
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Release Tiles|Win32.ActiveCfg = Release|Win32
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Release Tiles|Win32.Build.0 = Release|Win32
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Release|Win32.ActiveCfg = Release|Win32
+ {A0FDC72E-0BE5-4542-B381-6A482DAC2125}.Release|Win32.Build.0 = Release|Win32
+ {DAE92A45-087B-445B-8E94-BA864173A73F}.Debug Console|Win32.ActiveCfg = Debug|Win32
+ {DAE92A45-087B-445B-8E94-BA864173A73F}.Debug Console|Win32.Build.0 = Debug|Win32
+ {DAE92A45-087B-445B-8E94-BA864173A73F}.Debug Tiles|Win32.ActiveCfg = Debug|Win32
+ {DAE92A45-087B-445B-8E94-BA864173A73F}.Debug Tiles|Win32.Build.0 = Debug|Win32
+ {DAE92A45-087B-445B-8E94-BA864173A73F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DAE92A45-087B-445B-8E94-BA864173A73F}.Debug|Win32.Build.0 = Debug|Win32
+ {DAE92A45-087B-445B-8E94-BA864173A73F}.Release Console|Win32.ActiveCfg = Release|Win32
+ {DAE92A45-087B-445B-8E94-BA864173A73F}.Release Console|Win32.Build.0 = Release|Win32
+ {DAE92A45-087B-445B-8E94-BA864173A73F}.Release Tiles|Win32.ActiveCfg = Release|Win32
+ {DAE92A45-087B-445B-8E94-BA864173A73F}.Release Tiles|Win32.Build.0 = Release|Win32
+ {DAE92A45-087B-445B-8E94-BA864173A73F}.Release|Win32.ActiveCfg = Release|Win32
+ {DAE92A45-087B-445B-8E94-BA864173A73F}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/crawl-ref/source/MSVC/crawl.vcproj b/crawl-ref/source/MSVC/crawl.vcproj
index 1d31a04ad0..b93b357894 100644
--- a/crawl-ref/source/MSVC/crawl.vcproj
+++ b/crawl-ref/source/MSVC/crawl.vcproj
@@ -1,1198 +1,1639 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="8.00"
- Name="crawl"
- ProjectGUID="{3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}"
- RootNamespace="crawlref"
- Keyword="Win32Proj"
- >
- <Platforms>
- <Platform
- Name="Win32"
- />
- </Platforms>
- <ToolFiles>
- </ToolFiles>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- OutputDirectory="$(SolutionDir)\.."
- ConfigurationType="1"
- InheritedPropertySheets=".\Debug.vsprops;.\Console.vsprops;.\Common.vsprops"
- CharacterSet="0"
- WholeProgramOptimization="0"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- Optimization="0"
- AdditionalIncludeDirectories=".;..;../util/lua/src;../util/sqlite;../util/pcre"
- PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_USE_MATH_DEFINES"
- MinimalRebuild="true"
- BasicRuntimeChecks="3"
- UsePrecompiledHeader="2"
- PrecompiledHeaderThrough="AppHdr.h"
- WarningLevel="3"
- WarnAsError="false"
- Detect64BitPortabilityProblems="false"
- DebugInformationFormat="4"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- LinkIncremental="2"
- GenerateDebugInformation="true"
- SubSystem="1"
- TargetMachine="1"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCWebDeploymentTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- <Configuration
- Name="Release|Win32"
- OutputDirectory="$(SolutionDir)\.."
- ConfigurationType="1"
- InheritedPropertySheets=".\Release.vsprops;.\Console.vsprops;.\Common.vsprops"
- CharacterSet="0"
- WholeProgramOptimization="0"
- >
- <Tool
- Name="VCPreBuildEventTool"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- AdditionalIncludeDirectories=".;..;../util/lua/src;../util/sqlite;../util/pcre"
- PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_USE_MATH_DEFINES"
- UsePrecompiledHeader="2"
- PrecompiledHeaderThrough="AppHdr.h"
- WarningLevel="3"
- WarnAsError="false"
- Detect64BitPortabilityProblems="false"
- DebugInformationFormat="3"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- LinkIncremental="1"
- GenerateDebugInformation="true"
- SubSystem="1"
- OptimizeReferences="2"
- EnableCOMDATFolding="2"
- TargetMachine="1"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCWebDeploymentTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <File
- RelativePath="..\abl-show.cc"
- >
- </File>
- <File
- RelativePath="..\abl-show.h"
- >
- </File>
- <File
- RelativePath="..\abyss.cc"
- >
- </File>
- <File
- RelativePath="..\abyss.h"
- >
- </File>
- <File
- RelativePath="..\acr.cc"
- >
- </File>
- <File
- RelativePath="..\AppHdr.cc"
- >
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="1"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath="..\AppHdr.h"
- >
- </File>
- <File
- RelativePath="..\arena.cc"
- >
- </File>
- <File
- RelativePath="..\arena.h"
- >
- </File>
- <File
- RelativePath="..\artefact.cc"
- >
- </File>
- <File
- RelativePath="..\artefact.h"
- >
- </File>
- <File
- RelativePath="..\beam.cc"
- >
- </File>
- <File
- RelativePath="..\beam.h"
- >
- </File>
- <File
- RelativePath="..\bitary.cc"
- >
- </File>
- <File
- RelativePath="..\bitary.h"
- >
- </File>
- <File
- RelativePath="..\branch.cc"
- >
- </File>
- <File
- RelativePath="..\branch.h"
- >
- </File>
- <File
- RelativePath="..\chardump.cc"
- >
- </File>
- <File
- RelativePath="..\chardump.h"
- >
- </File>
- <File
- RelativePath="..\cio.cc"
- >
- </File>
- <File
- RelativePath="..\cio.h"
- >
- </File>
- <File
- RelativePath="..\cloud.cc"
- >
- </File>
- <File
- RelativePath="..\cloud.h"
- >
- </File>
- <File
- RelativePath="..\clua.cc"
- >
- </File>
- <File
- RelativePath="..\clua.h"
- >
- </File>
- <File
- RelativePath="..\command.cc"
- >
- </File>
- <File
- RelativePath="..\command.h"
- >
- </File>
- <File
- RelativePath="..\crash-w.cc"
- >
- </File>
- <File
- RelativePath="..\database.cc"
- >
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="0"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="0"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath="..\database.h"
- >
- </File>
- <File
- RelativePath="..\debug.cc"
- >
- </File>
- <File
- RelativePath="..\debug.h"
- >
- </File>
- <File
- RelativePath="..\decks.cc"
- >
- </File>
- <File
- RelativePath="..\decks.h"
- >
- </File>
- <File
- RelativePath="..\defines.h"
- >
- </File>
- <File
- RelativePath="..\delay.cc"
- >
- </File>
- <File
- RelativePath="..\delay.h"
- >
- </File>
- <File
- RelativePath="..\describe.cc"
- >
- </File>
- <File
- RelativePath="..\describe.h"
- >
- </File>
- <File
- RelativePath="..\dgnevent.cc"
- >
- </File>
- <File
- RelativePath="..\dgnevent.h"
- >
- </File>
- <File
- RelativePath="..\directn.cc"
- >
- </File>
- <File
- RelativePath="..\directn.h"
- >
- </File>
- <File
- RelativePath="..\dungeon.cc"
- >
- </File>
- <File
- RelativePath="..\dungeon.h"
- >
- </File>
- <File
- RelativePath="..\effects.cc"
- >
- </File>
- <File
- RelativePath="..\effects.h"
- >
- </File>
- <File
- RelativePath="..\enum.h"
- >
- </File>
- <File
- RelativePath="..\externs.h"
- >
- </File>
- <File
- RelativePath="..\fight.cc"
- >
- </File>
- <File
- RelativePath="..\fight.h"
- >
- </File>
- <File
- RelativePath="..\files.cc"
- >
- </File>
- <File
- RelativePath="..\files.h"
- >
- </File>
- <File
- RelativePath="..\fixary.h"
- >
- </File>
- <File
- RelativePath="..\fixvec.h"
- >
- </File>
- <File
- RelativePath="..\food.cc"
- >
- </File>
- <File
- RelativePath="..\food.h"
- >
- </File>
- <File
- RelativePath="..\format.cc"
- >
- </File>
- <File
- RelativePath="..\format.h"
- >
- </File>
- <File
- RelativePath="..\ghost.cc"
- >
- </File>
- <File
- RelativePath="..\ghost.h"
- >
- </File>
- <File
- RelativePath="..\hiscores.cc"
- >
- </File>
- <File
- RelativePath="..\hiscores.h"
- >
- </File>
- <File
- RelativePath="..\initfile.cc"
- >
- </File>
- <File
- RelativePath="..\initfile.h"
- >
- </File>
- <File
- RelativePath="..\invent.cc"
- >
- </File>
- <File
- RelativePath="..\invent.h"
- >
- </File>
- <File
- RelativePath="..\it_use2.cc"
- >
- </File>
- <File
- RelativePath="..\it_use2.h"
- >
- </File>
- <File
- RelativePath="..\it_use3.cc"
- >
- </File>
- <File
- RelativePath="..\it_use3.h"
- >
- </File>
- <File
- RelativePath="..\item_use.cc"
- >
- </File>
- <File
- RelativePath="..\item_use.h"
- >
- </File>
- <File
- RelativePath="..\itemname.cc"
- >
- </File>
- <File
- RelativePath="..\itemname.h"
- >
- </File>
- <File
- RelativePath="..\itemprop.cc"
- >
- </File>
- <File
- RelativePath="..\itemprop.h"
- >
- </File>
- <File
- RelativePath="..\items.cc"
- >
- </File>
- <File
- RelativePath="..\items.h"
- >
- </File>
- <File
- RelativePath="..\kills.cc"
- >
- </File>
- <File
- RelativePath="..\kills.h"
- >
- </File>
- <File
- RelativePath="..\lev-pand.cc"
- >
- </File>
- <File
- RelativePath="..\lev-pand.h"
- >
- </File>
- <File
- RelativePath="..\prebuilt\levcomp.lex.cc"
- >
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="0"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="0"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath="..\prebuilt\levcomp.tab.cc"
- >
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="0"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="0"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath="..\prebuilt\levcomp.tab.h"
- >
- </File>
- <File
- RelativePath="..\libutil.cc"
- >
- </File>
- <File
- RelativePath="..\libutil.h"
- >
- </File>
- <File
- RelativePath="..\libw32c.cc"
- >
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="2"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="2"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath="..\libw32c.h"
- >
- </File>
- <File
- RelativePath="..\los.cc"
- >
- </File>
- <File
- RelativePath="..\los.h"
- >
- </File>
- <File
- RelativePath="..\losparam.cc"
- >
- </File>
- <File
- RelativePath="..\losparam.h"
- >
- </File>
- <File
- RelativePath="..\luadgn.cc"
- >
- </File>
- <File
- RelativePath="..\luadgn.h"
- >
- </File>
- <File
- RelativePath="..\macro.cc"
- >
- </File>
- <File
- RelativePath="..\macro.h"
- >
- </File>
- <File
- RelativePath="..\makeitem.cc"
- >
- </File>
- <File
- RelativePath="..\makeitem.h"
- >
- </File>
- <File
- RelativePath="..\mapdef.cc"
- >
- </File>
- <File
- RelativePath="..\mapdef.h"
- >
- </File>
- <File
- RelativePath="..\mapmark.cc"
- >
- </File>
- <File
- RelativePath="..\mapmark.h"
- >
- </File>
- <File
- RelativePath="..\maps.cc"
- >
- </File>
- <File
- RelativePath="..\maps.h"
- >
- </File>
- <File
- RelativePath="..\menu.cc"
- >
- </File>
- <File
- RelativePath="..\menu.h"
- >
- </File>
- <File
- RelativePath="..\message.cc"
- >
- </File>
- <File
- RelativePath="..\message.h"
- >
- </File>
- <File
- RelativePath="..\mgrow.cc"
- >
- </File>
- <File
- RelativePath="..\mgrow.h"
- >
- </File>
- <File
- RelativePath="..\misc.cc"
- >
- </File>
- <File
- RelativePath="..\misc.h"
- >
- </File>
- <File
- RelativePath="..\mon-data.h"
- >
- </File>
- <File
- RelativePath="..\mon-los.cc"
- >
- </File>
- <File
- RelativePath="..\mon-los.h"
- >
- </File>
- <File
- RelativePath="..\mon-pick.cc"
- >
- </File>
- <File
- RelativePath="..\mon-pick.h"
- >
- </File>
- <File
- RelativePath="..\mon-spll.h"
- >
- </File>
- <File
- RelativePath="..\mon-util.cc"
- >
- </File>
- <File
- RelativePath="..\mon-util.h"
- >
- </File>
- <File
- RelativePath="..\monplace.cc"
- >
- </File>
- <File
- RelativePath="..\monplace.h"
- >
- </File>
- <File
- RelativePath="..\monspeak.cc"
- >
- </File>
- <File
- RelativePath="..\monspeak.h"
- >
- </File>
- <File
- RelativePath="..\monstuff.cc"
- >
- </File>
- <File
- RelativePath="..\monstuff.h"
- >
- </File>
- <File
- RelativePath="..\mpr.h"
- >
- </File>
- <File
- RelativePath="..\mstuff2.cc"
- >
- </File>
- <File
- RelativePath="..\mstuff2.h"
- >
- </File>
- <File
- RelativePath="..\mt19937ar.cc"
- >
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="0"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="0"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath="..\mt19937ar.h"
- >
- </File>
- <File
- RelativePath="..\mtransit.cc"
- >
- </File>
- <File
- RelativePath="..\mtransit.h"
- >
- </File>
- <File
- RelativePath="..\mutation.cc"
- >
- </File>
- <File
- RelativePath="..\mutation.h"
- >
- </File>
- <File
- RelativePath="..\newgame.cc"
- >
- </File>
- <File
- RelativePath="..\newgame.h"
- >
- </File>
- <File
- RelativePath="..\notes.cc"
- >
- </File>
- <File
- RelativePath="..\notes.h"
- >
- </File>
- <File
- RelativePath="..\ouch.cc"
- >
- </File>
- <File
- RelativePath="..\ouch.h"
- >
- </File>
- <File
- RelativePath="..\output.cc"
- >
- </File>
- <File
- RelativePath="..\output.h"
- >
- </File>
- <File
- RelativePath="..\overmap.cc"
- >
- </File>
- <File
- RelativePath="..\overmap.h"
- >
- </File>
- <File
- RelativePath="..\place.cc"
- >
- </File>
- <File
- RelativePath="..\place.h"
- >
- </File>
- <File
- RelativePath="..\player.cc"
- >
- </File>
- <File
- RelativePath="..\player.h"
- >
- </File>
- <File
- RelativePath="..\quiver.cc"
- >
- </File>
- <File
- RelativePath="..\quiver.h"
- >
- </File>
- <File
- RelativePath="..\ray.cc"
- >
- </File>
- <File
- RelativePath="..\ray.h"
- >
- </File>
- <File
- RelativePath="..\religion.cc"
- >
- </File>
- <File
- RelativePath="..\religion.h"
- >
- </File>
- <File
- RelativePath="..\shopping.cc"
- >
- </File>
- <File
- RelativePath="..\shopping.h"
- >
- </File>
- <File
- RelativePath="..\skills.cc"
- >
- </File>
- <File
- RelativePath="..\skills.h"
- >
- </File>
- <File
- RelativePath="..\skills2.cc"
- >
- </File>
- <File
- RelativePath="..\skills2.h"
- >
- </File>
- <File
- RelativePath="..\spells1.cc"
- >
- </File>
- <File
- RelativePath="..\spells1.h"
- >
- </File>
- <File
- RelativePath="..\spells2.cc"
- >
- </File>
- <File
- RelativePath="..\spells2.h"
- >
- </File>
- <File
- RelativePath="..\spells3.cc"
- >
- </File>
- <File
- RelativePath="..\spells3.h"
- >
- </File>
- <File
- RelativePath="..\spells4.cc"
- >
- </File>
- <File
- RelativePath="..\spells4.h"
- >
- </File>
- <File
- RelativePath="..\spl-book.cc"
- >
- </File>
- <File
- RelativePath="..\spl-book.h"
- >
- </File>
- <File
- RelativePath="..\spl-cast.cc"
- >
- </File>
- <File
- RelativePath="..\spl-cast.h"
- >
- </File>
- <File
- RelativePath="..\spl-data.h"
- >
- </File>
- <File
- RelativePath="..\spl-mis.cc"
- >
- </File>
- <File
- RelativePath="..\spl-mis.h"
- >
- </File>
- <File
- RelativePath="..\spl-util.cc"
- >
- </File>
- <File
- RelativePath="..\spl-util.h"
- >
- </File>
- <File
- RelativePath="..\sqldbm.cc"
- >
- </File>
- <File
- RelativePath="..\sqldbm.h"
- >
- </File>
- <File
- RelativePath="..\util\sqlite\sqlite3.c"
- >
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="0"
- WarningLevel="0"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- >
- <Tool
- Name="VCCLCompilerTool"
- UsePrecompiledHeader="0"
- WarningLevel="0"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath="..\stash.cc"
- >
- </File>
- <File
- RelativePath="..\stash.h"
- >
- </File>
- <File
- RelativePath="..\state.cc"
- >
- </File>
- <File
- RelativePath="..\state.h"
- >
- </File>
- <File
- RelativePath="..\store.cc"
- >
- </File>
- <File
- RelativePath="..\store.h"
- >
- </File>
- <File
- RelativePath="..\stuff.cc"
- >
- </File>
- <File
- RelativePath="..\stuff.h"
- >
- </File>
- <File
- RelativePath="..\tags.cc"
- >
- </File>
- <File
- RelativePath="..\tags.h"
- >
- </File>
- <File
- RelativePath="..\terrain.cc"
- >
- </File>
- <File
- RelativePath="..\terrain.h"
- >
- </File>
- <File
- RelativePath="..\tile2.cc"
- >
- </File>
- <File
- RelativePath="..\tilebuf.cc"
- >
- </File>
- <File
- RelativePath="..\tilebuf.h"
- >
- </File>
- <File
- RelativePath="..\tilefont.cc"
- >
- </File>
- <File
- RelativePath="..\tilefont.h"
- >
- </File>
- <File
- RelativePath="..\tilemcache.cc"
- >
- </File>
- <File
- RelativePath="..\tilemcache.h"
- >
- </File>
- <File
- RelativePath="..\tilepick.cc"
- >
- </File>
- <File
- RelativePath="..\tilereg.cc"
- >
- </File>
- <File
- RelativePath="..\tilereg.h"
- >
- </File>
- <File
- RelativePath="..\tiles.h"
- >
- </File>
- <File
- RelativePath="..\tilesdl.cc"
- >
- </File>
- <File
- RelativePath="..\tilesdl.h"
- >
- </File>
- <File
- RelativePath="..\tiletex.cc"
- >
- </File>
- <File
- RelativePath="..\tiletex.h"
- >
- </File>
- <File
- RelativePath="..\transfor.cc"
- >
- </File>
- <File
- RelativePath="..\transfor.h"
- >
- </File>
- <File
- RelativePath="..\traps.cc"
- >
- </File>
- <File
- RelativePath="..\traps.h"
- >
- </File>
- <File
- RelativePath="..\travel.cc"
- >
- </File>
- <File
- RelativePath="..\travel.h"
- >
- </File>
- <File
- RelativePath="..\tutorial.cc"
- >
- </File>
- <File
- RelativePath="..\tutorial.h"
- >
- </File>
- <File
- RelativePath="..\unrand.h"
- >
- </File>
- <File
- RelativePath="..\version.cc"
- >
- </File>
- <File
- RelativePath="..\version.h"
- >
- </File>
- <File
- RelativePath="..\view.cc"
- >
- </File>
- <File
- RelativePath="..\view.h"
- >
- </File>
- <File
- RelativePath="..\winhdr.h"
- >
- </File>
- <File
- RelativePath="..\xom.cc"
- >
- </File>
- <File
- RelativePath="..\xom.h"
- >
- </File>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="crawl"
+ ProjectGUID="{3189AF12-90EF-4D3E-BFEC-4AB90D7D32DA}"
+ RootNamespace="crawlref"
+ Keyword="Win32Proj"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug Console|Win32"
+ OutputDirectory="$(SolutionDir)\.."
+ ConfigurationType="1"
+ InheritedPropertySheets=".\Debug.vsprops;.\Console.vsprops;.\Common.vsprops"
+ CharacterSet="0"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=".;..;../util/lua/src;../util/sqlite;../util/pcre;../rltiles"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_USE_MATH_DEFINES"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ UsePrecompiledHeader="2"
+ PrecompiledHeaderThrough="AppHdr.h"
+ WarningLevel="3"
+ WarnAsError="false"
+ Detect64BitPortabilityProblems="false"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ LinkIncremental="2"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release Console|Win32"
+ OutputDirectory="$(SolutionDir)\.."
+ ConfigurationType="1"
+ InheritedPropertySheets=".\Release.vsprops;.\Console.vsprops;.\Common.vsprops"
+ CharacterSet="0"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=".;..;../util/lua/src;../util/sqlite;../util/pcre;../rltiles"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_USE_MATH_DEFINES"
+ UsePrecompiledHeader="2"
+ PrecompiledHeaderThrough="AppHdr.h"
+ WarningLevel="3"
+ WarnAsError="false"
+ Detect64BitPortabilityProblems="false"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ LinkIncremental="1"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Debug Tiles|Win32"
+ OutputDirectory="$(SolutionDir)\.."
+ ConfigurationType="1"
+ InheritedPropertySheets=".\Debug.vsprops;.\Common.vsprops;.\Tiles.vsprops"
+ CharacterSet="0"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=".;..;../util/lua/src;../util/sqlite;../util/pcre;../rltiles"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_USE_MATH_DEFINES"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ UsePrecompiledHeader="2"
+ PrecompiledHeaderThrough="AppHdr.h"
+ WarningLevel="3"
+ WarnAsError="false"
+ Detect64BitPortabilityProblems="false"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ LinkIncremental="2"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release Tiles|Win32"
+ OutputDirectory="$(SolutionDir)\.."
+ ConfigurationType="1"
+ InheritedPropertySheets=".\Release.vsprops;.\Common.vsprops;.\Tiles.vsprops"
+ CharacterSet="0"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=".;..;../util/lua/src;../util/sqlite;../util/pcre;../rltiles"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;YY_NO_UNISTD_H;_USE_MATH_DEFINES"
+ UsePrecompiledHeader="2"
+ PrecompiledHeaderThrough="AppHdr.h"
+ WarningLevel="3"
+ WarnAsError="false"
+ Detect64BitPortabilityProblems="false"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ LinkIncremental="1"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <File
+ RelativePath="..\abl-show.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\abl-show.h"
+ >
+ </File>
+ <File
+ RelativePath="..\abyss.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\abyss.h"
+ >
+ </File>
+ <File
+ RelativePath="..\acr.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\AppHdr.cc"
+ >
+ <FileConfiguration
+ Name="Debug Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="1"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="1"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="1"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="1"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\AppHdr.h"
+ >
+ </File>
+ <File
+ RelativePath="..\arena.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\arena.h"
+ >
+ </File>
+ <File
+ RelativePath="..\artefact.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\artefact.h"
+ >
+ </File>
+ <File
+ RelativePath="..\beam.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\beam.h"
+ >
+ </File>
+ <File
+ RelativePath="..\bitary.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\bitary.h"
+ >
+ </File>
+ <File
+ RelativePath="..\branch.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\branch.h"
+ >
+ </File>
+ <File
+ RelativePath="..\chardump.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\chardump.h"
+ >
+ </File>
+ <File
+ RelativePath="..\cio.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\cio.h"
+ >
+ </File>
+ <File
+ RelativePath="..\cloud.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\cloud.h"
+ >
+ </File>
+ <File
+ RelativePath="..\clua.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\clua.h"
+ >
+ </File>
+ <File
+ RelativePath="..\command.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\command.h"
+ >
+ </File>
+ <File
+ RelativePath="..\crash-w.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\database.cc"
+ >
+ <FileConfiguration
+ Name="Debug Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\database.h"
+ >
+ </File>
+ <File
+ RelativePath="..\debug.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\debug.h"
+ >
+ </File>
+ <File
+ RelativePath="..\decks.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\decks.h"
+ >
+ </File>
+ <File
+ RelativePath="..\defines.h"
+ >
+ </File>
+ <File
+ RelativePath="..\delay.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\delay.h"
+ >
+ </File>
+ <File
+ RelativePath="..\describe.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\describe.h"
+ >
+ </File>
+ <File
+ RelativePath="..\dgnevent.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\dgnevent.h"
+ >
+ </File>
+ <File
+ RelativePath="..\directn.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\directn.h"
+ >
+ </File>
+ <File
+ RelativePath="..\dungeon.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\dungeon.h"
+ >
+ </File>
+ <File
+ RelativePath="..\effects.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\effects.h"
+ >
+ </File>
+ <File
+ RelativePath="..\enum.h"
+ >
+ </File>
+ <File
+ RelativePath="..\externs.h"
+ >
+ </File>
+ <File
+ RelativePath="..\fight.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\fight.h"
+ >
+ </File>
+ <File
+ RelativePath="..\files.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\files.h"
+ >
+ </File>
+ <File
+ RelativePath="..\fixary.h"
+ >
+ </File>
+ <File
+ RelativePath="..\fixvec.h"
+ >
+ </File>
+ <File
+ RelativePath="..\food.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\food.h"
+ >
+ </File>
+ <File
+ RelativePath="..\format.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\format.h"
+ >
+ </File>
+ <File
+ RelativePath="..\ghost.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\ghost.h"
+ >
+ </File>
+ <File
+ RelativePath="..\hiscores.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\hiscores.h"
+ >
+ </File>
+ <File
+ RelativePath="..\initfile.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\initfile.h"
+ >
+ </File>
+ <File
+ RelativePath="..\invent.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\invent.h"
+ >
+ </File>
+ <File
+ RelativePath="..\it_use2.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\it_use2.h"
+ >
+ </File>
+ <File
+ RelativePath="..\it_use3.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\it_use3.h"
+ >
+ </File>
+ <File
+ RelativePath="..\item_use.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\item_use.h"
+ >
+ </File>
+ <File
+ RelativePath="..\itemname.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\itemname.h"
+ >
+ </File>
+ <File
+ RelativePath="..\itemprop.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\itemprop.h"
+ >
+ </File>
+ <File
+ RelativePath="..\items.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\items.h"
+ >
+ </File>
+ <File
+ RelativePath="..\kills.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\kills.h"
+ >
+ </File>
+ <File
+ RelativePath="..\lev-pand.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\lev-pand.h"
+ >
+ </File>
+ <File
+ RelativePath="..\prebuilt\levcomp.lex.cc"
+ >
+ <FileConfiguration
+ Name="Debug Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\prebuilt\levcomp.tab.cc"
+ >
+ <FileConfiguration
+ Name="Debug Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\prebuilt\levcomp.tab.h"
+ >
+ </File>
+ <File
+ RelativePath="..\libgui.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\libgui.h"
+ >
+ </File>
+ <File
+ RelativePath="..\libutil.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\libutil.h"
+ >
+ </File>
+ <File
+ RelativePath="..\libw32c.cc"
+ >
+ <FileConfiguration
+ Name="Debug Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="2"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="2"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="2"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="2"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\libw32c.h"
+ >
+ </File>
+ <File
+ RelativePath="..\los.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\los.h"
+ >
+ </File>
+ <File
+ RelativePath="..\losparam.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\losparam.h"
+ >
+ </File>
+ <File
+ RelativePath="..\luadgn.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\luadgn.h"
+ >
+ </File>
+ <File
+ RelativePath="..\macro.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\macro.h"
+ >
+ </File>
+ <File
+ RelativePath="..\makeitem.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\makeitem.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mapdef.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\mapdef.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mapmark.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\mapmark.h"
+ >
+ </File>
+ <File
+ RelativePath="..\maps.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\maps.h"
+ >
+ </File>
+ <File
+ RelativePath="..\menu.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\menu.h"
+ >
+ </File>
+ <File
+ RelativePath="..\message.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\message.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mgrow.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\mgrow.h"
+ >
+ </File>
+ <File
+ RelativePath="..\misc.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\misc.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mon-data.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mon-los.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\mon-los.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mon-pick.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\mon-pick.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mon-spll.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mon-util.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\mon-util.h"
+ >
+ </File>
+ <File
+ RelativePath="..\monplace.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\monplace.h"
+ >
+ </File>
+ <File
+ RelativePath="..\monspeak.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\monspeak.h"
+ >
+ </File>
+ <File
+ RelativePath="..\monstuff.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\monstuff.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mpr.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mstuff2.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\mstuff2.h"
+ >
+ </File>
+ <File
+ RelativePath="..\msvc.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mt19937ar.cc"
+ >
+ <FileConfiguration
+ Name="Debug Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\mt19937ar.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mtransit.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\mtransit.h"
+ >
+ </File>
+ <File
+ RelativePath="..\mutation.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\mutation.h"
+ >
+ </File>
+ <File
+ RelativePath="..\newgame.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\newgame.h"
+ >
+ </File>
+ <File
+ RelativePath="..\notes.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\notes.h"
+ >
+ </File>
+ <File
+ RelativePath="..\ouch.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\ouch.h"
+ >
+ </File>
+ <File
+ RelativePath="..\output.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\output.h"
+ >
+ </File>
+ <File
+ RelativePath="..\overmap.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\overmap.h"
+ >
+ </File>
+ <File
+ RelativePath="..\place.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\place.h"
+ >
+ </File>
+ <File
+ RelativePath="..\player.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\player.h"
+ >
+ </File>
+ <File
+ RelativePath="..\quiver.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\quiver.h"
+ >
+ </File>
+ <File
+ RelativePath="..\ray.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\ray.h"
+ >
+ </File>
+ <File
+ RelativePath="..\religion.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\religion.h"
+ >
+ </File>
+ <File
+ RelativePath="..\shopping.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\shopping.h"
+ >
+ </File>
+ <File
+ RelativePath="..\skills.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\skills.h"
+ >
+ </File>
+ <File
+ RelativePath="..\skills2.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\skills2.h"
+ >
+ </File>
+ <File
+ RelativePath="..\spells1.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\spells1.h"
+ >
+ </File>
+ <File
+ RelativePath="..\spells2.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\spells2.h"
+ >
+ </File>
+ <File
+ RelativePath="..\spells3.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\spells3.h"
+ >
+ </File>
+ <File
+ RelativePath="..\spells4.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\spells4.h"
+ >
+ </File>
+ <File
+ RelativePath="..\spl-book.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\spl-book.h"
+ >
+ </File>
+ <File
+ RelativePath="..\spl-cast.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\spl-cast.h"
+ >
+ </File>
+ <File
+ RelativePath="..\spl-data.h"
+ >
+ </File>
+ <File
+ RelativePath="..\spl-mis.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\spl-mis.h"
+ >
+ </File>
+ <File
+ RelativePath="..\spl-util.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\spl-util.h"
+ >
+ </File>
+ <File
+ RelativePath="..\sqldbm.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\sqldbm.h"
+ >
+ </File>
+ <File
+ RelativePath="..\stash.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\stash.h"
+ >
+ </File>
+ <File
+ RelativePath="..\state.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\state.h"
+ >
+ </File>
+ <File
+ RelativePath="..\store.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\store.h"
+ >
+ </File>
+ <File
+ RelativePath="..\stuff.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\stuff.h"
+ >
+ </File>
+ <File
+ RelativePath="..\tags.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\tags.h"
+ >
+ </File>
+ <File
+ RelativePath="..\terrain.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\terrain.h"
+ >
+ </File>
+ <File
+ RelativePath="..\tile2.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\tilebuf.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\tilebuf.h"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tiledef-dngn.cc"
+ >
+ <FileConfiguration
+ Name="Debug Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\rltiles\tiledef-dngn.h"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tiledef-gui.cc"
+ >
+ <FileConfiguration
+ Name="Debug Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\rltiles\tiledef-gui.h"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tiledef-main.cc"
+ >
+ <FileConfiguration
+ Name="Debug Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\rltiles\tiledef-main.h"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tiledef-player.cc"
+ >
+ <FileConfiguration
+ Name="Debug Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\rltiles\tiledef-player.h"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tiledef-unrand.cc"
+ >
+ <FileConfiguration
+ Name="Debug Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Console|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Release Tiles|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ UsePrecompiledHeader="0"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\rltiles\tiledef-unrand.h"
+ >
+ </File>
+ <File
+ RelativePath="..\tilefont.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\tilefont.h"
+ >
+ </File>
+ <File
+ RelativePath="..\tilemcache.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\tilemcache.h"
+ >
+ </File>
+ <File
+ RelativePath="..\tilepick.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\tilereg.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\tilereg.h"
+ >
+ </File>
+ <File
+ RelativePath="..\tiles.h"
+ >
+ </File>
+ <File
+ RelativePath="..\tilesdl.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\tilesdl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\tiletex.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\tiletex.h"
+ >
+ </File>
+ <File
+ RelativePath="..\transfor.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\transfor.h"
+ >
+ </File>
+ <File
+ RelativePath="..\traps.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\traps.h"
+ >
+ </File>
+ <File
+ RelativePath="..\travel.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\travel.h"
+ >
+ </File>
+ <File
+ RelativePath="..\tutorial.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\tutorial.h"
+ >
+ </File>
+ <File
+ RelativePath="..\unrand.h"
+ >
+ </File>
+ <File
+ RelativePath="..\version.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\version.h"
+ >
+ </File>
+ <File
+ RelativePath="..\view.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\view.h"
+ >
+ </File>
+ <File
+ RelativePath="..\winhdr.h"
+ >
+ </File>
+ <File
+ RelativePath="..\xom.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\xom.h"
+ >
+ </File>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>
diff --git a/crawl-ref/source/MSVC/tilegen.vcproj b/crawl-ref/source/MSVC/tilegen.vcproj
new file mode 100644
index 0000000000..1a7e979d01
--- /dev/null
+++ b/crawl-ref/source/MSVC/tilegen.vcproj
@@ -0,0 +1,209 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8.00"
+ Name="tilegen"
+ ProjectGUID="{DAE92A45-087B-445B-8E94-BA864173A73F}"
+ RootNamespace="tilegen"
+ Keyword="Win32Proj"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ ConfigurationType="1"
+ InheritedPropertySheets=".\Common.vsprops;.\Tiles.vsprops;.\Debug.vsprops"
+ CharacterSet="1"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ UsePrecompiledHeader="0"
+ WarningLevel="3"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ LinkIncremental="2"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ CommandLine="cd &quot;$(SolutionDir)\..\rltiles&quot;&#x0D;&#x0A;echo Generating main.png...&#x0D;&#x0A;&quot;$(SolutionDir)\bin\$(ProjectName)\$(ConfigurationName)\$(ProjectName).exe&quot; dc-main.txt&#x0D;&#x0A;echo Generating dngn.png...&#x0D;&#x0A;&quot;$(SolutionDir)\bin\$(ProjectName)\$(ConfigurationName)\$(ProjectName).exe&quot; dc-dngn.txt&#x0D;&#x0A;echo Generating player.png...&#x0D;&#x0A;&quot;$(SolutionDir)\bin\$(ProjectName)\$(ConfigurationName)\$(ProjectName).exe&quot; dc-player.txt&#x0D;&#x0A;echo Generating gui.png...&#x0D;&#x0A;&quot;$(SolutionDir)\bin\$(ProjectName)\$(ConfigurationName)\$(ProjectName).exe&quot; dc-gui.txt&#x0D;&#x0A;copy *.png ..\dat\tiles\"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ ConfigurationType="1"
+ InheritedPropertySheets=".\Common.vsprops;.\Tiles.vsprops;.\Release.vsprops"
+ CharacterSet="1"
+ WholeProgramOptimization="0"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
+ UsePrecompiledHeader="0"
+ WarningLevel="3"
+ Detect64BitPortabilityProblems="true"
+ DebugInformationFormat="3"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ LinkIncremental="1"
+ GenerateDebugInformation="true"
+ SubSystem="1"
+ OptimizeReferences="2"
+ EnableCOMDATFolding="2"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCWebDeploymentTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ CommandLine="cd &quot;$(SolutionDir)\..\rltiles&quot;&#x0D;&#x0A;echo Generating main.png...&#x0D;&#x0A;&quot;$(SolutionDir)\bin\$(ProjectName)\$(ConfigurationName)\$(ProjectName).exe&quot; dc-main.txt&#x0D;&#x0A;echo Generating dngn.png...&#x0D;&#x0A;&quot;$(SolutionDir)\bin\$(ProjectName)\$(ConfigurationName)\$(ProjectName).exe&quot; dc-dngn.txt&#x0D;&#x0A;echo Generating player.png...&#x0D;&#x0A;&quot;$(SolutionDir)\bin\$(ProjectName)\$(ConfigurationName)\$(ProjectName).exe&quot; dc-player.txt&#x0D;&#x0A;echo Generating gui.png...&#x0D;&#x0A;&quot;$(SolutionDir)\bin\$(ProjectName)\$(ConfigurationName)\$(ProjectName).exe&quot; dc-gui.txt&#x0D;&#x0A;copy *.png ..\dat\tiles\"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <File
+ RelativePath="..\rltiles\tool\main.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tool\tile.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tool\tile.h"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tool\tile_colour.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tool\tile_colour.h"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tool\tile_list_processor.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tool\tile_list_processor.h"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tool\tile_page.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\rltiles\tool\tile_page.h"
+ >
+ </File>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>