getopt_2017.vcxproj 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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|ARM">
  5. <Configuration>Debug</Configuration>
  6. <Platform>ARM</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Debug|ARM64">
  9. <Configuration>Debug</Configuration>
  10. <Platform>ARM64</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Debug|Win32">
  13. <Configuration>Debug</Configuration>
  14. <Platform>Win32</Platform>
  15. </ProjectConfiguration>
  16. <ProjectConfiguration Include="Debug|x64">
  17. <Configuration>Debug</Configuration>
  18. <Platform>x64</Platform>
  19. </ProjectConfiguration>
  20. <ProjectConfiguration Include="Release|ARM">
  21. <Configuration>Release</Configuration>
  22. <Platform>ARM</Platform>
  23. </ProjectConfiguration>
  24. <ProjectConfiguration Include="Release|ARM64">
  25. <Configuration>Release</Configuration>
  26. <Platform>ARM64</Platform>
  27. </ProjectConfiguration>
  28. <ProjectConfiguration Include="Release|Win32">
  29. <Configuration>Release</Configuration>
  30. <Platform>Win32</Platform>
  31. </ProjectConfiguration>
  32. <ProjectConfiguration Include="Release|x64">
  33. <Configuration>Release</Configuration>
  34. <Platform>x64</Platform>
  35. </ProjectConfiguration>
  36. </ItemGroup>
  37. <PropertyGroup Label="Globals">
  38. <ProjectName>getopt</ProjectName>
  39. <ProjectGuid>{AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}</ProjectGuid>
  40. <RootNamespace>getopt</RootNamespace>
  41. <WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
  42. <WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
  43. <WindowsTargetPlatformVersion Condition="'$(Platform)'=='ARM' Or '$(Platform)'=='ARM64'">10.0.17763.0</WindowsTargetPlatformVersion>
  44. </PropertyGroup>
  45. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  46. <PropertyGroup Label="Configuration">
  47. <ConfigurationType>StaticLibrary</ConfigurationType>
  48. <CharacterSet>Unicode</CharacterSet>
  49. <PlatformToolset>v141</PlatformToolset>
  50. <WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
  51. </PropertyGroup>
  52. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  53. <ImportGroup Label="ExtensionSettings">
  54. </ImportGroup>
  55. <ImportGroup Label="PropertySheets">
  56. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  57. </ImportGroup>
  58. <PropertyGroup Label="UserMacros" />
  59. <PropertyGroup>
  60. <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
  61. <IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\lib\$(ProjectName)\</IntDir>
  62. <OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\lib\</OutDir>
  63. </PropertyGroup>
  64. <ItemDefinitionGroup>
  65. <ClCompile>
  66. <AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
  67. <AdditionalIncludeDirectories>.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  68. <PreprocessorDefinitions>HAVE_STRING_H;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  69. <WarningLevel>Level3</WarningLevel>
  70. </ClCompile>
  71. <ClCompile Condition="'$(Configuration)'=='Debug'">
  72. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  73. <Optimization>Disabled</Optimization>
  74. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  75. </ClCompile>
  76. <ClCompile Condition="'$(Configuration)'=='Release'">
  77. <Optimization>MaxSpeed</Optimization>
  78. <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  79. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  80. </ClCompile>
  81. </ItemDefinitionGroup>
  82. <ItemGroup>
  83. <ClCompile Include=".\getopt\getopt.c" />
  84. <ClCompile Include=".\getopt\getopt1.c" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <ClInclude Include=".\getopt\getopt.h" />
  88. </ItemGroup>
  89. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  90. <ImportGroup Label="ExtensionTargets">
  91. </ImportGroup>
  92. </Project>