Welcome to mirror list, hosted at ThFree Co, Russian Federation.

config.win - github.com/keplerproject/luafilesystem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6aeaa60c5f2cb71cf82139256f11835ffced6187 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
LUA_VERSION= 5.1

# Installation directories
# System's libraries directory (where binary libraries are installed)
LUA_LIBDIR= "c:\lua$(LUA_VERSION)"

# Lua includes directory
LUA_INC= "c:\lua$(LUA_VERSION)\include"

# Lua library
LUA_LIB= "c:\lua$(LUA_VERSION)\lua$(LUA_VERSION).lib"

# Compilation directives
WARN= /O2
INCS= /I$(LUA_INC)
CFLAGS= /MD $(WARN) $(INCS)
CC= cl

# $Id: config.win,v 1.7 2008/03/25 17:39:29 mascarenhas Exp $