Skip to content

Commit

Permalink
lua5.3.4,lua5.4.0-work1
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnie committed May 6, 2018
1 parent c1ad581 commit a6002f2
Show file tree
Hide file tree
Showing 451 changed files with 173,635 additions and 0 deletions.
Binary file added Lua/Lua53/.vs/Lua53/v15/.suo
Binary file not shown.
Binary file added Lua/Lua53/.vs/Lua53/v15/Browse.VC.db
Binary file not shown.
Binary file not shown.
Binary file added Lua/Lua53/Lua/Lua.aps
Binary file not shown.
Binary file added Lua/Lua53/Lua/Lua.rc
Binary file not shown.
191 changes: 191 additions & 0 deletions Lua/Lua53/Lua/Lua.vcxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,191 @@
<?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>{11331ABE-90DA-424B-B3C1-2A1EC85A3D2C}</ProjectGuid>
<RootNamespace>Lua</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)'=='Release|x64'">
<ClCompile>
<WarningLevel>EnableAllWarnings</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)'=='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>
<ItemGroup>
<ClCompile Include="..\src\lapi.c" />
<ClCompile Include="..\src\lauxlib.c" />
<ClCompile Include="..\src\lbaselib.c" />
<ClCompile Include="..\src\lbitlib.c" />
<ClCompile Include="..\src\lcode.c" />
<ClCompile Include="..\src\lcorolib.c" />
<ClCompile Include="..\src\lctype.c" />
<ClCompile Include="..\src\ldblib.c" />
<ClCompile Include="..\src\ldebug.c" />
<ClCompile Include="..\src\ldo.c" />
<ClCompile Include="..\src\ldump.c" />
<ClCompile Include="..\src\lfunc.c" />
<ClCompile Include="..\src\lgc.c" />
<ClCompile Include="..\src\linit.c" />
<ClCompile Include="..\src\liolib.c" />
<ClCompile Include="..\src\llex.c" />
<ClCompile Include="..\src\lmathlib.c" />
<ClCompile Include="..\src\lmem.c" />
<ClCompile Include="..\src\loadlib.c" />
<ClCompile Include="..\src\lobject.c" />
<ClCompile Include="..\src\lopcodes.c" />
<ClCompile Include="..\src\loslib.c" />
<ClCompile Include="..\src\lparser.c" />
<ClCompile Include="..\src\lstate.c" />
<ClCompile Include="..\src\lstring.c" />
<ClCompile Include="..\src\lstrlib.c" />
<ClCompile Include="..\src\ltable.c" />
<ClCompile Include="..\src\ltablib.c" />
<ClCompile Include="..\src\ltm.c" />
<ClCompile Include="..\src\lua.c" />
<ClCompile Include="..\src\lundump.c" />
<ClCompile Include="..\src\lutf8lib.c" />
<ClCompile Include="..\src\lvm.c" />
<ClCompile Include="..\src\lzio.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\src\lapi.h" />
<ClInclude Include="..\src\lauxlib.h" />
<ClInclude Include="..\src\lcode.h" />
<ClInclude Include="..\src\lctype.h" />
<ClInclude Include="..\src\ldebug.h" />
<ClInclude Include="..\src\ldo.h" />
<ClInclude Include="..\src\lfunc.h" />
<ClInclude Include="..\src\lgc.h" />
<ClInclude Include="..\src\llex.h" />
<ClInclude Include="..\src\llimits.h" />
<ClInclude Include="..\src\lmem.h" />
<ClInclude Include="..\src\lobject.h" />
<ClInclude Include="..\src\lopcodes.h" />
<ClInclude Include="..\src\lparser.h" />
<ClInclude Include="..\src\lprefix.h" />
<ClInclude Include="..\src\lstate.h" />
<ClInclude Include="..\src\lstring.h" />
<ClInclude Include="..\src\ltable.h" />
<ClInclude Include="..\src\ltm.h" />
<ClInclude Include="..\src\lua.h" />
<ClInclude Include="..\src\lua.hpp" />
<ClInclude Include="..\src\luaconf.h" />
<ClInclude Include="..\src\lualib.h" />
<ClInclude Include="..\src\lundump.h" />
<ClInclude Include="..\src\lvm.h" />
<ClInclude Include="..\src\lzio.h" />
<ClInclude Include="resource.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Lua.rc" />
</ItemGroup>
<ItemGroup>
<Image Include="..\icons\lua-ico.ico" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
Loading

0 comments on commit a6002f2

Please sign in to comment.