forked from svarog2741/xrluafix
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathxrLuaFix.vcxproj
71 lines (71 loc) · 2.83 KB
/
xrLuaFix.vcxproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets">
<Import Project="..\..\src\xray_project_configurations.props" />
</ImportGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{4E076FEB-DC78-4BF7-99C7-AC8267247989}</ProjectGuid>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<ImportGroup Label="PropertySheets">
<Import Project="..\..\src\xray_project_configuration.props" />
</ImportGroup>
<PropertyGroup Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="..\..\src\xray.props" />
</ImportGroup>
<ItemDefinitionGroup>
<ClCompile>
<PrecompiledHeaderFile>pch.hpp</PrecompiledHeaderFile>
<AdditionalIncludeDirectories>$(ProjectDir)lfs\src\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="xrLuaFix.cpp" />
<ClCompile Include="lfs\src\lfs.c">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
<ClCompile Include="LibMath.cpp" />
<ClCompile Include="LibStr.cpp" />
<ClCompile Include="LibTab.cpp" />
<ClCompile Include="Logger.cpp" />
<ClCompile Include="lua-marshal\lmarshal.c">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
<ClCompile Include="lua-pack\lua_pack.c">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
<ClCompile Include="pch.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
</ItemGroup>
<ItemGroup>
<None Include="lfs\src\lfs.def" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="lfs\src\lfs.h" />
<ClInclude Include="LibMath.h" />
<ClInclude Include="xrLuaFix.h" />
<ClInclude Include="LibStr.h" />
<ClInclude Include="LibTab.h" />
<ClInclude Include="Logger.h" />
<ClInclude Include="pch.hpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(SolutionDir)\xrCore\xrCore.vcxproj">
<Project>{a0f7d1fb-59a7-4717-a7e4-96f37e91998e}</Project>
</ProjectReference>
<ProjectReference Include="$(xrExternals)LuaJIT-proj\LuaJIT.vcxproj">
<Project>{632aeeb6-dc06-4e15-9551-b2b09a4b73c5}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>