diff options
Diffstat (limited to 'Build/Lua51')
-rw-r--r-- | Build/Lua51/Lua51.vcxproj | 182 | ||||
-rw-r--r-- | Build/Lua51/Lua51.vcxproj.filters | 65 | ||||
-rw-r--r-- | Build/Lua51/Lua51.vcxproj.user | 4 |
3 files changed, 0 insertions, 251 deletions
diff --git a/Build/Lua51/Lua51.vcxproj b/Build/Lua51/Lua51.vcxproj deleted file mode 100644 index 28d30f3..0000000 --- a/Build/Lua51/Lua51.vcxproj +++ /dev/null @@ -1,182 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <ItemGroup Label="ProjectConfigurations"> - <ProjectConfiguration Include="Debug|Win32"> - <Configuration>Debug</Configuration> - <Platform>Win32</Platform> - </ProjectConfiguration> - <ProjectConfiguration Include="Release|Win32"> - <Configuration>Release</Configuration> - <Platform>Win32</Platform> - </ProjectConfiguration> - <ProjectConfiguration Include="Debug|x64"> - <Configuration>Debug</Configuration> - <Platform>x64</Platform> - </ProjectConfiguration> - <ProjectConfiguration Include="Release|x64"> - <Configuration>Release</Configuration> - <Platform>x64</Platform> - </ProjectConfiguration> - </ItemGroup> - <PropertyGroup Label="Globals"> - <VCProjectVersion>15.0</VCProjectVersion> - <ProjectGuid>{DFE6C528-0F03-4512-85D3-B4A632518F12}</ProjectGuid> - <RootNamespace>Lua51</RootNamespace> - <WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion> - </PropertyGroup> - <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> - <ConfigurationType>Application</ConfigurationType> - <UseDebugLibraries>true</UseDebugLibraries> - <PlatformToolset>v141</PlatformToolset> - <CharacterSet>MultiByte</CharacterSet> - </PropertyGroup> - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> - <ConfigurationType>Application</ConfigurationType> - <UseDebugLibraries>false</UseDebugLibraries> - <PlatformToolset>v141</PlatformToolset> - <WholeProgramOptimization>true</WholeProgramOptimization> - <CharacterSet>MultiByte</CharacterSet> - </PropertyGroup> - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> - <ConfigurationType>Application</ConfigurationType> - <UseDebugLibraries>true</UseDebugLibraries> - <PlatformToolset>v141</PlatformToolset> - <CharacterSet>MultiByte</CharacterSet> - </PropertyGroup> - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> - <ConfigurationType>Application</ConfigurationType> - <UseDebugLibraries>false</UseDebugLibraries> - <PlatformToolset>v141</PlatformToolset> - <WholeProgramOptimization>true</WholeProgramOptimization> - <CharacterSet>MultiByte</CharacterSet> - </PropertyGroup> - <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> - <ImportGroup Label="ExtensionSettings"> - </ImportGroup> - <ImportGroup Label="Shared"> - </ImportGroup> - <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> - <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> - </ImportGroup> - <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> - <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> - </ImportGroup> - <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> - <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> - </ImportGroup> - <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> - <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> - </ImportGroup> - <PropertyGroup Label="UserMacros" /> - <PropertyGroup /> - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> - <ClCompile> - <WarningLevel>Level3</WarningLevel> - <Optimization>Disabled</Optimization> - <SDLCheck>true</SDLCheck> - <ConformanceMode>true</ConformanceMode> - </ClCompile> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> - <ClCompile> - <WarningLevel>Level3</WarningLevel> - <Optimization>Disabled</Optimization> - <SDLCheck>true</SDLCheck> - <ConformanceMode>true</ConformanceMode> - </ClCompile> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> - <ClCompile> - <WarningLevel>Level3</WarningLevel> - <Optimization>MaxSpeed</Optimization> - <FunctionLevelLinking>true</FunctionLevelLinking> - <IntrinsicFunctions>true</IntrinsicFunctions> - <SDLCheck>true</SDLCheck> - <ConformanceMode>true</ConformanceMode> - </ClCompile> - <Link> - <EnableCOMDATFolding>true</EnableCOMDATFolding> - <OptimizeReferences>true</OptimizeReferences> - </Link> - </ItemDefinitionGroup> - <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> - <ClCompile> - <WarningLevel>Level3</WarningLevel> - <Optimization>MaxSpeed</Optimization> - <FunctionLevelLinking>true</FunctionLevelLinking> - <IntrinsicFunctions>true</IntrinsicFunctions> - <SDLCheck>true</SDLCheck> - <ConformanceMode>true</ConformanceMode> - </ClCompile> - <Link> - <EnableCOMDATFolding>true</EnableCOMDATFolding> - <OptimizeReferences>true</OptimizeReferences> - </Link> - </ItemDefinitionGroup> - <ItemGroup> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lapi.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lauxlib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lbaselib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lcode.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ldblib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ldebug.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ldo.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ldump.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lfunc.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lgc.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\linit.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\liolib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\llex.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lmathlib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lmem.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\loadlib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lobject.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lopcodes.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\loslib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lparser.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lstate.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lstring.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lstrlib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ltable.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ltablib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ltm.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lua.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\luac.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lundump.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lvm.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lzio.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\print.c" /> - </ItemGroup> - <ItemGroup> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lapi.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lauxlib.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lcode.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\ldebug.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\ldo.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lfunc.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lgc.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\llex.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\llimits.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lmem.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lobject.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lopcodes.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lparser.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lstate.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lstring.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\ltable.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\ltm.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lua.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\luaconf.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lualib.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lundump.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lvm.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lzio.h" /> - </ItemGroup> - <ItemGroup> - <None Include="..\..\Source\3rdParty\Lua5.1\Makefile" /> - </ItemGroup> - <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> - <ImportGroup Label="ExtensionTargets"> - </ImportGroup> -</Project>
\ No newline at end of file diff --git a/Build/Lua51/Lua51.vcxproj.filters b/Build/Lua51/Lua51.vcxproj.filters deleted file mode 100644 index f8d1d7b..0000000 --- a/Build/Lua51/Lua51.vcxproj.filters +++ /dev/null @@ -1,65 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <ItemGroup> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lapi.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lauxlib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lbaselib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lcode.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ldblib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ldebug.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ldo.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ldump.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lfunc.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lgc.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\linit.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\liolib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\llex.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lmathlib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lmem.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\loadlib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lobject.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lopcodes.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\loslib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lparser.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lstate.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lstring.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lstrlib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ltable.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ltablib.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\ltm.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lua.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\luac.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lundump.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lvm.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\lzio.c" /> - <ClCompile Include="..\..\Source\3rdParty\Lua5.1\print.c" /> - </ItemGroup> - <ItemGroup> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lapi.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lauxlib.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lcode.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\ldebug.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\ldo.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lfunc.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lgc.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\llex.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\llimits.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lmem.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lobject.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lopcodes.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lparser.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lstate.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lstring.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\ltable.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\ltm.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lua.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\luaconf.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lualib.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lundump.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lvm.h" /> - <ClInclude Include="..\..\Source\3rdParty\Lua5.1\lzio.h" /> - </ItemGroup> - <ItemGroup> - <None Include="..\..\Source\3rdParty\Lua5.1\Makefile" /> - </ItemGroup> -</Project>
\ No newline at end of file diff --git a/Build/Lua51/Lua51.vcxproj.user b/Build/Lua51/Lua51.vcxproj.user deleted file mode 100644 index be25078..0000000 --- a/Build/Lua51/Lua51.vcxproj.user +++ /dev/null @@ -1,4 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> - <PropertyGroup /> -</Project>
\ No newline at end of file |