Added MS VS 2010 solution with projects for the major binaries.
This commit is contained in:
143
src/ld65.vcxproj
Normal file
143
src/ld65.vcxproj
Normal file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.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>{26C749A0-814C-47A2-9D36-AE92AE932FE4}</ProjectGuid>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<RootNamespace>ld65</RootNamespace>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
</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>
|
||||
<OutDir>$(SolutionDir)..\bin\</OutDir>
|
||||
<IntDir>$(SolutionDir)..\wrk\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>$(SolutionDir)..\bin\</OutDir>
|
||||
<IntDir>$(SolutionDir)..\wrk\$(ProjectName)\$(Configuration)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_CONSOLE;_DEBUG</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>common</AdditionalIncludeDirectories>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>$(SolutionDir)..\wrk\common\$(Configuration)\common.lib</AdditionalDependencies>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PrecompiledHeader>
|
||||
</PrecompiledHeader>
|
||||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_CONSOLE;NDEBUG</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>common</AdditionalIncludeDirectories>
|
||||
<TreatWarningAsError>true</TreatWarningAsError>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<GenerateDebugInformation>false</GenerateDebugInformation>
|
||||
<AdditionalDependencies>$(SolutionDir)..\wrk\common\$(Configuration)\common.lib</AdditionalDependencies>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="ld65\asserts.h" />
|
||||
<ClInclude Include="ld65\bin.h" />
|
||||
<ClInclude Include="ld65\binfmt.h" />
|
||||
<ClInclude Include="ld65\cfgexpr.h" />
|
||||
<ClInclude Include="ld65\condes.h" />
|
||||
<ClInclude Include="ld65\config.h" />
|
||||
<ClInclude Include="ld65\dbgfile.h" />
|
||||
<ClInclude Include="ld65\dbgsyms.h" />
|
||||
<ClInclude Include="ld65\error.h" />
|
||||
<ClInclude Include="ld65\exports.h" />
|
||||
<ClInclude Include="ld65\expr.h" />
|
||||
<ClInclude Include="ld65\extsyms.h" />
|
||||
<ClInclude Include="ld65\fileinfo.h" />
|
||||
<ClInclude Include="ld65\fileio.h" />
|
||||
<ClInclude Include="ld65\filepath.h" />
|
||||
<ClInclude Include="ld65\fragment.h" />
|
||||
<ClInclude Include="ld65\global.h" />
|
||||
<ClInclude Include="ld65\library.h" />
|
||||
<ClInclude Include="ld65\lineinfo.h" />
|
||||
<ClInclude Include="ld65\mapfile.h" />
|
||||
<ClInclude Include="ld65\memarea.h" />
|
||||
<ClInclude Include="ld65\o65.h" />
|
||||
<ClInclude Include="ld65\objdata.h" />
|
||||
<ClInclude Include="ld65\objfile.h" />
|
||||
<ClInclude Include="ld65\scanner.h" />
|
||||
<ClInclude Include="ld65\scopes.h" />
|
||||
<ClInclude Include="ld65\segments.h" />
|
||||
<ClInclude Include="ld65\span.h" />
|
||||
<ClInclude Include="ld65\spool.h" />
|
||||
<ClInclude Include="ld65\tpool.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="ld65\asserts.c" />
|
||||
<ClCompile Include="ld65\bin.c" />
|
||||
<ClCompile Include="ld65\binfmt.c" />
|
||||
<ClCompile Include="ld65\cfgexpr.c" />
|
||||
<ClCompile Include="ld65\condes.c" />
|
||||
<ClCompile Include="ld65\config.c" />
|
||||
<ClCompile Include="ld65\dbgfile.c" />
|
||||
<ClCompile Include="ld65\dbgsyms.c" />
|
||||
<ClCompile Include="ld65\error.c" />
|
||||
<ClCompile Include="ld65\exports.c" />
|
||||
<ClCompile Include="ld65\expr.c" />
|
||||
<ClCompile Include="ld65\extsyms.c" />
|
||||
<ClCompile Include="ld65\fileinfo.c" />
|
||||
<ClCompile Include="ld65\fileio.c" />
|
||||
<ClCompile Include="ld65\filepath.c" />
|
||||
<ClCompile Include="ld65\fragment.c" />
|
||||
<ClCompile Include="ld65\global.c" />
|
||||
<ClCompile Include="ld65\library.c" />
|
||||
<ClCompile Include="ld65\lineinfo.c" />
|
||||
<ClCompile Include="ld65\main.c" />
|
||||
<ClCompile Include="ld65\mapfile.c" />
|
||||
<ClCompile Include="ld65\memarea.c" />
|
||||
<ClCompile Include="ld65\o65.c" />
|
||||
<ClCompile Include="ld65\objdata.c" />
|
||||
<ClCompile Include="ld65\objfile.c" />
|
||||
<ClCompile Include="ld65\scanner.c" />
|
||||
<ClCompile Include="ld65\scopes.c" />
|
||||
<ClCompile Include="ld65\segments.c" />
|
||||
<ClCompile Include="ld65\span.c" />
|
||||
<ClCompile Include="ld65\spool.c" />
|
||||
<ClCompile Include="ld65\tpool.c" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user