libmdnssvc.vcxproj 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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="Release|Win32">
  9. <Configuration>Release</Configuration>
  10. <Platform>Win32</Platform>
  11. </ProjectConfiguration>
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ClCompile Include="mdns.c" />
  15. <ClCompile Include="mdnsd.c" />
  16. </ItemGroup>
  17. <PropertyGroup Label="Globals">
  18. <VCProjectVersion>16.0</VCProjectVersion>
  19. <Keyword>Win32Proj</Keyword>
  20. <ProjectGuid>{4CB44756-1759-4CC2-B979-BE4E045AB140}</ProjectGuid>
  21. <RootNamespace>tinysvcmdns</RootNamespace>
  22. <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
  23. </PropertyGroup>
  24. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
  25. <ConfigurationType>StaticLibrary</ConfigurationType>
  26. <UseDebugLibraries>true</UseDebugLibraries>
  27. <PlatformToolset>v143</PlatformToolset>
  28. <CharacterSet>Unicode</CharacterSet>
  29. </PropertyGroup>
  30. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  31. <ConfigurationType>StaticLibrary</ConfigurationType>
  32. <UseDebugLibraries>false</UseDebugLibraries>
  33. <PlatformToolset>v143</PlatformToolset>
  34. <CharacterSet>Unicode</CharacterSet>
  35. </PropertyGroup>
  36. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  37. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  38. <PropertyGroup Label="Configuration">
  39. <OutDir>$(SolutionDir)\lib\win32\$(PlatformTarget)\</OutDir>
  40. <IntDir>$(SolutionDir)\build\Win32-$(ProjectName)\$(Platform)\$(Configuration)\</IntDir>
  41. <TargetName>$(ProjectName)-$(Configuration)</TargetName>
  42. </PropertyGroup>
  43. <ImportGroup Label="ExtensionSettings">
  44. </ImportGroup>
  45. <ImportGroup Label="Shared">
  46. </ImportGroup>
  47. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  48. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  49. </ImportGroup>
  50. <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  51. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  52. </ImportGroup>
  53. <PropertyGroup Label="UserMacros" />
  54. <ItemDefinitionGroup>
  55. <ClCompile>
  56. <WarningLevel>Level3</WarningLevel>
  57. <SDLCheck>true</SDLCheck>
  58. <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_WINSOCK_DEPRECATED_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;WIN32;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  59. <ConformanceMode>true</ConformanceMode>
  60. <DisableSpecificWarnings>4267;4244</DisableSpecificWarnings>
  61. </ClCompile>
  62. </ItemDefinitionGroup>
  63. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
  64. <ClCompile>
  65. <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  66. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  67. </ClCompile>
  68. </ItemDefinitionGroup>
  69. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  70. <ClCompile>
  71. <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  72. </ClCompile>
  73. </ItemDefinitionGroup>
  74. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  75. <ImportGroup Label="ExtensionTargets">
  76. </ImportGroup>
  77. </Project>