getopt_2015.vcxproj 3.3 KB

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