bin2coff.vcxproj 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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="Release|Win32">
  5. <Configuration>Release</Configuration>
  6. <Platform>Win32</Platform>
  7. </ProjectConfiguration>
  8. </ItemGroup>
  9. <PropertyGroup Label="Globals">
  10. <ProjectGuid>{BFE316B3-BD90-433A-A20D-C73975F1CAA7}</ProjectGuid>
  11. <RootNamespace>bin2coff</RootNamespace>
  12. <Keyword>Win32Proj</Keyword>
  13. <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
  14. </PropertyGroup>
  15. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  17. <ConfigurationType>Application</ConfigurationType>
  18. <PlatformToolset>v142</PlatformToolset>
  19. <CharacterSet>Unicode</CharacterSet>
  20. <WholeProgramOptimization>true</WholeProgramOptimization>
  21. </PropertyGroup>
  22. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  23. <ImportGroup Label="ExtensionSettings">
  24. </ImportGroup>
  25. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  26. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  27. </ImportGroup>
  28. <PropertyGroup Label="UserMacros" />
  29. <PropertyGroup>
  30. <_ProjectFileVersion>15.0.28307.799</_ProjectFileVersion>
  31. </PropertyGroup>
  32. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  33. <OutDir>$(SolutionDir)$(Configuration)\</OutDir>
  34. <IntDir>$(Configuration)\$(ProjectName)\</IntDir>
  35. <LinkIncremental>false</LinkIncremental>
  36. </PropertyGroup>
  37. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  38. <ClCompile>
  39. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  40. <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
  41. <PrecompiledHeader />
  42. <WarningLevel>Level4</WarningLevel>
  43. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  44. <DisableSpecificWarnings>4100;4200</DisableSpecificWarnings>
  45. <MinimalRebuild>
  46. </MinimalRebuild>
  47. </ClCompile>
  48. <Link>
  49. <GenerateDebugInformation>true</GenerateDebugInformation>
  50. <SubSystem>Console</SubSystem>
  51. <OptimizeReferences>true</OptimizeReferences>
  52. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  53. <TargetMachine>MachineX86</TargetMachine>
  54. </Link>
  55. </ItemDefinitionGroup>
  56. <ItemGroup>
  57. <ClCompile Include="..\..\scripts\bin2coff.c" />
  58. </ItemGroup>
  59. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  60. <ImportGroup Label="ExtensionTargets">
  61. </ImportGroup>
  62. </Project>