Added visual studio 2010 solution and project files.
This commit is contained in:
146
vs2010/uhub.vcxproj
Normal file
146
vs2010/uhub.vcxproj
Normal file
@@ -0,0 +1,146 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{98D8BFE9-DACD-40E1-B7BE-C9079ABF832E}</ProjectGuid>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<RootNamespace>uhub</RootNamespace>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
<IncludePath>$(SolutionDir)..\src;$(IncludePath)</IncludePath>
|
||||
<LibraryPath>$(SolutionDir)\$(Configuration);$(LibraryPath)</LibraryPath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(projectDir)..\src\</AdditionalIncludeDirectories>
|
||||
<MultiProcessorCompilation>true</MultiProcessorCompilation>
|
||||
<MinimalRebuild>false</MinimalRebuild>
|
||||
<CompileAsManaged>false</CompileAsManaged>
|
||||
<CompileAs>CompileAsC</CompileAs>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<AdditionalDependencies>kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies);ws2_32.lib;uhub_utils.lib</AdditionalDependencies>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PrecompiledHeader>Use</PrecompiledHeader>
|
||||
<Optimization>MaxSpeed</Optimization>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\src\adc\message.c" />
|
||||
<ClCompile Include="..\src\adc\sid.c" />
|
||||
<ClCompile Include="..\src\core\auth.c" />
|
||||
<ClCompile Include="..\src\core\commands.c" />
|
||||
<ClCompile Include="..\src\core\config.c" />
|
||||
<ClCompile Include="..\src\core\eventqueue.c" />
|
||||
<ClCompile Include="..\src\core\hub.c" />
|
||||
<ClCompile Include="..\src\core\hubevent.c" />
|
||||
<ClCompile Include="..\src\core\hubio.c" />
|
||||
<ClCompile Include="..\src\core\inf.c" />
|
||||
<ClCompile Include="..\src\core\main.c" />
|
||||
<ClCompile Include="..\src\core\netevent.c" />
|
||||
<ClCompile Include="..\src\core\plugininvoke.c" />
|
||||
<ClCompile Include="..\src\core\pluginloader.c" />
|
||||
<ClCompile Include="..\src\core\probe.c" />
|
||||
<ClCompile Include="..\src\core\route.c" />
|
||||
<ClCompile Include="..\src\core\user.c" />
|
||||
<ClCompile Include="..\src\core\usermanager.c" />
|
||||
<ClCompile Include="..\src\network\backend.c" />
|
||||
<ClCompile Include="..\src\network\connection.c" />
|
||||
<ClCompile Include="..\src\network\epoll.c" />
|
||||
<ClCompile Include="..\src\network\kqueue.c" />
|
||||
<ClCompile Include="..\src\network\network.c" />
|
||||
<ClCompile Include="..\src\network\select.c" />
|
||||
<ClCompile Include="..\src\network\timeout.c" />
|
||||
<ClCompile Include="..\src\network\timer.c" />
|
||||
<ClCompile Include="..\src\network\winsock.c" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\src\adc\adcconst.h" />
|
||||
<ClInclude Include="..\src\adc\message.h" />
|
||||
<ClInclude Include="..\src\adc\sid.h" />
|
||||
<ClInclude Include="..\src\core\auth.h" />
|
||||
<ClInclude Include="..\src\core\commands.h" />
|
||||
<ClInclude Include="..\src\core\config.h" />
|
||||
<ClInclude Include="..\src\core\eventid.h" />
|
||||
<ClInclude Include="..\src\core\eventqueue.h" />
|
||||
<ClInclude Include="..\src\core\gen_config.h" />
|
||||
<ClInclude Include="..\src\core\hub.h" />
|
||||
<ClInclude Include="..\src\core\hubevent.h" />
|
||||
<ClInclude Include="..\src\core\hubio.h" />
|
||||
<ClInclude Include="..\src\core\inf.h" />
|
||||
<ClInclude Include="..\src\core\netevent.h" />
|
||||
<ClInclude Include="..\src\core\plugininvoke.h" />
|
||||
<ClInclude Include="..\src\core\pluginloader.h" />
|
||||
<ClInclude Include="..\src\core\probe.h" />
|
||||
<ClInclude Include="..\src\core\route.h" />
|
||||
<ClInclude Include="..\src\core\user.h" />
|
||||
<ClInclude Include="..\src\core\usermanager.h" />
|
||||
<ClInclude Include="..\src\network\backend.h" />
|
||||
<ClInclude Include="..\src\network\common.h" />
|
||||
<ClInclude Include="..\src\network\connection.h" />
|
||||
<ClInclude Include="..\src\network\network.h" />
|
||||
<ClInclude Include="..\src\network\timeout.h" />
|
||||
<ClInclude Include="..\src\plugin_api\handle.h" />
|
||||
<ClInclude Include="..\src\system.h" />
|
||||
<ClInclude Include="..\src\uhub.h" />
|
||||
<ClInclude Include="..\version.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user