source: EcnlProtoTool/trunk/tools/zlib/zlib.vcxproj@ 445

Last change on this file since 445 was 445, checked in by coas-nagasima, 4 years ago

ROMファイルシステムのWebコンテンツをwwwフォルダ下に移動。
etcフォルダ追加。

  • Property svn:eol-style set to CRLF
  • Property svn:mime-type set to text/xml
File size: 4.7 KB
Line 
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="Release|Win32">
9 <Configuration>Release</Configuration>
10 <Platform>Win32</Platform>
11 </ProjectConfiguration>
12 </ItemGroup>
13 <PropertyGroup Label="Globals">
14 <ProjectGuid>{3FBC7619-AF55-4664-89F5-FE1D40BBB323}</ProjectGuid>
15 <Keyword>Win32Proj</Keyword>
16 <RootNamespace>zlib</RootNamespace>
17 <WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
18 </PropertyGroup>
19 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
20 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
21 <ConfigurationType>StaticLibrary</ConfigurationType>
22 <UseDebugLibraries>true</UseDebugLibraries>
23 <PlatformToolset>v142</PlatformToolset>
24 <CharacterSet>Unicode</CharacterSet>
25 </PropertyGroup>
26 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
27 <ConfigurationType>StaticLibrary</ConfigurationType>
28 <UseDebugLibraries>false</UseDebugLibraries>
29 <PlatformToolset>v142</PlatformToolset>
30 <WholeProgramOptimization>true</WholeProgramOptimization>
31 <CharacterSet>Unicode</CharacterSet>
32 </PropertyGroup>
33 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
34 <ImportGroup Label="ExtensionSettings">
35 </ImportGroup>
36 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
37 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
38 </ImportGroup>
39 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
40 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
41 </ImportGroup>
42 <PropertyGroup Label="UserMacros" />
43 <PropertyGroup />
44 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
45 <ClCompile>
46 <PrecompiledHeader>
47 </PrecompiledHeader>
48 <WarningLevel>Level3</WarningLevel>
49 <Optimization>Disabled</Optimization>
50 <PreprocessorDefinitions>DYNAMIC_CRC_TABLE;_LIB;WIN32;_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
51 <SDLCheck>true</SDLCheck>
52 </ClCompile>
53 <Link>
54 <SubSystem>Windows</SubSystem>
55 <GenerateDebugInformation>true</GenerateDebugInformation>
56 </Link>
57 </ItemDefinitionGroup>
58 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
59 <ClCompile>
60 <WarningLevel>Level3</WarningLevel>
61 <PrecompiledHeader>
62 </PrecompiledHeader>
63 <Optimization>MaxSpeed</Optimization>
64 <FunctionLevelLinking>true</FunctionLevelLinking>
65 <IntrinsicFunctions>true</IntrinsicFunctions>
66 <PreprocessorDefinitions>DYNAMIC_CRC_TABLE;_LIB;WIN32;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
67 <SDLCheck>true</SDLCheck>
68 </ClCompile>
69 <Link>
70 <SubSystem>Windows</SubSystem>
71 <GenerateDebugInformation>true</GenerateDebugInformation>
72 <EnableCOMDATFolding>true</EnableCOMDATFolding>
73 <OptimizeReferences>true</OptimizeReferences>
74 </Link>
75 </ItemDefinitionGroup>
76 <ItemGroup>
77 <Text Include="ReadMe.txt" />
78 </ItemGroup>
79 <ItemGroup>
80 <ClCompile Include="adler32.c" />
81 <ClCompile Include="compress.c" />
82 <ClCompile Include="crc32.c" />
83 <ClCompile Include="deflate.c" />
84 <ClCompile Include="infback.c" />
85 <ClCompile Include="inffast.c" />
86 <ClCompile Include="inflate.c" />
87 <ClCompile Include="inftrees.c" />
88 <ClCompile Include="trees.c" />
89 <ClCompile Include="uncompr.c" />
90 <ClCompile Include="zutil.c" />
91 </ItemGroup>
92 <ItemGroup>
93 <ClInclude Include="crc32.h" />
94 <ClInclude Include="deflate.h" />
95 <ClInclude Include="inffast.h" />
96 <ClInclude Include="inffixed.h" />
97 <ClInclude Include="inflate.h" />
98 <ClInclude Include="inftrees.h" />
99 <ClInclude Include="trees.h" />
100 <ClInclude Include="zconf.h" />
101 <ClInclude Include="zlib.h" />
102 <ClInclude Include="zutil.h" />
103 </ItemGroup>
104 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
105 <ImportGroup Label="ExtensionTargets">
106 </ImportGroup>
107</Project>
Note: See TracBrowser for help on using the repository browser.