]> git.sur5r.net Git - cc65/blob - src/sp65.vcxproj
Formatting tweaks.
[cc65] / src / sp65.vcxproj
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   </ItemGroup>
13   <PropertyGroup Label="Globals">
14     <ProjectGuid>{4388D1AF-C7EA-4AD4-8E80-CA1FB7BF76BF}</ProjectGuid>
15     <Keyword>Win32Proj</Keyword>
16     <RootNamespace>sp65</RootNamespace>
17   </PropertyGroup>
18   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
19   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
20     <UseDebugLibraries>true</UseDebugLibraries>
21     <PlatformToolset>v140</PlatformToolset>
22   </PropertyGroup>
23   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
24     <UseDebugLibraries>false</UseDebugLibraries>
25     <WholeProgramOptimization>true</WholeProgramOptimization>
26     <PlatformToolset>v140</PlatformToolset>
27   </PropertyGroup>
28   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
29   <ImportGroup Label="ExtensionSettings">
30   </ImportGroup>
31   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
32     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
33   </ImportGroup>
34   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
35     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
36   </ImportGroup>
37   <PropertyGroup Label="UserMacros" />
38   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
39     <LinkIncremental>true</LinkIncremental>
40     <OutDir>$(SolutionDir)..\bin\</OutDir>
41     <IntDir>$(SolutionDir)..\wrk\$(ProjectName)\$(Configuration)\</IntDir>
42   </PropertyGroup>
43   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
44     <OutDir>$(SolutionDir)..\bin\</OutDir>
45     <IntDir>$(SolutionDir)..\wrk\$(ProjectName)\$(Configuration)\</IntDir>
46   </PropertyGroup>
47   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
48     <ClCompile>
49       <PrecompiledHeader>
50       </PrecompiledHeader>
51       <WarningLevel>Level3</WarningLevel>
52       <PreprocessorDefinitions>_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CONSOLE;_DEBUG</PreprocessorDefinitions>
53       <AdditionalIncludeDirectories>common</AdditionalIncludeDirectories>
54       <TreatWarningAsError>true</TreatWarningAsError>
55     </ClCompile>
56     <Link>
57       <SubSystem>Console</SubSystem>
58       <GenerateDebugInformation>true</GenerateDebugInformation>
59       <AdditionalDependencies>$(IntDir)..\..\common\$(Configuration)\common.lib</AdditionalDependencies>
60     </Link>
61   </ItemDefinitionGroup>
62   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
63     <ClCompile>
64       <WarningLevel>Level3</WarningLevel>
65       <PrecompiledHeader>
66       </PrecompiledHeader>
67       <PreprocessorDefinitions>_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CONSOLE;NDEBUG</PreprocessorDefinitions>
68       <AdditionalIncludeDirectories>common</AdditionalIncludeDirectories>
69       <TreatWarningAsError>true</TreatWarningAsError>
70     </ClCompile>
71     <Link>
72       <SubSystem>Console</SubSystem>
73       <GenerateDebugInformation>false</GenerateDebugInformation>
74       <AdditionalDependencies>$(IntDir)..\..\common\$(Configuration)\common.lib</AdditionalDependencies>
75     </Link>
76   </ItemDefinitionGroup>
77   <ItemGroup>
78     <ClCompile Include="sp65\asm.c" />
79     <ClCompile Include="sp65\attr.c" />
80     <ClCompile Include="sp65\bin.c" />
81     <ClCompile Include="sp65\bitmap.c" />
82     <ClCompile Include="sp65\c.c" />
83     <ClCompile Include="sp65\color.c" />
84     <ClCompile Include="sp65\convert.c" />
85     <ClCompile Include="sp65\error.c" />
86     <ClCompile Include="sp65\fileio.c" />
87     <ClCompile Include="sp65\geosbitmap.c" />
88     <ClCompile Include="sp65\geosicon.c" />
89     <ClCompile Include="sp65\input.c" />
90     <ClCompile Include="sp65\koala.c" />
91     <ClCompile Include="sp65\lynxsprite.c" />
92     <ClCompile Include="sp65\main.c" />
93     <ClCompile Include="sp65\output.c" />
94     <ClCompile Include="sp65\palette.c" />
95     <ClCompile Include="sp65\pcx.c" />
96     <ClCompile Include="sp65\raw.c" />
97     <ClCompile Include="sp65\vic2sprite.c" />
98   </ItemGroup>
99   <ItemGroup>
100     <ClInclude Include="sp65\asm.h" />
101     <ClInclude Include="sp65\attr.h" />
102     <ClInclude Include="sp65\bin.h" />
103     <ClInclude Include="sp65\bitmap.h" />
104     <ClInclude Include="sp65\c.h" />
105     <ClInclude Include="sp65\color.h" />
106     <ClInclude Include="sp65\convert.h" />
107     <ClInclude Include="sp65\error.h" />
108     <ClInclude Include="sp65\fileio.h" />
109     <ClInclude Include="sp65\geosbitmap.h" />
110     <ClInclude Include="sp65\geosicon.h" />
111     <ClInclude Include="sp65\input.h" />
112     <ClInclude Include="sp65\koala.h" />
113     <ClInclude Include="sp65\lynxsprite.h" />
114     <ClInclude Include="sp65\output.h" />
115     <ClInclude Include="sp65\palette.h" />
116     <ClInclude Include="sp65\pcx.h" />
117     <ClInclude Include="sp65\pixel.h" />
118     <ClInclude Include="sp65\raw.h" />
119     <ClInclude Include="sp65\vic2sprite.h" />
120   </ItemGroup>
121   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
122   <ImportGroup Label="ExtensionTargets">
123   </ImportGroup>
124 </Project>