]> git.sur5r.net Git - cc65/blob - src/sim65.vcxproj
Replace hard returns with an "else", add an error for non-IDENT tokens, and test...
[cc65] / src / sim65.vcxproj
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project DefaultTargets="Build" ToolsVersion="15.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>{002A366E-2863-46A8-BDDE-DDF534AAEC73}</ProjectGuid>
15     <Keyword>Win32Proj</Keyword>
16     <RootNamespace>sim65</RootNamespace>
17     <WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion>
18   </PropertyGroup>
19   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
20   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
21     <UseDebugLibraries>true</UseDebugLibraries>
22     <PlatformToolset>v141</PlatformToolset>
23   </PropertyGroup>
24   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
25     <UseDebugLibraries>false</UseDebugLibraries>
26     <WholeProgramOptimization>true</WholeProgramOptimization>
27     <PlatformToolset>v141</PlatformToolset>
28   </PropertyGroup>
29   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
30   <ImportGroup Label="ExtensionSettings">
31   </ImportGroup>
32   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
33     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
34   </ImportGroup>
35   <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
36     <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
37   </ImportGroup>
38   <PropertyGroup Label="UserMacros" />
39   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
40     <LinkIncremental>true</LinkIncremental>
41     <OutDir>$(SolutionDir)..\bin\</OutDir>
42     <IntDir>$(SolutionDir)..\wrk\$(ProjectName)\$(Configuration)\</IntDir>
43   </PropertyGroup>
44   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
45     <LinkIncremental>false</LinkIncremental>
46     <OutDir>$(SolutionDir)..\bin\</OutDir>
47     <IntDir>$(SolutionDir)..\wrk\$(ProjectName)\$(Configuration)\</IntDir>
48   </PropertyGroup>
49   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
50     <ClCompile>
51       <PrecompiledHeader>
52       </PrecompiledHeader>
53       <WarningLevel>Level3</WarningLevel>
54       <PreprocessorDefinitions>_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CONSOLE;_DEBUG</PreprocessorDefinitions>
55       <AdditionalIncludeDirectories>common</AdditionalIncludeDirectories>
56       <TreatWarningAsError>true</TreatWarningAsError>
57     </ClCompile>
58     <Link>
59       <SubSystem>Console</SubSystem>
60       <GenerateDebugInformation>true</GenerateDebugInformation>
61       <AdditionalDependencies>$(IntDir)..\..\common\$(Configuration)\common.lib</AdditionalDependencies>
62     </Link>
63   </ItemDefinitionGroup>
64   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
65     <ClCompile>
66       <WarningLevel>Level3</WarningLevel>
67       <PrecompiledHeader>
68       </PrecompiledHeader>
69       <PreprocessorDefinitions>_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CONSOLE;NDEBUG</PreprocessorDefinitions>
70       <AdditionalIncludeDirectories>common</AdditionalIncludeDirectories>
71       <TreatWarningAsError>true</TreatWarningAsError>
72     </ClCompile>
73     <Link>
74       <SubSystem>Console</SubSystem>
75       <GenerateDebugInformation>false</GenerateDebugInformation>
76       <AdditionalDependencies>$(IntDir)..\..\common\$(Configuration)\common.lib</AdditionalDependencies>
77     </Link>
78   </ItemDefinitionGroup>
79   <ItemGroup>
80     <ClInclude Include="sim65\6502.h" />
81     <ClInclude Include="sim65\error.h" />
82     <ClInclude Include="sim65\memory.h" />
83     <ClInclude Include="sim65\paravirt.h" />
84   </ItemGroup>
85   <ItemGroup>
86     <ClCompile Include="sim65\6502.c" />
87     <ClCompile Include="sim65\error.c" />
88     <ClCompile Include="sim65\main.c" />
89     <ClCompile Include="sim65\memory.c" />
90     <ClCompile Include="sim65\paravirt.c" />
91   </ItemGroup>
92   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
93   <ImportGroup Label="ExtensionTargets">
94   </ImportGroup>
95 </Project>