7 Star 18 Fork 12

Jack.arain / nginx-win32

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nginx.vcxproj 11.12 KB
一键复制 编辑 原始数据 按行查看 历史
Jack.arain 提交于 2013-08-08 22:36 . add vc2012 project for nginx.
<?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>{A2D2E6FA-5387-4AD6-B5CB-8B3FF7CCF125}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>nginx</RootNamespace>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v110</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v110</PlatformToolset>
<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>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>.;..;./src/core;./src/event;./src/event/modules;./src/os/win32;./src/http;./src/http/modules;./src/mail</AdditionalIncludeDirectories>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<DisableSpecificWarnings>4133</DisableSpecificWarnings>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>
</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>.;..;./src/core;./src/event;./src/event/modules;./src/os/win32;./src/http;./src/http/modules;./src/mail</AdditionalIncludeDirectories>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<DisableSpecificWarnings>4133</DisableSpecificWarnings>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<AdditionalDependencies>ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include=".\src\core\nginx.c" />
<ClCompile Include=".\src\core\ngx_array.c" />
<ClCompile Include=".\src\core\ngx_buf.c" />
<ClCompile Include=".\src\core\ngx_conf_file.c" />
<ClCompile Include=".\src\core\ngx_connection.c" />
<ClCompile Include=".\src\core\ngx_cpuinfo.c" />
<ClCompile Include=".\src\core\ngx_crc32.c" />
<ClCompile Include=".\src\core\ngx_crypt.c" />
<ClCompile Include=".\src\core\ngx_cycle.c" />
<ClCompile Include=".\src\core\ngx_file.c" />
<ClCompile Include=".\src\core\ngx_hash.c" />
<ClCompile Include=".\src\core\ngx_inet.c" />
<ClCompile Include=".\src\core\ngx_list.c" />
<ClCompile Include=".\src\core\ngx_log.c" />
<ClCompile Include=".\src\core\ngx_md5.c" />
<ClCompile Include=".\src\core\ngx_murmurhash.c" />
<ClCompile Include=".\src\core\ngx_open_file_cache.c" />
<ClCompile Include=".\src\core\ngx_output_chain.c" />
<ClCompile Include=".\src\core\ngx_palloc.c" />
<ClCompile Include=".\src\core\ngx_parse.c" />
<ClCompile Include=".\src\core\ngx_queue.c" />
<ClCompile Include=".\src\core\ngx_radix_tree.c" />
<ClCompile Include=".\src\core\ngx_rbtree.c" />
<ClCompile Include=".\src\core\ngx_resolver.c" />
<ClCompile Include=".\src\core\ngx_shmtx.c" />
<ClCompile Include=".\src\core\ngx_slab.c" />
<ClCompile Include=".\src\core\ngx_spinlock.c" />
<ClCompile Include=".\src\core\ngx_string.c" />
<ClCompile Include=".\src\core\ngx_times.c" />
<ClCompile Include=".\src\event\modules\ngx_iocp_module.c" />
<ClCompile Include=".\src\event\modules\ngx_win32_select_module.c" />
<ClCompile Include=".\src\event\ngx_event.c" />
<ClCompile Include=".\src\event\ngx_event_accept.c" />
<ClCompile Include=".\src\event\ngx_event_acceptex.c" />
<ClCompile Include=".\src\event\ngx_event_busy_lock.c" />
<ClCompile Include=".\src\event\ngx_event_connect.c" />
<ClCompile Include=".\src\event\ngx_event_pipe.c" />
<ClCompile Include=".\src\event\ngx_event_posted.c" />
<ClCompile Include=".\src\event\ngx_event_timer.c" />
<ClCompile Include=".\src\http\modules\ngx_http_access_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_auth_basic_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_autoindex_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_browser_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_charset_filter_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_chunked_filter_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_empty_gif_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_fastcgi_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_geo_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_headers_filter_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_index_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_limit_conn_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_limit_req_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_log_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_map_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_memcached_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_not_modified_filter_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_proxy_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_range_filter_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_referer_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_scgi_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_split_clients_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_ssi_filter_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_static_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_upstream_ip_hash_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_upstream_keepalive_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_upstream_least_conn_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_userid_filter_module.c" />
<ClCompile Include=".\src\http\modules\ngx_http_uwsgi_module.c" />
<ClCompile Include=".\src\http\ngx_http.c" />
<ClCompile Include=".\src\http\ngx_http_busy_lock.c" />
<ClCompile Include=".\src\http\ngx_http_copy_filter_module.c" />
<ClCompile Include=".\src\http\ngx_http_core_module.c" />
<ClCompile Include=".\src\http\ngx_http_file_cache.c" />
<ClCompile Include=".\src\http\ngx_http_header_filter_module.c" />
<ClCompile Include=".\src\http\ngx_http_parse.c" />
<ClCompile Include=".\src\http\ngx_http_parse_time.c" />
<ClCompile Include=".\src\http\ngx_http_postpone_filter_module.c" />
<ClCompile Include=".\src\http\ngx_http_request.c" />
<ClCompile Include=".\src\http\ngx_http_request_body.c" />
<ClCompile Include=".\src\http\ngx_http_script.c" />
<ClCompile Include=".\src\http\ngx_http_special_response.c" />
<ClCompile Include=".\src\http\ngx_http_upstream.c" />
<ClCompile Include=".\src\http\ngx_http_upstream_round_robin.c" />
<ClCompile Include=".\src\http\ngx_http_variables.c" />
<ClCompile Include=".\src\http\ngx_http_write_filter_module.c" />
<ClCompile Include=".\src\os\win32\ngx_alloc.c" />
<ClCompile Include=".\src\os\win32\ngx_errno.c" />
<ClCompile Include=".\src\os\win32\ngx_event_log.c" />
<ClCompile Include=".\src\os\win32\ngx_files.c" />
<ClCompile Include=".\src\os\win32\ngx_modules.c" />
<ClCompile Include=".\src\os\win32\ngx_process.c" />
<ClCompile Include=".\src\os\win32\ngx_process_cycle.c" />
<ClCompile Include=".\src\os\win32\ngx_shmem.c" />
<ClCompile Include=".\src\os\win32\ngx_socket.c" />
<ClCompile Include=".\src\os\win32\ngx_stat.c" />
<ClCompile Include=".\src\os\win32\ngx_thread.c" />
<ClCompile Include=".\src\os\win32\ngx_time.c" />
<ClCompile Include=".\src\os\win32\ngx_udp_wsarecv.c" />
<ClCompile Include=".\src\os\win32\ngx_user.c" />
<ClCompile Include=".\src\os\win32\ngx_win32_init.c" />
<ClCompile Include=".\src\os\win32\ngx_wsarecv.c" />
<ClCompile Include=".\src\os\win32\ngx_wsarecv_chain.c" />
<ClCompile Include=".\src\os\win32\ngx_wsasend.c" />
<ClCompile Include=".\src\os\win32\ngx_wsasend_chain.c" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include=".\src\os\win32\nginx.rc" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
C
1
https://gitee.com/jackarain/nginx-win32.git
git@gitee.com:jackarain/nginx-win32.git
jackarain
nginx-win32
nginx-win32
master

搜索帮助