| <?xml version="1.0" encoding="utf-8"?> |
| <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| <ItemGroup Label="ProjectConfigurations"> |
| <ProjectConfiguration Include="Debug-dll|Win32"> |
| <Configuration>Debug-dll</Configuration> |
| <Platform>Win32</Platform> |
| </ProjectConfiguration> |
| <ProjectConfiguration Include="Debug-dll|x64"> |
| <Configuration>Debug-dll</Configuration> |
| <Platform>x64</Platform> |
| </ProjectConfiguration> |
| <ProjectConfiguration Include="Debug-static|Win32"> |
| <Configuration>Debug-static</Configuration> |
| <Platform>Win32</Platform> |
| </ProjectConfiguration> |
| <ProjectConfiguration Include="Debug-static|x64"> |
| <Configuration>Debug-static</Configuration> |
| <Platform>x64</Platform> |
| </ProjectConfiguration> |
| <ProjectConfiguration Include="Release-dll|Win32"> |
| <Configuration>Release-dll</Configuration> |
| <Platform>Win32</Platform> |
| </ProjectConfiguration> |
| <ProjectConfiguration Include="Release-dll|x64"> |
| <Configuration>Release-dll</Configuration> |
| <Platform>x64</Platform> |
| </ProjectConfiguration> |
| <ProjectConfiguration Include="Release-static|Win32"> |
| <Configuration>Release-static</Configuration> |
| <Platform>Win32</Platform> |
| </ProjectConfiguration> |
| <ProjectConfiguration Include="Release-static|x64"> |
| <Configuration>Release-static</Configuration> |
| <Platform>x64</Platform> |
| </ProjectConfiguration> |
| </ItemGroup> |
| <ItemGroup> |
| <ClCompile Include="..\..\doc\examples\hellobrowser.c" /> |
| </ItemGroup> |
| <PropertyGroup Label="Globals"> |
| <ProjectGuid>{310F39BD-A2D6-44FF-8344-37ADD0524CBD}</ProjectGuid> |
| <Keyword>Win32Proj</Keyword> |
| <RootNamespace>hellobrowser</RootNamespace> |
| </PropertyGroup> |
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
| <PropertyGroup Condition="'$(Configuration)'=='Debug-static'" Label="Configuration"> |
| <ConfigurationType>Application</ConfigurationType> |
| <UseDebugLibraries>true</UseDebugLibraries> |
| <PlatformToolset>v120</PlatformToolset> |
| <CharacterSet>Unicode</CharacterSet> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(Configuration)'=='Debug-dll'" Label="Configuration"> |
| <ConfigurationType>Application</ConfigurationType> |
| <UseDebugLibraries>true</UseDebugLibraries> |
| <PlatformToolset>v120</PlatformToolset> |
| <CharacterSet>Unicode</CharacterSet> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(Configuration)'=='Release-static'" Label="Configuration"> |
| <ConfigurationType>Application</ConfigurationType> |
| <UseDebugLibraries>false</UseDebugLibraries> |
| <PlatformToolset>v120</PlatformToolset> |
| <WholeProgramOptimization>true</WholeProgramOptimization> |
| <CharacterSet>Unicode</CharacterSet> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(Configuration)'=='Release-dll'" Label="Configuration"> |
| <ConfigurationType>Application</ConfigurationType> |
| <UseDebugLibraries>false</UseDebugLibraries> |
| <PlatformToolset>v120</PlatformToolset> |
| <WholeProgramOptimization>true</WholeProgramOptimization> |
| <CharacterSet>Unicode</CharacterSet> |
| </PropertyGroup> |
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
| <ImportGroup Label="ExtensionSettings"> |
| </ImportGroup> |
| <ImportGroup Label="PropertySheets"> |
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
| </ImportGroup> |
| <PropertyGroup Label="UserMacros" /> |
| <PropertyGroup> |
| <IncludePath>$(SolutionDir)..\..\src\include;$(SolutionDir);$(IncludePath)</IncludePath> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(Platform)'=='Win32'"> |
| <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</IntDir> |
| <OutDir>$(SolutionDir)\Output\</OutDir> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(Platform)'=='x64'"> |
| <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\$(Platform)\</IntDir> |
| <OutDir>$(SolutionDir)\Output\$(Platform)\</OutDir> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(UseDebugLibraries)'=='true'"> |
| <LinkIncremental>true</LinkIncremental> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(UseDebugLibraries)'!='true'"> |
| <LinkIncremental>false</LinkIncremental> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(Configuration)'=='Debug-static'"> |
| <TargetName>$(ProjectName)_d</TargetName> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(Configuration)'=='Debug-dll'"> |
| <TargetName>$(ProjectName)-dll_d</TargetName> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(Configuration)'=='Release-static'"> |
| <TargetName>$(ProjectName)</TargetName> |
| </PropertyGroup> |
| <PropertyGroup Condition="'$(Configuration)'=='Release-dll'"> |
| <TargetName>$(ProjectName)-dll</TargetName> |
| </PropertyGroup> |
| <ItemDefinitionGroup> |
| <ClCompile> |
| <PrecompiledHeader>NotUsing</PrecompiledHeader> |
| <WarningLevel>Level3</WarningLevel> |
| <PreprocessorDefinitions>WIN32;_CONSOLE;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| </ClCompile> |
| <Link> |
| <SubSystem>Console</SubSystem> |
| <GenerateDebugInformation>true</GenerateDebugInformation> |
| <AdditionalLibraryDirectories>$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> |
| </Link> |
| <ProjectReference /> |
| </ItemDefinitionGroup> |
| <ItemDefinitionGroup Condition="'$(UseDebugLibraries)'=='true'"> |
| <ClCompile> |
| <Optimization>Disabled</Optimization> |
| <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| </ClCompile> |
| <ProjectReference /> |
| </ItemDefinitionGroup> |
| <ItemDefinitionGroup Condition="'$(UseDebugLibraries)'!='true'"> |
| <ClCompile> |
| <Optimization>MaxSpeed</Optimization> |
| <FunctionLevelLinking>true</FunctionLevelLinking> |
| <IntrinsicFunctions>true</IntrinsicFunctions> |
| <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| </ClCompile> |
| <Link> |
| <EnableCOMDATFolding>true</EnableCOMDATFolding> |
| <OptimizeReferences>true</OptimizeReferences> |
| </Link> |
| <ProjectReference /> |
| </ItemDefinitionGroup> |
| <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug-static'"> |
| <ClCompile> |
| <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
| </ClCompile> |
| <Link> |
| <AdditionalDependencies>libmicrohttpd_d.lib;%(AdditionalDependencies)</AdditionalDependencies> |
| </Link> |
| <ProjectReference /> |
| </ItemDefinitionGroup> |
| <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug-dll'"> |
| <ClCompile> |
| <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> |
| </ClCompile> |
| <Link> |
| <AdditionalDependencies>libmicrohttpd-dll_d.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies> |
| </Link> |
| <ProjectReference /> |
| </ItemDefinitionGroup> |
| <ItemDefinitionGroup Condition="'$(Configuration)'=='Release-static'"> |
| <ClCompile> |
| <RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
| </ClCompile> |
| <Link> |
| <AdditionalDependencies>libmicrohttpd.lib;%(AdditionalDependencies)</AdditionalDependencies> |
| </Link> |
| </ItemDefinitionGroup> |
| <ItemDefinitionGroup Condition="'$(Configuration)'=='Release-dll'"> |
| <ClCompile> |
| <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> |
| </ClCompile> |
| <Link> |
| <AdditionalDependencies>libmicrohttpd-dll.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies> |
| </Link> |
| </ItemDefinitionGroup> |
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
| <ImportGroup Label="ExtensionTargets"> |
| </ImportGroup> |
| </Project> |