forked from alain-riedinger/luasocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLua.props
29 lines (29 loc) · 1019 Bytes
/
Lua.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros">
<LUA_PATH>..\..\lua\sources\lua54\</LUA_PATH>
<!-- For dynamic or static lua library linking -->
<!-- Uncomment one of those 2 lines -->
<!-- <LUALIB>lua54.lib</LUALIB> -->
<LUALIB>lua54-static.lib</LUALIB>
</PropertyGroup>
<PropertyGroup>
<_PropertySheetDisplayName>Lua54</_PropertySheetDisplayName>
</PropertyGroup>
<ItemDefinitionGroup />
<ItemGroup>
<BuildMacro Include="LUALIB_PATH">
<Value>$(LUA_PATH)$(Platform)\lib</Value>
</BuildMacro>
<BuildMacro Include="LUABIN_PATH">
<Value>$(LUA_PATH)$(Platform)\bin</Value>
</BuildMacro>
<BuildMacro Include="LUAINC_PATH">
<Value>$(LUA_PATH)$(Platform)\include</Value>
</BuildMacro>
<BuildMacro Include="LUALIB">
<Value>$(LUALIB)</Value>
</BuildMacro>
</ItemGroup>
</Project>