climdnssvc.vcxproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" 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="Sample|Win32">
  9. <Configuration>Sample</Configuration>
  10. <Platform>Win32</Platform>
  11. </ProjectConfiguration>
  12. <ProjectConfiguration Include="Release|Win32">
  13. <Configuration>Release</Configuration>
  14. <Platform>Win32</Platform>
  15. </ProjectConfiguration>
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ClCompile Include="climdnssvc.c" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <Library Include="lib\win32\x86\libmdnssvc-$(Configuration).lib" />
  22. </ItemGroup>
  23. <PropertyGroup Label="Globals">
  24. <VCProjectVersion>16.0</VCProjectVersion>
  25. <Keyword>Win32Proj</Keyword>
  26. <ProjectGuid>{8F0D9E3E-E6EC-4086-8334-8F6436852561}</ProjectGuid>
  27. <RootNamespace>tinysvcmdns</RootNamespace>
  28. <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
  29. </PropertyGroup>
  30. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  31. <ConfigurationType>Application</ConfigurationType>
  32. <UseDebugLibraries>true</UseDebugLibraries>
  33. <PlatformToolset>v143</PlatformToolset>
  34. <CharacterSet>Unicode</CharacterSet>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  37. <ConfigurationType>Application</ConfigurationType>
  38. <UseDebugLibraries>false</UseDebugLibraries>
  39. <PlatformToolset>v143</PlatformToolset>
  40. <CharacterSet>Unicode</CharacterSet>
  41. </PropertyGroup>
  42. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  43. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  44. <PropertyGroup>
  45. <OutDir>bin\</OutDir>
  46. <IntDir>$(SolutionDir)\build\Win32-$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
  47. </PropertyGroup>
  48. <ImportGroup Label="ExtensionSettings">
  49. </ImportGroup>
  50. <ImportGroup Label="Shared">
  51. </ImportGroup>
  52. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  53. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  54. </ImportGroup>
  55. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  56. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  57. </ImportGroup>
  58. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Sample|Win32'" Label="PropertySheets">
  59. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  60. </ImportGroup>
  61. <PropertyGroup Label="UserMacros" />
  62. <ItemDefinitionGroup>
  63. <ClCompile>
  64. <WarningLevel>Level3</WarningLevel>
  65. <SDLCheck>true</SDLCheck>
  66. <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_WINSOCK_DEPRECATED_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  67. <ConformanceMode>true</ConformanceMode>
  68. <DisableSpecificWarnings>4267;4244</DisableSpecificWarnings>
  69. </ClCompile>
  70. <Link>
  71. <AdditionalDependencies>wsock32.lib;$(CoreLibraryDependencies);%(AdditionalDependencies)</AdditionalDependencies>
  72. </Link>
  73. </ItemDefinitionGroup>
  74. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  75. <ClCompile>
  76. <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  77. </ClCompile>
  78. </ItemDefinitionGroup>
  79. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  80. <ClCompile>
  81. <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  82. </ClCompile>
  83. </ItemDefinitionGroup>
  84. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Sample|Win32'">
  85. <ClCompile>
  86. <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  87. </ClCompile>
  88. <Link>
  89. <SubSystem>Console</SubSystem>
  90. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  91. <OptimizeReferences>true</OptimizeReferences>
  92. <GenerateDebugInformation>false</GenerateDebugInformation>
  93. <AdditionalDependencies>wsock32.lib;$(CoreLibraryDependencies);%(AdditionalDependencies)</AdditionalDependencies>
  94. </Link>
  95. </ItemDefinitionGroup>
  96. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  97. <ImportGroup Label="ExtensionTargets">
  98. </ImportGroup>
  99. </Project>