-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLuaForWindows.props
More file actions
31 lines (28 loc) · 1.34 KB
/
Copy pathLuaForWindows.props
File metadata and controls
31 lines (28 loc) · 1.34 KB
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
<?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"/>
<PropertyGroup>
<_ProjectFileVersion>17.0.35327.3</_ProjectFileVersion>
<_PropertySheetDisplayName>LuaForWindows PropertySheet</_PropertySheetDisplayName>
</PropertyGroup>
<!-- Lua For Windows creates the environment variable LUA_DEV on installation.
If this is not set, there is no point in applying these settings. -->
<ItemDefinitionGroup Condition="'$(LUA_DEV)'!=''">
<ClCompile>
<AdditionalIncludeDirectories>$(LUA_DEV)\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<AdditionalDependencies>lua51.lib;$(CoreLibraryDependencies);%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(LUA_DEV)\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
</Link>
</ItemDefinitionGroup>
<!--
LuaForWindows extends PATH, typically like this:
C:\Program Files (x86)\Lua\5.1
C:\Program Files (x86)\Lua\5.1\clibs
Make sure you are building with Lua 5.1 if you are
using LuaForWindows.
-->
<ItemGroup/>
</Project>