efeu.vcxproj 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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="Release|Win32">
  5. <Configuration>Release</Configuration>
  6. <Platform>Win32</Platform>
  7. </ProjectConfiguration>
  8. </ItemGroup>
  9. <PropertyGroup Label="Globals">
  10. <ProjectGuid>{A95C8E9F-B41F-43A6-B02F-A0EE471C92A3}</ProjectGuid>
  11. <Keyword>Win32Proj</Keyword>
  12. <WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
  13. </PropertyGroup>
  14. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
  16. <ConfigurationType>Application</ConfigurationType>
  17. <CharacterSet>MultiByte</CharacterSet>
  18. <PlatformToolset>v140</PlatformToolset>
  19. <WholeProgramOptimization>true</WholeProgramOptimization>
  20. </PropertyGroup>
  21. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  22. <ImportGroup Label="ExtensionSettings">
  23. </ImportGroup>
  24. <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
  25. <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
  26. </ImportGroup>
  27. <PropertyGroup Label="UserMacros" />
  28. <PropertyGroup>
  29. <_ProjectFileVersion>10.0.40219.1</_ProjectFileVersion>
  30. <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)\Programs\</OutDir>
  31. <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(ProjectDir)\Objects\</IntDir>
  32. <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
  33. <GenerateManifest Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</GenerateManifest>
  34. </PropertyGroup>
  35. <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
  36. <ClCompile>
  37. <AdditionalIncludeDirectories>..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  38. <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;MAKEFILE;WINPCAP;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  39. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  40. <PrecompiledHeader>NotUsing</PrecompiledHeader>
  41. <WarningLevel>Level3</WarningLevel>
  42. <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
  43. <CompileAs>CompileAsC</CompileAs>
  44. <DisableSpecificWarnings>4996</DisableSpecificWarnings>
  45. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  46. <FunctionLevelLinking>false</FunctionLevelLinking>
  47. </ClCompile>
  48. <Link>
  49. <AdditionalDependencies>ws2_32.lib;packet.lib;wpcap.lib;%(AdditionalDependencies)</AdditionalDependencies>
  50. <OutputFile>$(OutDir)efeu.exe</OutputFile>
  51. <AdditionalLibraryDirectories>..\library;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
  52. <GenerateDebugInformation>false</GenerateDebugInformation>
  53. <SubSystem>Console</SubSystem>
  54. <OptimizeReferences>true</OptimizeReferences>
  55. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  56. <TargetMachine>MachineX86</TargetMachine>
  57. <LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
  58. </Link>
  59. </ItemDefinitionGroup>
  60. <ItemGroup>
  61. <ClCompile Include="..\..\ether\efeu.c" />
  62. </ItemGroup>
  63. <ItemGroup>
  64. <ClInclude Include="..\..\ether\channel.h" />
  65. <ClInclude Include="..\..\tools\error.h" />
  66. <ClInclude Include="..\..\ether\ether.h" />
  67. <ClInclude Include="..\..\tools\getoptv.h" />
  68. <ClInclude Include="..\..\tools\putoptv.h" />
  69. <ClInclude Include="..\..\tools\version.h" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <ProjectReference Include="..\lib_ether\lib_ether.vcxproj">
  73. <Project>{bbd90b81-def0-436e-875d-4b2eae30817d}</Project>
  74. </ProjectReference>
  75. <ProjectReference Include="..\lib_tools\lib_tools.vcxproj">
  76. <Project>{22861826-8a4c-463a-9d81-ca4caba4f703}</Project>
  77. </ProjectReference>
  78. </ItemGroup>
  79. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  80. <ImportGroup Label="ExtensionTargets">
  81. </ImportGroup>
  82. </Project>