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>{27E15292-4A8D-4BA0-8D9B-5D1ECFF85747}</ProjectGuid> 23 <Keyword>Win32Proj</Keyword> 24 <RootNamespace>OGLSimpleCube</RootNamespace> 25 <WindowsTargetPlatformVersion>10.0.16299.0</WindowsTargetPlatformVersion> 26 </PropertyGroup> 27 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 29 <ConfigurationType>Application</ConfigurationType> 30 <UseDebugLibraries>true</UseDebugLibraries> 31 <PlatformToolset>v141</PlatformToolset> 32 <CharacterSet>Unicode</CharacterSet> 33 </PropertyGroup> 34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 35 <ConfigurationType>Application</ConfigurationType> 36 <UseDebugLibraries>true</UseDebugLibraries> 37 <PlatformToolset>v141</PlatformToolset> 38 <CharacterSet>Unicode</CharacterSet> 39 </PropertyGroup> 40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 41 <ConfigurationType>Application</ConfigurationType> 42 <UseDebugLibraries>false</UseDebugLibraries> 43 <PlatformToolset>v141</PlatformToolset> 44 <WholeProgramOptimization>true</WholeProgramOptimization> 45 <CharacterSet>Unicode</CharacterSet> 46 </PropertyGroup> 47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 48 <ConfigurationType>Application</ConfigurationType> 49 <UseDebugLibraries>false</UseDebugLibraries> 50 <PlatformToolset>v141</PlatformToolset> 51 <WholeProgramOptimization>true</WholeProgramOptimization> 52 <CharacterSet>Unicode</CharacterSet> 53 </PropertyGroup> 54 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 55 <ImportGroup Label="ExtensionSettings"> 56 </ImportGroup> 57 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 58 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 59 </ImportGroup> 60 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets"> 61 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 62 </ImportGroup> 63 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 64 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 65 </ImportGroup> 66 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets"> 67 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 68 </ImportGroup> 69 <PropertyGroup Label="UserMacros" /> 70 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 71 <LinkIncremental>true</LinkIncremental> 72 <OutDir>$(SolutionDir)bin\$(MSBuildProjectName)\$(Platform)\$(Configuration)\</OutDir> 73 <IntDir>$(SolutionDir)obj\$(MSBuildProjectName)\$(Platform)\$(Configuration)\</IntDir> 74 </PropertyGroup> 75 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 76 <LinkIncremental>true</LinkIncremental> 77 <OutDir>$(SolutionDir)bin\$(MSBuildProjectName)\$(Platform)\$(Configuration)\</OutDir> 78 <IntDir>$(SolutionDir)obj\$(MSBuildProjectName)\$(Platform)\$(Configuration)\</IntDir> 79 </PropertyGroup> 80 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 81 <LinkIncremental>false</LinkIncremental> 82 <OutDir>$(SolutionDir)bin\$(MSBuildProjectName)\$(Platform)\$(Configuration)\</OutDir> 83 <IntDir>$(SolutionDir)obj\$(MSBuildProjectName)\$(Platform)\$(Configuration)\</IntDir> 84 </PropertyGroup> 85 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 86 <LinkIncremental>false</LinkIncremental> 87 <OutDir>$(SolutionDir)bin\$(MSBuildProjectName)\$(Platform)\$(Configuration)\</OutDir> 88 <IntDir>$(SolutionDir)obj\$(MSBuildProjectName)\$(Platform)\$(Configuration)\</IntDir> 89 </PropertyGroup> 90 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 91 <ClCompile> 92 <PrecompiledHeader>NotUsing</PrecompiledHeader> 93 <WarningLevel>Level3</WarningLevel> 94 <Optimization>Disabled</Optimization> 95 <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> 96 <SDLCheck>true</SDLCheck> 97 </ClCompile> 98 <Link> 99 <SubSystem>Windows</SubSystem> 100 <GenerateDebugInformation>true</GenerateDebugInformation> 101 <AdditionalLibraryDirectories> 102 </AdditionalLibraryDirectories> 103 <AdditionalDependencies>%(AdditionalDependencies);opengl32.lib</AdditionalDependencies> 104 </Link> 105 <PostBuildEvent> 106 <Command>XCOPY /Y "$(SolutionDir)lib\$(Configuration)_$(Platform)\opengl32.dll" "$(SolutionDir)src\$(Configuration)\$(Platform)\" /Q /E /I</Command> 107 </PostBuildEvent> 108 </ItemDefinitionGroup> 109 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> 110 <ClCompile> 111 <PrecompiledHeader>NotUsing</PrecompiledHeader> 112 <WarningLevel>Level3</WarningLevel> 113 <Optimization>Disabled</Optimization> 114 <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> 115 <SDLCheck>true</SDLCheck> 116 </ClCompile> 117 <Link> 118 <SubSystem>Windows</SubSystem> 119 <GenerateDebugInformation>true</GenerateDebugInformation> 120 <AdditionalLibraryDirectories> 121 </AdditionalLibraryDirectories> 122 <AdditionalDependencies>%(AdditionalDependencies);opengl32.lib</AdditionalDependencies> 123 </Link> 124 <PostBuildEvent> 125 <Command>XCOPY /Y "$(SolutionDir)lib\$(Configuration)_$(Platform)\opengl32.dll" "$(SolutionDir)src\$(Configuration)\$(Platform)\" /Q /E /I</Command> 126 </PostBuildEvent> 127 </ItemDefinitionGroup> 128 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 129 <ClCompile> 130 <WarningLevel>Level3</WarningLevel> 131 <PrecompiledHeader>NotUsing</PrecompiledHeader> 132 <Optimization>MaxSpeed</Optimization> 133 <FunctionLevelLinking>true</FunctionLevelLinking> 134 <IntrinsicFunctions>true</IntrinsicFunctions> 135 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> 136 <SDLCheck>true</SDLCheck> 137 </ClCompile> 138 <Link> 139 <SubSystem>Windows</SubSystem> 140 <GenerateDebugInformation>true</GenerateDebugInformation> 141 <EnableCOMDATFolding>true</EnableCOMDATFolding> 142 <OptimizeReferences>true</OptimizeReferences> 143 <AdditionalLibraryDirectories> 144 </AdditionalLibraryDirectories> 145 <AdditionalDependencies>%(AdditionalDependencies);opengl32.lib</AdditionalDependencies> 146 </Link> 147 <PostBuildEvent> 148 <Command>XCOPY /Y "$(SolutionDir)lib\$(Configuration)_$(Platform)\opengl32.dll" "$(SolutionDir)src\$(Configuration)\$(Platform)\" /Q /E /I</Command> 149 </PostBuildEvent> 150 </ItemDefinitionGroup> 151 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> 152 <ClCompile> 153 <WarningLevel>Level3</WarningLevel> 154 <PrecompiledHeader>NotUsing</PrecompiledHeader> 155 <Optimization>MaxSpeed</Optimization> 156 <FunctionLevelLinking>true</FunctionLevelLinking> 157 <IntrinsicFunctions>true</IntrinsicFunctions> 158 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions> 159 <SDLCheck>true</SDLCheck> 160 </ClCompile> 161 <Link> 162 <SubSystem>Windows</SubSystem> 163 <GenerateDebugInformation>true</GenerateDebugInformation> 164 <EnableCOMDATFolding>true</EnableCOMDATFolding> 165 <OptimizeReferences>true</OptimizeReferences> 166 <AdditionalLibraryDirectories> 167 </AdditionalLibraryDirectories> 168 <AdditionalDependencies>%(AdditionalDependencies);opengl32.lib</AdditionalDependencies> 169 </Link> 170 <PostBuildEvent> 171 <Command>XCOPY /Y "$(SolutionDir)lib\$(Configuration)_$(Platform)\opengl32.dll" "$(SolutionDir)src\$(Configuration)\$(Platform)\" /Q /E /I</Command> 172 </PostBuildEvent> 173 </ItemDefinitionGroup> 174 <ItemGroup> 175 <ClCompile Include="OGLSimpleCube.cpp" /> 176 </ItemGroup> 177 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 178 <ImportGroup Label="ExtensionTargets"> 179 </ImportGroup> 180 </Project>