Skip to content

Commit a6002f2

Browse files
author
johnnie
committed
lua5.3.4,lua5.4.0-work1
1 parent c1ad581 commit a6002f2

File tree

451 files changed

+173635
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

451 files changed

+173635
-0
lines changed

Lua/Lua53/.vs/Lua53/v15/.suo

41.5 KB
Binary file not shown.
33.1 MB
Binary file not shown.
1.75 MB
Binary file not shown.

Lua/Lua53/Lua/Lua.aps

4.18 KB
Binary file not shown.

Lua/Lua53/Lua/Lua.rc

5.01 KB
Binary file not shown.

Lua/Lua53/Lua/Lua.vcxproj

Lines changed: 191 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,191 @@
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="Release|Win32">
9+
<Configuration>Release</Configuration>
10+
<Platform>Win32</Platform>
11+
</ProjectConfiguration>
12+
<ProjectConfiguration Include="Debug|x64">
13+
<Configuration>Debug</Configuration>
14+
<Platform>x64</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+
<VCProjectVersion>15.0</VCProjectVersion>
23+
<ProjectGuid>{11331ABE-90DA-424B-B3C1-2A1EC85A3D2C}</ProjectGuid>
24+
<RootNamespace>Lua</RootNamespace>
25+
<WindowsTargetPlatformVersion>10.0.17134.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>MultiByte</CharacterSet>
33+
</PropertyGroup>
34+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
35+
<ConfigurationType>Application</ConfigurationType>
36+
<UseDebugLibraries>false</UseDebugLibraries>
37+
<PlatformToolset>v141</PlatformToolset>
38+
<WholeProgramOptimization>true</WholeProgramOptimization>
39+
<CharacterSet>MultiByte</CharacterSet>
40+
</PropertyGroup>
41+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
42+
<ConfigurationType>Application</ConfigurationType>
43+
<UseDebugLibraries>true</UseDebugLibraries>
44+
<PlatformToolset>v141</PlatformToolset>
45+
<CharacterSet>MultiByte</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>MultiByte</CharacterSet>
53+
</PropertyGroup>
54+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
55+
<ImportGroup Label="ExtensionSettings">
56+
</ImportGroup>
57+
<ImportGroup Label="Shared">
58+
</ImportGroup>
59+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
60+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
61+
</ImportGroup>
62+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
63+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
64+
</ImportGroup>
65+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
66+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
67+
</ImportGroup>
68+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
69+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
70+
</ImportGroup>
71+
<PropertyGroup Label="UserMacros" />
72+
<PropertyGroup />
73+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
74+
<ClCompile>
75+
<WarningLevel>EnableAllWarnings</WarningLevel>
76+
<Optimization>MaxSpeed</Optimization>
77+
<FunctionLevelLinking>true</FunctionLevelLinking>
78+
<IntrinsicFunctions>true</IntrinsicFunctions>
79+
<SDLCheck>true</SDLCheck>
80+
<ConformanceMode>true</ConformanceMode>
81+
</ClCompile>
82+
<Link>
83+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
84+
<OptimizeReferences>true</OptimizeReferences>
85+
</Link>
86+
</ItemDefinitionGroup>
87+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
88+
<ClCompile>
89+
<WarningLevel>Level3</WarningLevel>
90+
<Optimization>Disabled</Optimization>
91+
<SDLCheck>true</SDLCheck>
92+
<ConformanceMode>true</ConformanceMode>
93+
</ClCompile>
94+
</ItemDefinitionGroup>
95+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
96+
<ClCompile>
97+
<WarningLevel>Level3</WarningLevel>
98+
<Optimization>Disabled</Optimization>
99+
<SDLCheck>true</SDLCheck>
100+
<ConformanceMode>true</ConformanceMode>
101+
</ClCompile>
102+
</ItemDefinitionGroup>
103+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
104+
<ClCompile>
105+
<WarningLevel>Level3</WarningLevel>
106+
<Optimization>MaxSpeed</Optimization>
107+
<FunctionLevelLinking>true</FunctionLevelLinking>
108+
<IntrinsicFunctions>true</IntrinsicFunctions>
109+
<SDLCheck>true</SDLCheck>
110+
<ConformanceMode>true</ConformanceMode>
111+
</ClCompile>
112+
<Link>
113+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
114+
<OptimizeReferences>true</OptimizeReferences>
115+
</Link>
116+
</ItemDefinitionGroup>
117+
<ItemGroup>
118+
<ClCompile Include="..\src\lapi.c" />
119+
<ClCompile Include="..\src\lauxlib.c" />
120+
<ClCompile Include="..\src\lbaselib.c" />
121+
<ClCompile Include="..\src\lbitlib.c" />
122+
<ClCompile Include="..\src\lcode.c" />
123+
<ClCompile Include="..\src\lcorolib.c" />
124+
<ClCompile Include="..\src\lctype.c" />
125+
<ClCompile Include="..\src\ldblib.c" />
126+
<ClCompile Include="..\src\ldebug.c" />
127+
<ClCompile Include="..\src\ldo.c" />
128+
<ClCompile Include="..\src\ldump.c" />
129+
<ClCompile Include="..\src\lfunc.c" />
130+
<ClCompile Include="..\src\lgc.c" />
131+
<ClCompile Include="..\src\linit.c" />
132+
<ClCompile Include="..\src\liolib.c" />
133+
<ClCompile Include="..\src\llex.c" />
134+
<ClCompile Include="..\src\lmathlib.c" />
135+
<ClCompile Include="..\src\lmem.c" />
136+
<ClCompile Include="..\src\loadlib.c" />
137+
<ClCompile Include="..\src\lobject.c" />
138+
<ClCompile Include="..\src\lopcodes.c" />
139+
<ClCompile Include="..\src\loslib.c" />
140+
<ClCompile Include="..\src\lparser.c" />
141+
<ClCompile Include="..\src\lstate.c" />
142+
<ClCompile Include="..\src\lstring.c" />
143+
<ClCompile Include="..\src\lstrlib.c" />
144+
<ClCompile Include="..\src\ltable.c" />
145+
<ClCompile Include="..\src\ltablib.c" />
146+
<ClCompile Include="..\src\ltm.c" />
147+
<ClCompile Include="..\src\lua.c" />
148+
<ClCompile Include="..\src\lundump.c" />
149+
<ClCompile Include="..\src\lutf8lib.c" />
150+
<ClCompile Include="..\src\lvm.c" />
151+
<ClCompile Include="..\src\lzio.c" />
152+
</ItemGroup>
153+
<ItemGroup>
154+
<ClInclude Include="..\src\lapi.h" />
155+
<ClInclude Include="..\src\lauxlib.h" />
156+
<ClInclude Include="..\src\lcode.h" />
157+
<ClInclude Include="..\src\lctype.h" />
158+
<ClInclude Include="..\src\ldebug.h" />
159+
<ClInclude Include="..\src\ldo.h" />
160+
<ClInclude Include="..\src\lfunc.h" />
161+
<ClInclude Include="..\src\lgc.h" />
162+
<ClInclude Include="..\src\llex.h" />
163+
<ClInclude Include="..\src\llimits.h" />
164+
<ClInclude Include="..\src\lmem.h" />
165+
<ClInclude Include="..\src\lobject.h" />
166+
<ClInclude Include="..\src\lopcodes.h" />
167+
<ClInclude Include="..\src\lparser.h" />
168+
<ClInclude Include="..\src\lprefix.h" />
169+
<ClInclude Include="..\src\lstate.h" />
170+
<ClInclude Include="..\src\lstring.h" />
171+
<ClInclude Include="..\src\ltable.h" />
172+
<ClInclude Include="..\src\ltm.h" />
173+
<ClInclude Include="..\src\lua.h" />
174+
<ClInclude Include="..\src\lua.hpp" />
175+
<ClInclude Include="..\src\luaconf.h" />
176+
<ClInclude Include="..\src\lualib.h" />
177+
<ClInclude Include="..\src\lundump.h" />
178+
<ClInclude Include="..\src\lvm.h" />
179+
<ClInclude Include="..\src\lzio.h" />
180+
<ClInclude Include="resource.h" />
181+
</ItemGroup>
182+
<ItemGroup>
183+
<ResourceCompile Include="Lua.rc" />
184+
</ItemGroup>
185+
<ItemGroup>
186+
<Image Include="..\icons\lua-ico.ico" />
187+
</ItemGroup>
188+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
189+
<ImportGroup Label="ExtensionTargets">
190+
</ImportGroup>
191+
</Project>

0 commit comments

Comments
 (0)