nvmmerge.vcxproj 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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="Release|Win32">
  5. <Configuration>Release</Configuration>
  6. <Platform>Win32</Platform>
  7. </ProjectConfiguration>
  8. </ItemGroup>
  9. <PropertyGroup Label="Globals">
  10. <ProjectGuid>{F2ECE3A8-6FA5-4B7F-83EA-A6EDD794D2A8}</ProjectGuid>
  11. <Keyword>Win32Proj</Keyword>
  12. <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
  13. </PropertyGroup>
  14. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  16. <ConfigurationType>Application</ConfigurationType>
  17. <CharacterSet>MultiByte</CharacterSet>
  18. <PlatformToolset>v140</PlatformToolset>
  19. <WholeProgramOptimization>true</WholeProgramOptimization>
  20. </PropertyGroup>
  21. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  22. <ImportGroup Label="ExtensionSettings">
  23. </ImportGroup>
  24. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  25. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  26. </ImportGroup>
  27. <PropertyGroup Label="UserMacros" />
  28. <PropertyGroup>
  29. <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
  30. <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)\Programs\</OutDir>
  31. <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(ProjectDir)\Objects\</IntDir>
  32. <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
  33. <EmbedManifest Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</EmbedManifest>
  34. <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</GenerateManifest>
  35. </PropertyGroup>
  36. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  37. <ClCompile>
  38. <AdditionalIncludeDirectories>..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  39. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;MAKEFILE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  40. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  41. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  42. <WarningLevel>Level3</WarningLevel>
  43. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  44. <CompileAs>CompileAsC</CompileAs>
  45. <DisableSpecificWarnings>4996</DisableSpecificWarnings>
  46. <StringPooling>true</StringPooling>
  47. <MinimalRebuild>false</MinimalRebuild>
  48. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  49. <FunctionLevelLinking>false</FunctionLevelLinking>
  50. </ClCompile>
  51. <Link>
  52. <OutputFile>$(OutDir)nvmmerge.exe</OutputFile>
  53. <GenerateDebugInformation>false</GenerateDebugInformation>
  54. <SubSystem>Console</SubSystem>
  55. <OptimizeReferences>true</OptimizeReferences>
  56. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  57. <TargetMachine>MachineX86</TargetMachine>
  58. <AdditionalLibraryDirectories>..\library;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  59. <LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
  60. </Link>
  61. </ItemDefinitionGroup>
  62. <ItemGroup>
  63. <ClCompile Include="..\..\nvm\nvmmerge.c" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <ClInclude Include="..\..\tools\error.h" />
  67. <ClInclude Include="..\..\tools\getoptv.h" />
  68. <ClInclude Include="..\..\nvm\nvm.h" />
  69. <ClInclude Include="..\..\tools\putoptv.h" />
  70. <ClInclude Include="..\..\tools\version.h" />
  71. </ItemGroup>
  72. <ItemGroup>
  73. <ProjectReference Include="..\lib_nvm\lib_nvm.vcxproj">
  74. <Project>{cdbe586e-5e50-46e3-97ad-5acfdea2c25b}</Project>
  75. </ProjectReference>
  76. <ProjectReference Include="..\lib_tools\lib_tools.vcxproj">
  77. <Project>{22861826-8a4c-463a-9d81-ca4caba4f703}</Project>
  78. </ProjectReference>
  79. </ItemGroup>
  80. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  81. <ImportGroup Label="ExtensionTargets">
  82. </ImportGroup>
  83. </Project>