Files
oboe/src/BoE.vsproj/Game/Blades of Exile.vcxproj
Celtic Minstrel 0b330432b4 Get the game to compile, at least
- Scenario and PC editors still don't link
- Copy files stage set up in the Common project
- Scenario and PC editors now placed in Scenario Editor subfolder in the output directory
- Disabled some totally useless warnings
- "About" menuitem now considered to belong to "Help" menu (even on Mac code) as far as the handlers are concerned
- Dialog string filter is now a function instead of a custom iterator
- Modal session now requires parent window as additional parameter
- Preferences and menus work! Cursors still need some work.
- Since Visual Studio has no way of showing program output that I can find, stdout and stderr are now redirected to a file.
2014-12-30 17:20:22 -05:00

155 lines
7.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{A0C19353-478B-4F21-9FE3-FA8EE4D15147}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>BladesofExile</RootNamespace>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;TIXML_USE_TICPP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PrecompiledHeaderFile />
<PrecompiledHeaderOutputFile />
<AdditionalIncludeDirectories>..\..\tools\resmgr;..\..\tools\gzstream;..\..\tools;..\..\dialogxml\xml-parser;..\..\dialogxml;..\..\classes;..\..;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<DisableSpecificWarnings>4800;4290</DisableSpecificWarnings>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalDependencies>opengl32.lib;sfml-system-d.lib;sfml-window-d.lib;sfml-graphics-d.lib;sfml-audio-d.lib;zlib.lib;%(AdditionalDependencies)</AdditionalDependencies>
<EntryPointSymbol>mainCRTStartup</EntryPointSymbol>
</Link>
<ResourceCompile>
<AdditionalIncludeDirectories>..;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ResourceCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>Use</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<Text Include="ReadMe.txt" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\boe.actions.h" />
<ClInclude Include="..\..\boe.combat.h" />
<ClInclude Include="..\..\boe.consts.h" />
<ClInclude Include="..\..\boe.dlgutil.h" />
<ClInclude Include="..\..\boe.fileio.h" />
<ClInclude Include="..\..\boe.global.h" />
<ClInclude Include="..\..\boe.graphics.h" />
<ClInclude Include="..\..\boe.graphutil.h" />
<ClInclude Include="..\..\boe.infodlg.h" />
<ClInclude Include="..\..\boe.itemdata.h" />
<ClInclude Include="..\..\boe.items.h" />
<ClInclude Include="..\..\boe.locutils.h" />
<ClInclude Include="..\..\boe.main.h" />
<ClInclude Include="..\..\boe.menus.h" />
<ClInclude Include="..\..\boe.monster.h" />
<ClInclude Include="..\..\boe.newgraph.h" />
<ClInclude Include="..\..\boe.party.h" />
<ClInclude Include="..\..\boe.specials.h" />
<ClInclude Include="..\..\boe.startup.h" />
<ClInclude Include="..\..\boe.text.h" />
<ClInclude Include="..\..\boe.town.h" />
<ClInclude Include="..\..\boe.townspec.h" />
<ClInclude Include="Resource.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Blades of Exile.rc" />
</ItemGroup>
<ItemGroup>
<Image Include="..\..\..\Win32\game\Resources\BLADEXIL.ICO" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\boe.actions.cpp" />
<ClCompile Include="..\..\boe.combat.cpp" />
<ClCompile Include="..\..\boe.dlgutil.cpp" />
<ClCompile Include="..\..\boe.fileio.cpp" />
<ClCompile Include="..\..\boe.graphics.cpp" />
<ClCompile Include="..\..\boe.graphutil.cpp" />
<ClCompile Include="..\..\boe.infodlg.cpp" />
<ClCompile Include="..\..\boe.itemdata.cpp" />
<ClCompile Include="..\..\boe.items.cpp" />
<ClCompile Include="..\..\boe.locutils.cpp" />
<ClCompile Include="..\..\boe.main.cpp" />
<ClCompile Include="..\..\boe.menus.win.cpp" />
<ClCompile Include="..\..\boe.monster.cpp" />
<ClCompile Include="..\..\boe.newgraph.cpp" />
<ClCompile Include="..\..\boe.party.cpp" />
<ClCompile Include="..\..\boe.specials.cpp" />
<ClCompile Include="..\..\boe.startup.cpp" />
<ClCompile Include="..\..\boe.text.cpp" />
<ClCompile Include="..\..\boe.town.cpp" />
<ClCompile Include="..\..\boe.townspec.cpp" />
<ClCompile Include="..\..\pcedit\pc.editors.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Common\Common.vcxproj">
<Project>{1347fe79-73bd-4176-9280-0fe39e3534e2}</Project>
<Private>false</Private>
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
<CopyLocalSatelliteAssemblies>false</CopyLocalSatelliteAssemblies>
<LinkLibraryDependencies>true</LinkLibraryDependencies>
<UseLibraryDependencyInputs>true</UseLibraryDependencyInputs>
</ProjectReference>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>