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 <ProjectGuid>{58B93E94-7766-435E-93AE-42A2FB5D99B1}</ProjectGuid> 23 <Keyword>Win32Proj</Keyword> 24 <RootNamespace>ex_websocket</RootNamespace> 25 <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion> 26 </PropertyGroup> 27 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 29 <ConfigurationType>Application</ConfigurationType> 30 <UseDebugLibraries>true</UseDebugLibraries> 31 <CharacterSet>MultiByte</CharacterSet> 32 <PlatformToolset>v140</PlatformToolset> 33 </PropertyGroup> 34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 35 <ConfigurationType>Application</ConfigurationType> 36 <UseDebugLibraries>true</UseDebugLibraries> 37 <PlatformToolset>v140</PlatformToolset> 38 <CharacterSet>MultiByte</CharacterSet> 39 </PropertyGroup> 40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 41 <ConfigurationType>Application</ConfigurationType> 42 <UseDebugLibraries>false</UseDebugLibraries> 43 <WholeProgramOptimization>true</WholeProgramOptimization> 44 <CharacterSet>MultiByte</CharacterSet> 45 <PlatformToolset>v140</PlatformToolset> 46 </PropertyGroup> 47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 48 <ConfigurationType>Application</ConfigurationType> 49 <UseDebugLibraries>false</UseDebugLibraries> 50 <PlatformToolset>v140</PlatformToolset> 51 <WholeProgramOptimization>true</WholeProgramOptimization> 52 <CharacterSet>MultiByte</CharacterSet> 53 </PropertyGroup> 54 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 55 <ImportGroup Label="ExtensionSettings"> 56 </ImportGroup> 57 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 58 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 59 </ImportGroup> 60 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 61 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 62 </ImportGroup> 63 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 64 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 65 </ImportGroup> 66 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> 67 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 68 </ImportGroup> 69 <PropertyGroup Label="UserMacros" /> 70 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 71 <LinkIncremental>true</LinkIncremental> 72 <OutDir>$(SolutionDir)\$(Configuration)\$(Platform)\</OutDir> 73 </PropertyGroup> 74 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 75 <LinkIncremental>true</LinkIncremental> 76 <OutDir>$(SolutionDir)\$(Configuration)\$(Platform)\</OutDir> 77 </PropertyGroup> 78 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 79 <LinkIncremental>false</LinkIncremental> 80 <OutDir>$(SolutionDir)\$(Configuration)\$(Platform)\</OutDir> 81 </PropertyGroup> 82 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 83 <LinkIncremental>false</LinkIncremental> 84 <OutDir>$(SolutionDir)\$(Configuration)\$(Platform)\</OutDir> 85 </PropertyGroup> 86 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 87 <ClCompile> 88 <PrecompiledHeader> 89 </PrecompiledHeader> 90 <WarningLevel>Level3</WarningLevel> 91 <Optimization>Disabled</Optimization> 92 <PreprocessorDefinitions>USE_WEBSOCKET;WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> 93 <AdditionalIncludeDirectories>$(ProjectDir)..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 94 </ClCompile> 95 <Link> 96 <SubSystem>Console</SubSystem> 97 <GenerateDebugInformation>true</GenerateDebugInformation> 98 </Link> 99 </ItemDefinitionGroup> 100 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 101 <ClCompile> 102 <PrecompiledHeader> 103 </PrecompiledHeader> 104 <WarningLevel>Level3</WarningLevel> 105 <Optimization>Disabled</Optimization> 106 <PreprocessorDefinitions>USE_WEBSOCKET;WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> 107 <AdditionalIncludeDirectories>$(ProjectDir)..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 108 </ClCompile> 109 <Link> 110 <SubSystem>Console</SubSystem> 111 <GenerateDebugInformation>true</GenerateDebugInformation> 112 </Link> 113 </ItemDefinitionGroup> 114 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 115 <ClCompile> 116 <WarningLevel>Level3</WarningLevel> 117 <PrecompiledHeader> 118 </PrecompiledHeader> 119 <Optimization>MaxSpeed</Optimization> 120 <FunctionLevelLinking>true</FunctionLevelLinking> 121 <IntrinsicFunctions>true</IntrinsicFunctions> 122 <PreprocessorDefinitions>USE_WEBSOCKET;WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_DEPRECATE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> 123 <AdditionalIncludeDirectories>$(ProjectDir)..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 124 </ClCompile> 125 <Link> 126 <SubSystem>Console</SubSystem> 127 <GenerateDebugInformation>true</GenerateDebugInformation> 128 <EnableCOMDATFolding>true</EnableCOMDATFolding> 129 <OptimizeReferences>true</OptimizeReferences> 130 </Link> 131 </ItemDefinitionGroup> 132 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 133 <ClCompile> 134 <WarningLevel>Level3</WarningLevel> 135 <PrecompiledHeader> 136 </PrecompiledHeader> 137 <Optimization>MaxSpeed</Optimization> 138 <FunctionLevelLinking>true</FunctionLevelLinking> 139 <IntrinsicFunctions>true</IntrinsicFunctions> 140 <PreprocessorDefinitions>USE_WEBSOCKET;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 141 <AdditionalIncludeDirectories>$(ProjectDir)..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 142 </ClCompile> 143 <Link> 144 <SubSystem>Console</SubSystem> 145 <GenerateDebugInformation>true</GenerateDebugInformation> 146 <EnableCOMDATFolding>true</EnableCOMDATFolding> 147 <OptimizeReferences>true</OptimizeReferences> 148 </Link> 149 </ItemDefinitionGroup> 150 <ItemGroup> 151 <ClInclude Include="..\..\examples\websocket\WebSockCallbacks.h" /> 152 <ClInclude Include="..\..\include\civetweb.h" /> 153 </ItemGroup> 154 <ItemGroup> 155 <ClCompile Include="..\..\examples\websocket\WebSockCallbacks.c" /> 156 <ClCompile Include="..\..\src\civetweb.c" /> 157 <ClCompile Include="..\..\examples\websocket\websocket.c" /> 158 </ItemGroup> 159 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 160 <ImportGroup Label="ExtensionTargets"> 161 </ImportGroup> 162</Project>