libmicrohttpd2

HTTP server C library (MHD 2.x, alpha)
Log | Files | Refs | README | LICENSE

apps-build-settings.props (1569B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      3   <PropertyGroup Condition="'$(PlatformToolsetVersion)'&lt;'142'">
      4     <IncludePath>$(MhdSrc)include;$(IncludePath)</IncludePath>
      5   </PropertyGroup>
      6   <PropertyGroup Condition="'$(Configuration)'=='Debug-static'">
      7     <TargetName>$(ProjectName)_d</TargetName>
      8   </PropertyGroup>
      9   <PropertyGroup Condition="'$(Configuration)'=='Debug-dll'">
     10     <TargetName>$(ProjectName)-dll_d</TargetName>
     11   </PropertyGroup>
     12   <PropertyGroup Condition="'$(Configuration)'=='Release-static'">
     13     <TargetName>$(ProjectName)</TargetName>
     14   </PropertyGroup>
     15   <PropertyGroup Condition="'$(Configuration)'=='Release-dll'">
     16     <TargetName>$(ProjectName)-dll</TargetName>
     17   </PropertyGroup>
     18   <ItemDefinitionGroup>
     19     <ClCompile>
     20       <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
     21     </ClCompile>
     22     <Link>
     23       <SubSystem>Console</SubSystem>
     24     </Link>
     25     <ProjectReference />
     26   </ItemDefinitionGroup>
     27   <ItemDefinitionGroup>
     28     <ClCompile>
     29       <RuntimeLibrary Condition="'$(Configuration)'=='Debug-static'">MultiThreadedDebug</RuntimeLibrary>
     30       <RuntimeLibrary Condition="'$(Configuration)'=='Debug-dll'">MultiThreadedDebugDLL</RuntimeLibrary>
     31       <RuntimeLibrary Condition="'$(Configuration)'=='Release-static'">MultiThreaded</RuntimeLibrary>
     32       <RuntimeLibrary Condition="'$(Configuration)'=='Release-dll'">MultiThreadedDLL</RuntimeLibrary>
     33     </ClCompile>
     34   </ItemDefinitionGroup>
     35 </Project>