1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" ToolsVersion="15.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="Debug|x64"> 9 <Configuration>Debug</Configuration> 10 <Platform>x64</Platform> 11 </ProjectConfiguration> 12 <ProjectConfiguration Include="Release|Win32"> 13 <Configuration>Release</Configuration> 14 <Platform>Win32</Platform> 15 </ProjectConfiguration> 16 <ProjectConfiguration Include="Release|x64"> 17 <Configuration>Release</Configuration> 18 <Platform>x64</Platform> 19 </ProjectConfiguration> 20 </ItemGroup> 21 <PropertyGroup Label="Globals"> 22 <ProjectGuid>{8638A3D8-D121-40BF-82E5-127F1B1B2CB2}</ProjectGuid> 23 <RootNamespace>endian_example</RootNamespace> 24 <Keyword>Win32Proj</Keyword> 25 <WindowsTargetPlatformVersion>10.0.15063.0</WindowsTargetPlatformVersion> 26 </PropertyGroup> 27 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 29 <ConfigurationType>Application</ConfigurationType> 30 <CharacterSet>Unicode</CharacterSet> 31 <WholeProgramOptimization>true</WholeProgramOptimization> 32 <PlatformToolset>v141</PlatformToolset> 33 </PropertyGroup> 34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 35 <ConfigurationType>Application</ConfigurationType> 36 <CharacterSet>Unicode</CharacterSet> 37 <WholeProgramOptimization>true</WholeProgramOptimization> 38 <PlatformToolset>v141</PlatformToolset> 39 </PropertyGroup> 40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 41 <ConfigurationType>Application</ConfigurationType> 42 <CharacterSet>Unicode</CharacterSet> 43 <PlatformToolset>v141</PlatformToolset> 44 </PropertyGroup> 45 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 46 <ConfigurationType>Application</ConfigurationType> 47 <CharacterSet>Unicode</CharacterSet> 48 <PlatformToolset>v141</PlatformToolset> 49 </PropertyGroup> 50 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 51 <ImportGroup Label="ExtensionSettings"> 52 </ImportGroup> 53 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets"> 54 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 55 <Import Project="..\common.props" /> 56 </ImportGroup> 57 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> 58 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 59 <Import Project="..\common.props" /> 60 </ImportGroup> 61 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets"> 62 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 63 <Import Project="..\common.props" /> 64 </ImportGroup> 65 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 66 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 67 <Import Project="..\common.props" /> 68 </ImportGroup> 69 <PropertyGroup Label="UserMacros" /> 70 <PropertyGroup> 71 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> 72 <OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(SolutionDir)$(Configuration)\</OutDir> 73 <IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Configuration)\</IntDir> 74 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> 75 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental> 76 <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(SolutionDir)$(Configuration)\</OutDir> 77 <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Configuration)\</IntDir> 78 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental> 79 <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental> 80 </PropertyGroup> 81 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 82 <ExecutablePath>..\..\..\..\..\stage\lib;$(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);</ExecutablePath> 83 </PropertyGroup> 84 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 85 <ExecutablePath>..\..\..\..\..\stage\lib;$(VC_ExecutablePath_x64);$(WindowsSDK_ExecutablePath);$(VS_ExecutablePath);$(MSBuild_ExecutablePath);$(SystemRoot)\SysWow64;$(FxCopDir);$(PATH);</ExecutablePath> 86 </PropertyGroup> 87 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 88 <ClCompile> 89 <Optimization>Disabled</Optimization> 90 <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 91 <MinimalRebuild>true</MinimalRebuild> 92 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> 93 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 94 <PrecompiledHeader> 95 </PrecompiledHeader> 96 <DebugInformationFormat>EditAndContinue</DebugInformationFormat> 97 <WarningLevel>Level3</WarningLevel> 98 </ClCompile> 99 <Link> 100 <GenerateDebugInformation>true</GenerateDebugInformation> 101 <SubSystem>Console</SubSystem> 102 <TargetMachine>MachineX86</TargetMachine> 103 </Link> 104 </ItemDefinitionGroup> 105 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 106 <ClCompile> 107 <Optimization>Disabled</Optimization> 108 <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 109 <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> 110 <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> 111 <PrecompiledHeader> 112 </PrecompiledHeader> 113 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 114 <WarningLevel>Level3</WarningLevel> 115 </ClCompile> 116 <Link> 117 <GenerateDebugInformation>true</GenerateDebugInformation> 118 <SubSystem>Console</SubSystem> 119 </Link> 120 </ItemDefinitionGroup> 121 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 122 <ClCompile> 123 <Optimization>MaxSpeed</Optimization> 124 <IntrinsicFunctions>true</IntrinsicFunctions> 125 <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 126 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 127 <FunctionLevelLinking>true</FunctionLevelLinking> 128 <PrecompiledHeader> 129 </PrecompiledHeader> 130 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 131 <WarningLevel>Level3</WarningLevel> 132 </ClCompile> 133 <Link> 134 <GenerateDebugInformation>true</GenerateDebugInformation> 135 <SubSystem>Console</SubSystem> 136 <OptimizeReferences>true</OptimizeReferences> 137 <EnableCOMDATFolding>true</EnableCOMDATFolding> 138 <TargetMachine>MachineX86</TargetMachine> 139 </Link> 140 </ItemDefinitionGroup> 141 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 142 <ClCompile> 143 <Optimization>MaxSpeed</Optimization> 144 <IntrinsicFunctions>true</IntrinsicFunctions> 145 <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> 146 <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> 147 <FunctionLevelLinking>true</FunctionLevelLinking> 148 <PrecompiledHeader> 149 </PrecompiledHeader> 150 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 151 <WarningLevel>Level3</WarningLevel> 152 </ClCompile> 153 <Link> 154 <GenerateDebugInformation>true</GenerateDebugInformation> 155 <SubSystem>Console</SubSystem> 156 <OptimizeReferences>true</OptimizeReferences> 157 <EnableCOMDATFolding>true</EnableCOMDATFolding> 158 </Link> 159 </ItemDefinitionGroup> 160 <ItemGroup> 161 <ClCompile Include="..\..\..\example\endian_example.cpp" /> 162 </ItemGroup> 163 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 164 <ImportGroup Label="ExtensionTargets"> 165 </ImportGroup> 166</Project>