Mercurial > hg > early-roguelike
annotate srogue/srogue.vcxproj @ 290:2b452dbf0138
UltraRogue: fix options menu.
When displaying options, get_restr() did not position the cursor
correctly, resulting in values being duplicated.
| author | John "Elwin" Edwards |
|---|---|
| date | Sun, 26 Nov 2017 11:34:45 -0500 |
| parents | 23d2e2bf812f |
| children |
| rev | line source |
|---|---|
| 208 | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| 3 <ItemGroup Label="ProjectConfigurations"> | |
| 4 <ProjectConfiguration Include="Debug|Win32"> | |
| 5 <Configuration>Debug</Configuration> | |
| 6 <Platform>Win32</Platform> | |
| 7 </ProjectConfiguration> | |
| 8 <ProjectConfiguration Include="Release|Win32"> | |
| 9 <Configuration>Release</Configuration> | |
| 10 <Platform>Win32</Platform> | |
| 11 </ProjectConfiguration> | |
| 12 <ProjectConfiguration Include="Debug|x64"> | |
| 13 <Configuration>Debug</Configuration> | |
| 14 <Platform>x64</Platform> | |
| 15 </ProjectConfiguration> | |
| 16 <ProjectConfiguration Include="Release|x64"> | |
| 17 <Configuration>Release</Configuration> | |
| 18 <Platform>x64</Platform> | |
| 19 </ProjectConfiguration> | |
| 20 </ItemGroup> | |
| 21 <PropertyGroup Label="Globals"> | |
| 22 <ProjectGuid>{FE28341F-1129-4A66-A170-5486CAEF3464}</ProjectGuid> | |
| 23 <RootNamespace>srogue</RootNamespace> | |
| 24 <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion> | |
| 25 </PropertyGroup> | |
| 26 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
| 27 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
| 28 <ConfigurationType>Application</ConfigurationType> | |
| 29 <UseDebugLibraries>true</UseDebugLibraries> | |
| 30 <PlatformToolset>v140</PlatformToolset> | |
| 31 <CharacterSet>MultiByte</CharacterSet> | |
| 32 </PropertyGroup> | |
| 33 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
| 34 <ConfigurationType>Application</ConfigurationType> | |
| 35 <UseDebugLibraries>false</UseDebugLibraries> | |
| 36 <PlatformToolset>v140</PlatformToolset> | |
| 37 <WholeProgramOptimization>true</WholeProgramOptimization> | |
| 38 <CharacterSet>MultiByte</CharacterSet> | |
| 39 </PropertyGroup> | |
| 40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> | |
| 41 <ConfigurationType>Application</ConfigurationType> | |
|
4146e2a06bc1
Update the Visual Studio project files.
|
