| @@ -1,34 +1,59 @@ | |||||
| <?xml version="1.0" encoding="utf-8"?> | <?xml version="1.0" encoding="utf-8"?> | ||||
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||||
| <!-- | |||||
| - Import settings that can be overridden by the user | |||||
| --> | |||||
| <Import Project="config-build.xml" /> | <Import Project="config-build.xml" /> | ||||
| <!-- | |||||
| - Import defaults settings from Visual Studio | |||||
| --> | |||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||||
| <!-- | |||||
| - Default settings for Debug configurations | |||||
| --> | |||||
| <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration"> | <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration"> | ||||
| <UseDebugLibraries>true</UseDebugLibraries> | <UseDebugLibraries>true</UseDebugLibraries> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <!-- | |||||
| - Default settings for Release configurations | |||||
| --> | |||||
| <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration"> | <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration"> | ||||
| <UseDebugLibraries>false</UseDebugLibraries> | <UseDebugLibraries>false</UseDebugLibraries> | ||||
| <WholeProgramOptimization>true</WholeProgramOptimization> | <WholeProgramOptimization>true</WholeProgramOptimization> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <!-- | |||||
| - Default settings for any configuration | |||||
| --> | |||||
| <PropertyGroup Label="Configuration"> | <PropertyGroup Label="Configuration"> | ||||
| <CharacterSet>MultiByte</CharacterSet> | <CharacterSet>MultiByte</CharacterSet> | ||||
| <UseOfMfc>false</UseOfMfc> | <UseOfMfc>false</UseOfMfc> | ||||
| <ExceptionHandling>false</ExceptionHandling> | <ExceptionHandling>false</ExceptionHandling> | ||||
| <FloatingPointModel>Fast</FloatingPointModel> | <FloatingPointModel>Fast</FloatingPointModel> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <PropertyGroup Condition="'$(Platform)'=='Win32' and '$(SolutionName)'=='Lol (vs2013)'" Label="Configuration"> | |||||
| <PlatformToolset>v120</PlatformToolset> | |||||
| <!-- | |||||
| - Select the platform toolset depending on the platform | |||||
| --> | |||||
| <PropertyGroup Condition="'$(Platform)'=='Win32'" Label="Configuration"> | |||||
| <PlatformToolset Condition="'$(SolutionName)'=='Lol (vs2013)'">v120</PlatformToolset> | |||||
| <PlatformToolset Condition="'$(SolutionName)'=='Lol (vs2014)'">v140</PlatformToolset> | |||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <PropertyGroup Condition="'$(Platform)'=='Win32' and '$(SolutionName)'=='Lol (vs2014)'" Label="Configuration"> | |||||
| <PlatformToolset>v140</PlatformToolset> | |||||
| </PropertyGroup> | |||||
| <PropertyGroup Condition="'$(Platform)'=='x64' and '$(SolutionName)'=='Lol (vs2013)'" Label="Configuration"> | |||||
| <PlatformToolset>v120</PlatformToolset> | |||||
| </PropertyGroup> | |||||
| <PropertyGroup Condition="'$(Platform)'=='x64' and '$(SolutionName)'=='Lol (vs2014)'" Label="Configuration"> | |||||
| <PlatformToolset>v140</PlatformToolset> | |||||
| <PropertyGroup Condition="'$(Platform)'=='x64'" Label="Configuration"> | |||||
| <PlatformToolset Condition="'$(SolutionName)'=='Lol (vs2013)'">v120</PlatformToolset> | |||||
| <PlatformToolset Condition="'$(SolutionName)'=='Lol (vs2014)'">v140</PlatformToolset> | |||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <PropertyGroup Condition="'$(Platform)'=='PS3'" Label="Configuration"> | <PropertyGroup Condition="'$(Platform)'=='PS3'" Label="Configuration"> | ||||
| <PlatformToolset>SNC</PlatformToolset> | <PlatformToolset>SNC</PlatformToolset> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <!-- | |||||
| - Import final settings from Visual Studio | |||||
| --> | |||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||||
| </Project> | </Project> | ||||
| @@ -13,7 +13,7 @@ | |||||
| <SdlImageDir>$(ExternalDir)\sdl-image-2.0.0</SdlImageDir> | <SdlImageDir>$(ExternalDir)\sdl-image-2.0.0</SdlImageDir> | ||||
| <SdlMixerDir>$(ExternalDir)\sdl-mixer-2.0.0</SdlMixerDir> | <SdlMixerDir>$(ExternalDir)\sdl-mixer-2.0.0</SdlMixerDir> | ||||
| <SdlIncludes>$(SdlDir)\include;$(SdlImageDir)\include;$(SdlMixerDir)\include</SdlIncludes> | <SdlIncludes>$(SdlDir)\include;$(SdlImageDir)\include;$(SdlMixerDir)\include</SdlIncludes> | ||||
| <SdlLibs Condition="'$(Platform)'=='Win32'">$(SdlDir)\lib\i686-w64-msvc;$(SdlImageDir)\lib\i686-w64-msvc;$(SdlMixerDir)\lib\i686-w64-msvc</SdlLibs> | |||||
| <SdlLibs Condition="'$(Platform)'=='Win32'">$(SdlDir)\lib\i686-w64-mingw32;$(SdlImageDir)\lib\i686-w64-msvc;$(SdlMixerDir)\lib\i686-w64-msvc</SdlLibs> | |||||
| <SdlLibs Condition="'$(Platform)'=='x64'">$(SdlDir)\lib\x86_64-msvc;$(SdlImageDir)\lib\x86_64-msvc;$(SdlMixerDir)\lib\x86_64-msvc</SdlLibs> | <SdlLibs Condition="'$(Platform)'=='x64'">$(SdlDir)\lib\x86_64-msvc;$(SdlImageDir)\lib\x86_64-msvc;$(SdlMixerDir)\lib\x86_64-msvc</SdlLibs> | ||||
| <SdlDeps Condition="'$(Platform)'=='Win32'">SDL2.lib;SDL2main.lib;SDL2_image.lib;SDL2_mixer.lib</SdlDeps> | <SdlDeps Condition="'$(Platform)'=='Win32'">SDL2.lib;SDL2main.lib;SDL2_image.lib;SDL2_mixer.lib</SdlDeps> | ||||
| <SdlDeps Condition="'$(Platform)'=='x64'">SDL2.lib;SDL2main.lib;SDL2_image.lib;SDL2_mixer.lib</SdlDeps> | <SdlDeps Condition="'$(Platform)'=='x64'">SDL2.lib;SDL2main.lib;SDL2_image.lib;SDL2_mixer.lib</SdlDeps> | ||||
| @@ -65,19 +65,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -83,19 +83,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -115,19 +115,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -69,19 +69,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -64,19 +64,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -64,19 +64,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -64,19 +64,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -64,19 +64,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -61,19 +61,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -61,19 +61,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -64,19 +64,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -64,19 +64,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -64,19 +64,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -68,19 +68,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -47,7 +47,7 @@ | |||||
| <ConfigurationType>StaticLibrary</ConfigurationType> | <ConfigurationType>StaticLibrary</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <PropertyGroup Label="Configuration"> | <PropertyGroup Label="Configuration"> | ||||
| <CharacterSet>MultiByte</CharacterSet> | <CharacterSet>MultiByte</CharacterSet> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| @@ -60,10 +60,10 @@ | |||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup> | <ItemDefinitionGroup> | ||||
| <ClCompile> | <ClCompile> | ||||
| <PreprocessorDefinitions>_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | <PreprocessorDefinitions>_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||
| @@ -463,6 +463,6 @@ | |||||
| </ItemGroup> | </ItemGroup> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -47,7 +47,7 @@ | |||||
| <ConfigurationType>StaticLibrary</ConfigurationType> | <ConfigurationType>StaticLibrary</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | ||||
| <UseDebugLibraries>true</UseDebugLibraries> | <UseDebugLibraries>true</UseDebugLibraries> | ||||
| <CharacterSet>MultiByte</CharacterSet> | <CharacterSet>MultiByte</CharacterSet> | ||||
| @@ -88,14 +88,14 @@ | |||||
| <CharacterSet>MultiByte</CharacterSet> | <CharacterSet>MultiByte</CharacterSet> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup> | <ItemDefinitionGroup> | ||||
| <ClCompile> | <ClCompile> | ||||
| <PreprocessorDefinitions>_LIB;%(PreprocessorDefinitions);LOL_INPUT_V2</PreprocessorDefinitions> | <PreprocessorDefinitions>_LIB;%(PreprocessorDefinitions);LOL_INPUT_V2</PreprocessorDefinitions> | ||||
| @@ -453,6 +453,6 @@ | |||||
| </ItemGroup> | </ItemGroup> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -47,7 +47,7 @@ | |||||
| <ConfigurationType>StaticLibrary</ConfigurationType> | <ConfigurationType>StaticLibrary</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <PropertyGroup Label="Configuration"> | <PropertyGroup Label="Configuration"> | ||||
| <CharacterSet>MultiByte</CharacterSet> | <CharacterSet>MultiByte</CharacterSet> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| @@ -60,10 +60,10 @@ | |||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup> | <ItemDefinitionGroup> | ||||
| <ClCompile> | <ClCompile> | ||||
| <PreprocessorDefinitions>LUA_ANSI;%(PreprocessorDefinitions)</PreprocessorDefinitions> | <PreprocessorDefinitions>LUA_ANSI;%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||||
| @@ -132,6 +132,6 @@ | |||||
| </ItemGroup> | </ItemGroup> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -66,19 +66,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -62,19 +62,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -63,19 +63,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -75,19 +75,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||
| @@ -62,19 +62,19 @@ | |||||
| <ConfigurationType>Application</ConfigurationType> | <ConfigurationType>Application</ConfigurationType> | ||||
| <Keyword>Win32Proj</Keyword> | <Keyword>Win32Proj</Keyword> | ||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Config.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.config.props" /> | |||||
| <ImportGroup Label="ExtensionSettings"> | <ImportGroup Label="ExtensionSettings"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <ImportGroup Label="PropertySheets"> | <ImportGroup Label="PropertySheets"> | ||||
| <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Vars.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.vars.props" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| <PropertyGroup Label="UserMacros" /> | <PropertyGroup Label="UserMacros" /> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Core.Rules.props" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lol.rules.props" /> | |||||
| <ItemDefinitionGroup /> | <ItemDefinitionGroup /> | ||||
| <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||||
| <ImportGroup Label="ExtensionTargets"> | <ImportGroup Label="ExtensionTargets"> | ||||
| <Import Project="$(SolutionDir)\visualstudio\Lol.Fx.targets" /> | |||||
| <Import Project="$(SolutionDir)\msbuild\lolfx.targets" /> | |||||
| </ImportGroup> | </ImportGroup> | ||||
| </Project> | </Project> | ||||