native.vcxproj 5.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  17. <ItemGroup Label="ProjectConfigurations">
  18. <ProjectConfiguration Include="Release|x64">
  19. <Configuration>Release</Configuration>
  20. <Platform>x64</Platform>
  21. </ProjectConfiguration>
  22. </ItemGroup>
  23. <PropertyGroup Label="Globals">
  24. <ProjectGuid>{4C0C12D2-3CB0-47F8-BCD0-55BD5732DFA7}</ProjectGuid>
  25. <Keyword>Win32Proj</Keyword>
  26. <RootNamespace>native</RootNamespace>
  27. </PropertyGroup>
  28. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  29. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
  30. <ConfigurationType>DynamicLibrary</ConfigurationType>
  31. <UseDebugLibraries>false</UseDebugLibraries>
  32. <WholeProgramOptimization>true</WholeProgramOptimization>
  33. <CharacterSet>Unicode</CharacterSet>
  34. </PropertyGroup>
  35. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  36. <ImportGroup Label="ExtensionSettings">
  37. </ImportGroup>
  38. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
  39. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  40. </ImportGroup>
  41. <PropertyGroup Label="UserMacros" />
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  43. <LinkIncremental>false</LinkIncremental>
  44. <OutDir>..\..\..\target\bin\</OutDir>
  45. <IntDir>..\..\..\target\native\$(Configuration)\</IntDir>
  46. <TargetName>hadoop</TargetName>
  47. </PropertyGroup>
  48. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  49. <ClCompile>
  50. <WarningLevel>Level3</WarningLevel>
  51. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  52. <Optimization>MaxSpeed</Optimization>
  53. <FunctionLevelLinking>true</FunctionLevelLinking>
  54. <IntrinsicFunctions>true</IntrinsicFunctions>
  55. <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;NATIVE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  56. <AdditionalIncludeDirectories>..\winutils\include;..\..\..\target\native\javah;%JAVA_HOME%\include;%JAVA_HOME%\include\win32;.\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  57. <CompileAs>CompileAsC</CompileAs>
  58. <DisableSpecificWarnings>4244</DisableSpecificWarnings>
  59. </ClCompile>
  60. <Link>
  61. <SubSystem>Windows</SubSystem>
  62. <GenerateDebugInformation>true</GenerateDebugInformation>
  63. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  64. <OptimizeReferences>true</OptimizeReferences>
  65. <AdditionalDependencies>Ws2_32.lib;libwinutils.lib;%(AdditionalDependencies)</AdditionalDependencies>
  66. <AdditionalLibraryDirectories>..\..\..\target\bin;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  67. </Link>
  68. </ItemDefinitionGroup>
  69. <ItemGroup>
  70. <ClCompile Include="src\org\apache\hadoop\io\compress\lz4\lz4.c" />
  71. <ClCompile Include="src\org\apache\hadoop\io\compress\lz4\lz4hc.c" />
  72. <ClCompile Include="src\org\apache\hadoop\io\compress\lz4\Lz4Compressor.c" />
  73. <ClCompile Include="src\org\apache\hadoop\io\compress\lz4\Lz4Decompressor.c" />
  74. <ClCompile Include="src\org\apache\hadoop\io\nativeio\file_descriptor.c" />
  75. <ClCompile Include="src\org\apache\hadoop\io\nativeio\NativeIO.c" />
  76. <ClCompile Include="src\org\apache\hadoop\security\JniBasedUnixGroupsMappingWin.c" />
  77. <ClCompile Include="src\org\apache\hadoop\util\bulk_crc32.c" />
  78. <ClCompile Include="src\org\apache\hadoop\util\NativeCodeLoader.c" />
  79. <ClCompile Include="src\org\apache\hadoop\util\NativeCrc32.c" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <ClInclude Include="..\src\org\apache\hadoop\util\crc32c_tables.h" />
  83. <ClInclude Include="..\src\org\apache\hadoop\util\crc32_zlib_polynomial_tables.h" />
  84. <ClInclude Include="src\org\apache\hadoop\io\nativeio\file_descriptor.h" />
  85. <ClInclude Include="src\org\apache\hadoop\util\bulk_crc32.h" />
  86. <ClInclude Include="src\org\apache\hadoop\util\crc32c_tables.h" />
  87. <ClInclude Include="src\org\apache\hadoop\util\crc32_zlib_polynomial_tables.h" />
  88. <ClInclude Include="src\org_apache_hadoop.h" />
  89. </ItemGroup>
  90. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  91. <ImportGroup Label="ExtensionTargets">
  92. </ImportGroup>
  93. </Project>