|
@@ -0,0 +1,120 @@
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
+<Project DefaultTargets="Build" ToolsVersion="4.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>
|
|
|
|
+ </ItemGroup>
|
|
|
|
+ <PropertyGroup Label="Globals">
|
|
|
|
+ <ProjectGuid>{8F5E5D77-D269-4665-9E27-1045DA6CF0D8}</ProjectGuid>
|
|
|
|
+ <Keyword>Win32Proj</Keyword>
|
|
|
|
+ <RootNamespace>lua_lib</RootNamespace>
|
|
|
|
+ </PropertyGroup>
|
|
|
|
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
|
|
+ <ConfigurationType>StaticLibrary</ConfigurationType>
|
|
|
|
+ <UseDebugLibraries>true</UseDebugLibraries>
|
|
|
|
+ <PlatformToolset>v110</PlatformToolset>
|
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
|
+ </PropertyGroup>
|
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
|
|
+ <ConfigurationType>StaticLibrary</ConfigurationType>
|
|
|
|
+ <UseDebugLibraries>false</UseDebugLibraries>
|
|
|
|
+ <PlatformToolset>v110</PlatformToolset>
|
|
|
|
+ <WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
|
+ </PropertyGroup>
|
|
|
|
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
|
+ <ImportGroup Label="ExtensionSettings">
|
|
|
|
+ </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>
|
|
|
|
+ <PropertyGroup Label="UserMacros" />
|
|
|
|
+ <PropertyGroup />
|
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
|
+ <ClCompile>
|
|
|
|
+ <PrecompiledHeader>
|
|
|
|
+ </PrecompiledHeader>
|
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
|
+ <Optimization>Disabled</Optimization>
|
|
|
|
+ <PreprocessorDefinitions>LUA_COMPAT_ALL;THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
+ <AdditionalIncludeDirectories>$(ProjectDir)..\..\..\..\lua-5.2.1\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
+ </ClCompile>
|
|
|
|
+ <Link>
|
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
|
+ <GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
|
+ </Link>
|
|
|
|
+ </ItemDefinitionGroup>
|
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
|
+ <ClCompile>
|
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
|
+ <PrecompiledHeader>
|
|
|
|
+ </PrecompiledHeader>
|
|
|
|
+ <Optimization>MaxSpeed</Optimization>
|
|
|
|
+ <FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
|
+ <IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
|
+ <PreprocessorDefinitions>LUA_COMPAT_ALL;THREADSAFE=1;SQLITE_ENABLE_FTS3;SQLITE_ENABLE_FTS3_PARENTHESIS;WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
|
|
+ <AdditionalIncludeDirectories>$(ProjectDir)..\..\..\..\lua-5.2.1\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
+ </ClCompile>
|
|
|
|
+ <Link>
|
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
|
+ <GenerateDebugInformation>true</GenerateDebugInformation>
|
|
|
|
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
|
+ <OptimizeReferences>true</OptimizeReferences>
|
|
|
|
+ </Link>
|
|
|
|
+ </ItemDefinitionGroup>
|
|
|
|
+ <ItemGroup>
|
|
|
|
+ <Text Include="ReadMe.txt" />
|
|
|
|
+ </ItemGroup>
|
|
|
|
+ <ItemGroup>
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lapi.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lauxlib.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lbaselib.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lbitlib.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lcode.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lcorolib.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lctype.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\ldblib.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\ldebug.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\ldo.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\ldump.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lfunc.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lgc.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\linit.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\liolib.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\llex.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lmathlib.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lmem.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\loadlib.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lobject.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lopcodes.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\loslib.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lparser.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lstate.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lstring.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lstrlib.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\ltable.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\ltablib.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\ltm.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lundump.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lvm.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\..\lua-5.2.1\src\lzio.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\lsqlite3.c" />
|
|
|
|
+ <ClCompile Include="..\..\..\sqlite3.c" />
|
|
|
|
+ </ItemGroup>
|
|
|
|
+ <ItemGroup>
|
|
|
|
+ <ClInclude Include="..\..\..\sqlite3.h" />
|
|
|
|
+ </ItemGroup>
|
|
|
|
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
|
|
+ <ImportGroup Label="ExtensionTargets">
|
|
|
|
+ </ImportGroup>
|
|
|
|
+</Project>
|